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

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-sap committed Apr 13, 2017
1 parent 8356568 commit 5ea4f71
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/frame/index.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#main { position: absolute; left: 364px; top: 0; bottom: 0; right: 0; overflow: hidden; }
#main { position: absolute; left: 364px; top: 0; bottom: 0; right: 0; overflow: hidden; background-color: #fff; }

#frame { position: absolute; top: 38px; left: -364px; right: 0; bottom: 0; overflow: hidden; }

Expand Down
4 changes: 2 additions & 2 deletions app/settings/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@
/* SHOW SETTINGS */

#header,
#frame,
#main,
#nav,
#subnav { transition: filter .3s ease-out; }

.show-settings #header,
.show-settings #frame,
.show-settings #main,
.show-settings #nav,
.show-settings #subnav { filter: brightness(0.4); pointer-events: none; }
.show-settings .settings { opacity: 1; transform: scale(1); }
3 changes: 2 additions & 1 deletion app/updater/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ let availableVersion = null;

let SILENT = false;
let IS_DOWNLOADING = false;

const send = (name, value) => ipcRenderer.send('updater', name, value);
const log = msg => isDev && console.log(msg);
const log = (...args) => isDev && console.log.apply(console, args);


const events = {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "github-browser",
"productName": "Github Browser",
"description": "Github browser.",
"version": "1.3.0",
"version": "1.3.1",
"main": "index.js",
"repository": {
"type": "git",
Expand All @@ -28,7 +28,7 @@
"dependencies": {
"electron-config": "^0.2.1",
"electron-log": "^2.0.0",
"electron-updater": "^1.8.1",
"electron-updater": "^1.12.0",
"electron-window-state": "^4.1.0",
"ionicons": "^3.0.0",
"jenkins-api": "^0.2.8",
Expand All @@ -38,6 +38,6 @@
},
"devDependencies": {
"electron": "beta",
"electron-builder": "^16.4.2"
"electron-builder": "^16.8.3"
}
}

0 comments on commit 5ea4f71

Please sign in to comment.