Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Ignatov committed Jul 4, 2017
1 parent 7439bf2 commit 031b323
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ Also, the following browser features must be enabled:
- On Windows, Internet Explorer cannot display the pages properly if the OS zoom
is not set to 100% (Control Panel\Appearance and Personalization\Display)

Deploymemt
Deployment
-----------------------------------------------------------------------------

From a console in the project directory, execute:

```
npm install
npm run serve
npm start
```
19 changes: 8 additions & 11 deletions js/gc-chart-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,19 @@ window.GC = window.GC || {};
// been stored on the server too)
// =========================================================================
var readOnlySettings = {
fileRevision : 209,
fileRevision : 210,

// See the toString method for the rendering template
version : {
major : 0,
minor : 9,
build : 9,
revision : 0,
state : "BETA", // dev|alpha|beta|rc|r
major : 0,
minor : 1,
build : 3,
state : "beta", // dev|alpha|beta|rc|r

asString : function() {
return this.major + "." +
this.minor + "." +
//this.build + "." +
//this.revision + "-" +
this.build + "-" +
return this.major + "." +
this.minor + "." +
this.build + "-" +
this.state;
}
},
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "growthchart",
"version": "0.1.2",
"version": "0.1.3",
"scripts": {
"serve": "./node_modules/http-server/bin/http-server -p 8000 -c-1 ."
"serve": "./node_modules/http-server/bin/http-server -p 9000 -c-1 .",
"start": "npm run serve"
},
"dependencies": {
"eslint": "^3.9.1",
Expand Down

0 comments on commit 031b323

Please sign in to comment.