diff --git a/HISTORY.md b/HISTORY.md index e16b1ec0..03bb5783 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,7 +2,12 @@ http://visjs.org -## not yet released, version 3.0.1-SNAPSHOT +## 2014-07-22, version 3.1.0 + +### General + +- Refactored the code to commonjs modules, which are browserifyable. This allows + to create custom builds. ### Timeline @@ -12,8 +17,6 @@ http://visjs.org allows to specify different margins horizontally/vertically. - Removed check for number of arguments in callbacks `onAdd`, `onUpdate`, `onRemove`, and `onMove`. -- Refactored the code to commonjs modules, which are browserifyable. This allows - to create custom bundles. - Fixed items in groups sometimes being displayed but not positioned correctly. - Fixed range where the `end` of the first is equal to the `start` of the second sometimes being stacked instead of put besides each other when `item.margin=0` @@ -42,7 +45,8 @@ http://visjs.org ### DataSet -- Added .get() returnType option to return as JSON object, Array or Google DataTable. +- Added .get() returnType option to return as JSON object, Array or Google + DataTable. diff --git a/bower.json b/bower.json index 5a62ff87..c995b1ad 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "vis", - "version": "3.0.1-SNAPSHOT", + "version": "3.1.0", "description": "A dynamic, browser-based visualization library.", "homepage": "http://visjs.org/", "repository": { diff --git a/examples/timeline/index.html b/examples/timeline/index.html index 423164ce..79b67820 100644 --- a/examples/timeline/index.html +++ b/examples/timeline/index.html @@ -30,7 +30,6 @@

16_navigation_menu.html

17_data_serialization.html

18_range_overflow.html

-

19_vis_light_bundle.html

requirejs_example.html

diff --git a/lib/network/Node.js b/lib/network/Node.js index 0c5eafa5..3b5b0f38 100644 --- a/lib/network/Node.js +++ b/lib/network/Node.js @@ -180,7 +180,6 @@ Node.prototype.setProperties = function(properties, constants) { } } - // individual shape properties if (properties.shape !== undefined) {this.shape = properties.shape;} if (properties.image !== undefined) {this.image = properties.image;} diff --git a/misc/how_to_publish.md b/misc/how_to_publish.md index b7b4414c..84dde94b 100644 --- a/misc/how_to_publish.md +++ b/misc/how_to_publish.md @@ -31,7 +31,7 @@ This generates the vis.js library in the folder `./dist`. - Push the branches to github - Create a version tag (with the new version number) and push it to github: - git tag v0.3.0 + git tag v3.1.0 git push --tags diff --git a/package.json b/package.json index e30dafcf..909b5239 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vis", - "version": "3.0.1-SNAPSHOT", + "version": "3.1.0", "description": "A dynamic, browser-based visualization library.", "homepage": "http://visjs.org/", "repository": {