Always check for updates and update publish script
This commit is contained in:
parent
93faaeb220
commit
7f71669e94
@ -14,7 +14,7 @@
|
||||
"dev": "electron . --dev",
|
||||
"build": "electron-builder",
|
||||
"build-arch": "electron-builder --linux dir",
|
||||
"release": "electron-builder -mwlp always",
|
||||
"release": "GH_TOKEN=$(cat GH_TOKEN) electron-builder -wlp always",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"dependencies": {
|
||||
|
14
src/main.js
14
src/main.js
@ -5,7 +5,7 @@ import {app, BrowserWindow, ipcMain, Menu, shell, Tray} from "electron";
|
||||
import Meta from "./Meta";
|
||||
import Config from "./Config";
|
||||
import Service from "./Service";
|
||||
import { autoUpdater } from "electron-updater";
|
||||
import {autoUpdater} from "electron-updater";
|
||||
|
||||
const resourcesDir = path.resolve(__dirname, '../resources');
|
||||
const iconPath = path.resolve(resourcesDir, 'logo.png');
|
||||
@ -36,11 +36,9 @@ function toggleMainWindow() {
|
||||
}
|
||||
}
|
||||
|
||||
function createWindow() {
|
||||
// Check for updates on windows and mac
|
||||
if (process.platform === 'win32' || process.platform === 'darwin') {
|
||||
autoUpdater.checkForUpdatesAndNotify();
|
||||
}
|
||||
async function createWindow() {
|
||||
// Check for updates
|
||||
await autoUpdater.checkForUpdatesAndNotify();
|
||||
|
||||
// System tray
|
||||
console.log('Loading system Tray');
|
||||
@ -229,4 +227,6 @@ function listIcons(set) {
|
||||
}
|
||||
|
||||
console.log('Starting app');
|
||||
app.on('ready', createWindow);
|
||||
app.on('ready', () => {
|
||||
createWindow().catch(console.error);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user