1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

whitespace

This commit is contained in:
Milo Todt
2019-01-12 17:59:04 -08:00
parent a0bfd9e497
commit fa77cda0b4

View File

@@ -2,8 +2,8 @@ const electron = require('electron')
const app = electron.app
const Menu = electron.Menu
const ipc = electron.ipcMain
const GhReleases = require('electron-gh-releases')
const isDev = require('electron-is-dev') //isDev is True if running in development mode. Overide by setting ELECTRON_IS_DEV environment variable to 1
const GhReleases = require('electron-gh-releases')
const isDev = require('electron-is-dev') // isDev is True if running in development mode. Overide by setting ELECTRON_IS_DEV environment variable to 1
// electron.crashReporter.start()
var ipcServer = null
@@ -36,8 +36,8 @@ const updater = new GhReleases(ghReleasesOpts)
// Check for updates
// `status` returns true if there is a new update available
function checkUpdate () {
if (isDev){ //Prevents app from attempting to update when in dev mode.
console.log("Updates are disabled in Development mode, see main-app.js")
if (isDev) { // Prevents app from attempting to update when in dev mode.
console.log('Updates are disabled in Development mode, see main-app.js')
return true
}
if (process.platform === 'linux' || isUpdateReady) {
@@ -99,12 +99,12 @@ app.on('ready', function () {
// Check update every day
setInterval(function () {
if(!isDev) checkUpdate()
if (!isDev) checkUpdate()
}, 1000 * 60 * 60 * 24)
// Check update after 10 secs to prevent file locking of Windows
setTimeout(() => {
if(!isDev) checkUpdate()
if (!isDev) checkUpdate()
ipc.on('update-check', function (event, msg) {
if (isUpdateReady) {