Skip to content
This repository has been archived by the owner on Nov 12, 2019. It is now read-only.

Commit

Permalink
fixed bug and bump version to v0.1.57-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
yjlintw committed Jul 21, 2017
1 parent 389d52d commit d405aa4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require('electron-debug')({showDevTools: false});
autoUpdater.logger = log;
autoUpdater.logger.transports.file.level = "info";
// autoUpdater.autoDownload = false;
autoUpdater.allowPrerelease = false;
// autoUpdater.allowPrerelease = false;
log.info('App Starting');

let manualupdate = false;
Expand Down Expand Up @@ -51,6 +51,8 @@ function createWindow () {
}
if (settings.has("system.update")) {
autoUpdater.allowPrerelease = settings.get("system.update.allowbeta")
} else {
autoUpdater.allowPrerelease = false
}
win = new BrowserWindow({
width: w,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "comic-reader",
"productName": "Comic Reader",
"author": "Team Comic Reader",
"version": "0.1.56-beta",
"version": "0.1.57-beta",
"description": "A quicker, smoother and cooler reading experience. The best way to read comics.",
"main": "main.js",
"devDependencies": {
Expand Down

0 comments on commit d405aa4

Please sign in to comment.