Skip to content

Commit

Permalink
Increment version number of app to 0.7.1 and NW.js to 0.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Lee committed Apr 29, 2016
1 parent e42d177 commit 6f35bee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"transparent": false,
"icon": "icons/icon.png"
},
"version": "0.7.0",
"version": "0.7.1",
"app_name": "Boats Animator",
"chromium-args": "--mixed-context",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var userDir = process.env.USERPROFILE,
nw = new NwBuilder({
files: "app\\**\\**", // use the glob format
platforms: ["linux64", "linux32", "osx64", "win32"],
version: "0.14.2",
version: "0.14.3",
appName: "Boats Animator",
buildDir: "bin",
cacheDir: `${userDir}\\AppData\\Roaming\\npm\\node_modules\\nw-builder\\cache`,
Expand Down
2 changes: 1 addition & 1 deletion win-install/setup.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "Boats Animator"
#define MyAppVersion "0.7.0"
#define MyAppVersion "0.7.1"
#define MyAppPublisher "Charlie Lee"
#define MyAppURL "https://github.com/BoatsAreRockable/animator"
#define MyAppExeName "Boats Animator.exe"
Expand Down

1 comment on commit 6f35bee

@le717
Copy link
Contributor

@le717 le717 commented on 6f35bee Apr 29, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BTW, don't bump the app version with every nwjs update. What we should do is only update nwjs every interval of versions or (say) once a month, and right before release we can decide if we'll bump it to the latest while updating the app version as before.

(I'm not saying that's what you are doing here, but I thought this would be a good time to say that.)

Please sign in to comment.