You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
8 years ago
|
const autoUpdater = require('electron-updater').autoUpdater
|
||
|
const { dialog } = require('electron');
|
||
|
|
||
8 years ago
|
const config = require('./config');
|
||
|
const locale = require('./locale');
|
||
8 years ago
|
const windowState = require('./window_state');
|
||
|
|
||
8 years ago
|
const hour = 60 * 60;
|
||
|
const autoUpdaterInterval = hour * 1000;
|
||
|
|
||
|
const RESTART_BUTTON = 0;
|
||
|
const LATER_BUTTON = 1;
|
||
|
|
||
8 years ago
|
function autoUpdateDisabled() {
|
||
8 years ago
|
return process.mas || config.get('disableAutoUpdate');
|
||
|
}
|
||
|
|
||
|
function checkForUpdates() {
|
||
|
autoUpdater.checkForUpdates();
|
||
|
}
|
||
|
|
||
8 years ago
|
function showUpdateDialog() {
|
||
|
const options = {
|
||
|
type: 'info',
|
||
|
buttons: [
|
||
|
locale.messages.autoUpdateRestartButtonLabel.message,
|
||
|
locale.messages.autoUpdateLaterButtonLabel.message
|
||
|
],
|
||
|
title: locale.messages.autoUpdateNewVersionTitle.message,
|
||
|
message: locale.messages.autoUpdateNewVersionMessage.message,
|
||
|
detail: locale.messages.autoUpdateNewVersionInstructions.message,
|
||
|
defaultId: RESTART_BUTTON,
|
||
|
cancelId: LATER_BUTTON
|
||
8 years ago
|
}
|
||
8 years ago
|
|
||
|
dialog.showMessageBox(options, function(response) {
|
||
|
if (response == RESTART_BUTTON) {
|
||
|
windowState.markShouldQuit();
|
||
|
autoUpdater.quitAndInstall();
|
||
|
}
|
||
|
});
|
||
8 years ago
|
}
|
||
|
|
||
|
function onError(error) {
|
||
|
console.log("Got an error while updating: ", error.stack);
|
||
|
}
|
||
|
|
||
8 years ago
|
function initialize() {
|
||
8 years ago
|
if (autoUpdateDisabled()) {
|
||
8 years ago
|
return;
|
||
|
}
|
||
|
|
||
8 years ago
|
autoUpdater.addListener('update-downloaded', showUpdateDialog);
|
||
8 years ago
|
autoUpdater.addListener('error', onError);
|
||
|
|
||
|
checkForUpdates();
|
||
|
|
||
|
setInterval(checkForUpdates, autoUpdaterInterval);
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
8 years ago
|
initialize
|
||
8 years ago
|
};
|