diff --git a/package.json b/package.json index d9179c1..e0b7fd3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tabs", - "version": "0.6.2", + "version": "0.6.3", "description": "Persistent and separate browser tabs in one window.", "author": { "name": "Alice Gaudon", diff --git a/src/main.js b/src/main.js index 8b2a4aa..69fc574 100644 --- a/src/main.js +++ b/src/main.js @@ -5,6 +5,7 @@ import {app, BrowserWindow, ipcMain, Menu, shell, Tray} from "electron"; import Meta from "./Meta"; import Config from "./Config"; import Service from "./Service"; +import { autoUpdater } from "electron-updater"; const resourcesDir = path.resolve(__dirname, '../resources'); const iconPath = path.resolve(resourcesDir, 'logo.png'); @@ -36,6 +37,11 @@ function toggleMainWindow() { } function createWindow() { + // Check for updates on windows and mac + if (process.platform === 'win32' || process.platform === 'darwin') { + autoUpdater.checkForUpdatesAndNotify(); + } + // System tray console.log('Loading system Tray'); tray = new Tray(iconPath);