diff --git a/main-src/libs/updater.js b/main-src/libs/updater.js index c7971a80..0c7b4f94 100644 --- a/main-src/libs/updater.js +++ b/main-src/libs/updater.js @@ -32,7 +32,7 @@ autoUpdater.on('update-available', (info) => { }) .then(({ response }) => { if (response === 1) { - shell.openExternal('https://webcatalog.io/webcatalog/release-notes/?utm_source=webcatalog_app'); + shell.openExternal('https://webcatalog.io/webcatalog/changelog/?utm_source=webcatalog_app'); } }) .catch(console.log); // eslint-disable-line @@ -124,7 +124,7 @@ autoUpdater.on('update-downloaded', (info) => { dialog.showMessageBox(dialogOpts) .then(({ response }) => { if (response === 2) { - shell.openExternal('https://webcatalog.io/release-notes/?utm_source=webcatalog_app'); + shell.openExternal('https://webcatalog.io/webcatalog/changelog/?utm_source=webcatalog_app'); } else if (response === 0) { // Fix autoUpdater.quitAndInstall() does not quit immediately // https://github.com/electron/electron/issues/3583 diff --git a/package.json b/package.json index f44df300..46d72790 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "WebCatalog", "description": "Turn Any Websites Into Real Desktop Apps", - "version": "36.1.0", + "version": "36.2.0", "engines": { "node": ">=14.0.0 <15.0.0" },