Skip to content

Commit

Permalink
Fix package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Giovanni Giordano committed Mar 13, 2017
1 parent 2187e2e commit bc5128b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ autoUpdater.on('update-not-available', (ev, info) => {
sendStatusToWindow('Update not available.');
})
autoUpdater.on('error', (ev, err) => {
sendStatusToWindow('Error in auto-updater.');
sendStatusToWindow(`Error in auto-updater. ${err}`);
})
autoUpdater.on('download-progress', (ev, progressObj) => {
sendStatusToWindow('Download progress...');
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "electron-updater-example",
"version": "0.4.2",
"version": "0.4.3",
"main": "main.js",
"description": "electron-updater example project",
"author": "Giovanni Giordano",
Expand All @@ -15,6 +15,10 @@
"electron-log": "^1.3.0",
"electron-updater": "^1.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/giovannigiordano/electron-updater-example.git"
},
"build": {
"appId": "com.github.giovannigiordano.electronupdaterexample",
"mac": {
Expand All @@ -28,4 +32,4 @@
"perMachine": true
}
}
}
}
10 changes: 0 additions & 10 deletions publish.sh

This file was deleted.

1 change: 1 addition & 0 deletions version.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<title>Electron Updater Example</title>
</head>
<body>
<h1>Complimenti, dopo 1 anno ci sei riuscito!</h1>
Current version: <span id="version">vX.Y.Z</span>
<div id="messages"></div>
<script>
Expand Down

0 comments on commit bc5128b

Please sign in to comment.