diff --git a/main.js b/main.js index c087415..76d9611 100644 --- a/main.js +++ b/main.js @@ -1,7 +1,9 @@ const electron = require('electron') // Module to control application life. const { app, BrowserWindow } = electron -const updater = require('./updater') +// IF you want to enable automatic update uncomment the line below +// const updater = require('./updater') + // Keep window state const windowStateKeeper = require('electron-window-state') @@ -134,7 +136,8 @@ function createWindow() { require('electron').shell.openExternal(url); }); - setTimeout(updater.check, 2000); + // IF you want to enable automatic update uncomment the line below + // setTimeout(updater.check, 2000); } // This method will be called when Electron has finished diff --git a/package.json b/package.json index e55fc32..4d4f0c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "PIA", - "version": "1.6.2", + "version": "1.6.3", "description": "Version Portable Outil PIA", "main": "main.js", "scripts": {