Skip to content

Commit

Permalink
Fix auto updating
Browse files Browse the repository at this point in the history
  • Loading branch information
marckohlbrugge committed May 31, 2020
1 parent 30e5347 commit 3984c5f
Show file tree
Hide file tree
Showing 3 changed files with 4,248 additions and 4 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "WIP",
"description": "Menubar app for WIP",
"version": "1.4.1",
"version": "1.4.2",
"author": "Marc Köhlbrugge <hey@marckohlbrugge.com>",
"bugs": {
"url": "https://github.com/marckohlbrugge/wip-menubar/issues"
Expand Down Expand Up @@ -73,7 +73,8 @@
"pack": "electron-builder --dir",
"format": "prettier --write './src/**/*.{js,html}'",
"lint": "eslint .",
"start": "node_modules/electron/dist/Electron.app/Contents/MacOS/Electron src/app.js"
"start": "node_modules/electron/dist/Electron.app/Contents/MacOS/Electron src/app.js",
"release": "electron-builder -mwl"
},
"build": {
"directories": {
Expand All @@ -90,7 +91,8 @@
"mac": {
"target": [
"mas",
"dmg"
"dmg",
"zip"
],
"category": "public.app-category.productivity",
"entitlements": "build/entitlements.mac.plist",
Expand Down
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ app.on('ready', () => {

autoUpdater.checkForUpdatesAndNotify();

// const autoLauncher = new AutoLaunch({ name: pjson.name });
const autoLauncher = new AutoLaunch({ name: pjson.name });
const tray = new Tray(icon.done);
let oauthWindow = null;
let composeWindow = null;
Expand Down
Loading

0 comments on commit 3984c5f

Please sign in to comment.