Skip to content

Commit

Permalink
Bump version for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
iffy committed Feb 9, 2017
1 parent bab9276 commit 168ae7a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ const {autoUpdater} = require("electron-updater");
//-------------------------------------------------------------------
// Logging
//
// THIS SECTION IS NOT REQUIRED
//
// This logging setup is not required for auto-updates to work,
// but it sure makes debugging easier :)
//-------------------------------------------------------------------
Expand All @@ -17,6 +19,8 @@ log.info('App starting...');

//-------------------------------------------------------------------
// Define the menu
//
// THIS SECTION IS NOT REQUIRED
//-------------------------------------------------------------------
let template = []
if (process.platform === 'darwin') {
Expand All @@ -41,6 +45,12 @@ if (process.platform === 'darwin') {

//-------------------------------------------------------------------
// Open a window that displays the version
//
// THIS SECTION IS NOT REQUIRED
//
// This isn't required for auto-updates to work, but it's easier
// for the app to show a window than to have to click "About" to see
// that updates are working.
//-------------------------------------------------------------------
let win;
function createDefaultWindow() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "electron-updater-example",
"version": "0.3.0",
"version": "0.3.1",
"main": "main.js",
"description": "electron-updater example project",
"author": "Matt Haggard",
Expand Down

0 comments on commit 168ae7a

Please sign in to comment.