From c9325ca879d1803138a5323fdcd1955f37b7b756 Mon Sep 17 00:00:00 2001 From: Nayam Amarshe <25067102+NayamAmarshe@users.noreply.github.com> Date: Sat, 18 Mar 2023 17:50:32 +0530 Subject: [PATCH] Updated update message --- electron/index.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/electron/index.ts b/electron/index.ts index 0c09da4..56abdea 100644 --- a/electron/index.ts +++ b/electron/index.ts @@ -447,10 +447,11 @@ ipcMain.on(commands.FOLDER_UPSCAYL, async (event, payload) => { autoUpdater.on("update-available", ({ releaseNotes, releaseName }) => { const dialogOpts = { type: "info", - buttons: ["Ok"], - title: "Application Update", + buttons: ["Ok cool"], + title: "New Upscayl Update", message: releaseName as string, - detail: "A new version is being downloaded.", + detail: + "A new version is being downloaded. Please check GitHub for more details.", }; dialog.showMessageBox(dialogOpts).then((returnValue) => {}); }); @@ -459,7 +460,7 @@ autoUpdater.on("update-downloaded", (event) => { const dialogOpts: MessageBoxOptions = { type: "info", buttons: ["Restart", "Later"], - title: "Application Update", + title: "New Upscayl Update", message: event.releaseName as string, detail: "A new version has been downloaded. Restart the application to apply the updates.",