From d81122a37376991091afc6547f528d3c5af05241 Mon Sep 17 00:00:00 2001 From: Tiagoquix <30274161+Tiagoquix@users.noreply.github.com> Date: Fri, 28 Jun 2024 02:04:34 -0300 Subject: [PATCH] Reorder "About", change text for "Update Vencord" --- src/main/mainWindow.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/mainWindow.ts b/src/main/mainWindow.ts index fabe24c..b5f7fa8 100644 --- a/src/main/mainWindow.ts +++ b/src/main/mainWindow.ts @@ -87,11 +87,7 @@ function initTray(win: BrowserWindow) { } }, { - label: "About", - click: createAboutWindow - }, - { - label: "Update Vencord", + label: "Update Vencord and Restart Vesktop", async click() { await downloadVencordFiles(); app.relaunch(); @@ -104,6 +100,10 @@ function initTray(win: BrowserWindow) { await clearData(win); } }, + { + label: "About", + click: createAboutWindow + }, { type: "separator" },