Skip to content
This repository has been archived by the owner on Apr 21, 2021. It is now read-only.

Commit

Permalink
more tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Borychowski committed Jul 10, 2020
1 parent 900a572 commit 26a96da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const windowStateKeeper = require('electron-window-state');
const EVENT = require('./app/services/events');
const config = require('./app/services/config');
const helper = require('./app/services/helper');
const updater = require('./app/updater/main');
require('update-electron-app')();

let win;

Expand Down Expand Up @@ -38,7 +38,7 @@ function createWindow () {
webPreferences: {
nodeIntegration: true,
webviewTag: true,
spellcheck: true,
spellcheck: true
}
});
win.on('closed', () => win = null);
Expand All @@ -64,7 +64,7 @@ function createWindow () {

// win.webContents.openDevTools();

updater.init(win);
// updater.init(win);
}

app.on('window-all-closed', app.quit);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tim",
"productName": "TIM",
"description": "Tom's Issue Manager helps you browse, and keep track of your Github issues.",
"version": "3.5.0",
"version": "3.5.1",
"main": "index.js",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,7 +30,6 @@
"electron-context-menu": "^0.12.1",
"electron-dl": "^1.14.0",
"electron-log": "^3.0.9",
"electron-updater": "^4.0.6",
"electron-window-state": "^5.0.3",
"ionicons": "4.5.8",
"jenkins-api": "^0.3.1",
Expand All @@ -41,6 +40,7 @@
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"tingodb": "^0.6.1",
"update-electron-app": "^1.5.0",
"velocity-animate": "^1.5.2"
},
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion src/frame/swiping.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ function init (frm, wbv) {
frame = frm;
webview = wbv;
webview0 = wbv[0];
console.log(webview0);

if (isReady) return;

Expand Down
2 changes: 1 addition & 1 deletion src/mainmenu/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const menuTemplate = [
{ role: 'about' },
{ type: 'separator' },

{ label: 'Check for Updates...', click: () => $.trigger(EVENT.updater.check) },
// { label: 'Check for Updates...', click: () => $.trigger(EVENT.updater.check) },
{ label: 'Changelog', click: () => helper.openChangelog(ver) },
{ type: 'separator' },

Expand Down

0 comments on commit 26a96da

Please sign in to comment.