Browse Source

Updated version number to 3.1.0

v3_develop
jos 10 years ago
parent
commit
0f14626db5
6 changed files with 11 additions and 9 deletions
  1. +8
    -4
      HISTORY.md
  2. +1
    -1
      bower.json
  3. +0
    -1
      examples/timeline/index.html
  4. +0
    -1
      lib/network/Node.js
  5. +1
    -1
      misc/how_to_publish.md
  6. +1
    -1
      package.json

+ 8
- 4
HISTORY.md View File

@ -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.

+ 1
- 1
bower.json View File

@ -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": {

+ 0
- 1
examples/timeline/index.html View File

@ -30,7 +30,6 @@
<p><a href="16_navigation_menu.html">16_navigation_menu.html</a></p>
<p><a href="17_data_serialization.html">17_data_serialization.html</a></p>
<p><a href="18_range_overflow.html">18_range_overflow.html</a></p>
<p><a href="19_vis_light_bundle.html">19_vis_light_bundle.html</a></p>
<p><a href="requirejs/requirejs_example.html">requirejs_example.html</a></p>

+ 0
- 1
lib/network/Node.js View File

@ -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;}

+ 1
- 1
misc/how_to_publish.md View File

@ -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

+ 1
- 1
package.json View File

@ -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": {

Loading…
Cancel
Save