Skip to content
This repository has been archived by the owner on May 2, 2022. It is now read-only.

Commit

Permalink
36.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
quanglam2807 committed Aug 14, 2021
1 parent 276e3a7 commit 796edec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main-src/libs/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
},
Expand Down

0 comments on commit 796edec

Please sign in to comment.