1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

Improvements to query table

This commit is contained in:
2020-06-18 19:01:09 +02:00
parent a597015f50
commit 0d10a93bf8
10 changed files with 194 additions and 22 deletions

View File

@ -94,10 +94,19 @@ app.on('ready', () => {
});
// auto-updater events
autoUpdater.on('checking-for-update', () => {
});
autoUpdater.on('update-available', () => {
mainWindow.webContents.send('update_available');
});
autoUpdater.on('update-not-available', () => {
});
autoUpdater.on('download-progress', (progressObj) => {
});
autoUpdater.on('update-downloaded', () => {
mainWindow.webContents.send('update_downloaded');
});