4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

Deps update , wait 300 seconds before quit and update

This commit is contained in:
AlphaX-Projects 2022-02-04 05:21:31 -08:00 committed by GitHub
parent 7a78ba24e6
commit 1ffae3e9aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 10 deletions

View File

@ -90,7 +90,7 @@ const createTray = () => {
const isLock = app.requestSingleInstanceLock();
if (!isLock) {
app.quit()
app.quit()
} else {
app.on('second-instance', (event, cmd, dir) => {
if (myWindow) {
@ -119,13 +119,13 @@ if (!isLock) {
}
})
ipcMain.on('app_version', (event) => {
log.info(app.getVersion());
log.info(app.getVersion());
mainWindow.webContents.send('app_version', { version: app.getVersion() });
});
autoUpdater.on('update-available', () => {
const n = new Notification({
title: 'Update Available!',
body: 'It will be downloaded in the background and installed after download.'
body: 'It will be downloaded ⌛️ in the background and installed after download.'
})
n.show();
})
@ -139,9 +139,12 @@ if (!isLock) {
autoUpdater.on('update-downloaded', () => {
const n = new Notification({
title: 'Update Downloaded!',
body: 'Restarting to Update'
body: 'Restarting in 30 secounds to Update. Please finish your tasks!'
})
n.show();
setTimeout(() => {
n.show();
}, 30000);
autoUpdater.quitAndInstall();
})
}

View File

@ -17,7 +17,7 @@
"license": "GPL-3.0",
"scripts": {
"dev": "node server.js",
"prebuild": "node -p \"'export const UI_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > qortal-ui-core/src/redux/app/version.js",
"prebuild": "node -p \"'export const UI_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > qortal-ui-core/src/redux/app/version.js",
"build-dev": "node build.js",
"build": "NODE_ENV=production node build.js",
"server": "NODE_ENV=production node server.js",
@ -32,16 +32,16 @@
},
"dependencies": {
"electron-updater": "4.3.9",
"electron-log": "4.4.1"
"electron-log": "4.4.5"
},
"devDependencies": {
"electron": "11.5.0",
"electron-builder": "22.14.5",
"electron-notarize": "1.1.1",
"electron-packager": "15.4.0",
"electron-notarize": "1.1.1",
"electron-packager": "15.4.0",
"shelljs": "0.8.4"
},
"engines": {
"node": ">=14.17.0"
}
}
}