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.
		
		
		
		
		
			
		
			
				
	
	
		
			77 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
const autoUpdater = require('electron-updater').autoUpdater
 | 
						|
const { dialog } = require('electron');
 | 
						|
 | 
						|
const config = require('./config');
 | 
						|
const windowState = require('./window_state');
 | 
						|
 | 
						|
const hour = 60 * 60;
 | 
						|
const autoUpdaterInterval = hour * 1000;
 | 
						|
 | 
						|
const RESTART_BUTTON = 0;
 | 
						|
const LATER_BUTTON = 1;
 | 
						|
 | 
						|
function autoUpdateDisabled() {
 | 
						|
  return process.platform === 'linux' || process.mas || config.get('disableAutoUpdate');
 | 
						|
}
 | 
						|
 | 
						|
function checkForUpdates() {
 | 
						|
  autoUpdater.checkForUpdates();
 | 
						|
}
 | 
						|
 | 
						|
var showingDialog = false;
 | 
						|
function showUpdateDialog(mainWindow, messages) {
 | 
						|
  if (showingDialog) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  showingDialog = true;
 | 
						|
 | 
						|
  const options = {
 | 
						|
    type: 'info',
 | 
						|
    buttons: [
 | 
						|
      messages.autoUpdateRestartButtonLabel.message,
 | 
						|
      messages.autoUpdateLaterButtonLabel.message
 | 
						|
    ],
 | 
						|
    title: messages.autoUpdateNewVersionTitle.message,
 | 
						|
    message: messages.autoUpdateNewVersionMessage.message,
 | 
						|
    detail: messages.autoUpdateNewVersionInstructions.message,
 | 
						|
    defaultId: RESTART_BUTTON,
 | 
						|
    cancelId: LATER_BUTTON
 | 
						|
  }
 | 
						|
 | 
						|
  dialog.showMessageBox(mainWindow, options, function(response) {
 | 
						|
    if (response == RESTART_BUTTON) {
 | 
						|
      windowState.markShouldQuit();
 | 
						|
      autoUpdater.quitAndInstall();
 | 
						|
    }
 | 
						|
 | 
						|
    showingDialog = false;
 | 
						|
  });
 | 
						|
}
 | 
						|
 | 
						|
function onError(error) {
 | 
						|
  console.log("Got an error while updating: ", error.stack);
 | 
						|
}
 | 
						|
 | 
						|
function initialize(getMainWindow, messages) {
 | 
						|
  if (!messages) {
 | 
						|
    throw new Error('auto-update initialize needs localized messages');
 | 
						|
  }
 | 
						|
 | 
						|
  if (autoUpdateDisabled()) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  autoUpdater.addListener('update-downloaded', function() {
 | 
						|
    showUpdateDialog(getMainWindow(), messages);
 | 
						|
  });
 | 
						|
  autoUpdater.addListener('error', onError);
 | 
						|
 | 
						|
  checkForUpdates();
 | 
						|
 | 
						|
  setInterval(checkForUpdates, autoUpdaterInterval);
 | 
						|
}
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  initialize
 | 
						|
};
 |