Browse Source

Released version 3.10.0

v3_develop v3.10.0
jos 9 years ago
parent
commit
a3b89a4cd0
7 changed files with 4677 additions and 4674 deletions
  1. +10
    -9
      HISTORY.md
  2. +1
    -1
      bower.json
  3. +4645
    -4644
      dist/vis.js
  4. +1
    -1
      dist/vis.map
  5. +7
    -7
      dist/vis.min.js
  6. +4
    -3
      lib/network/Network.js
  7. +9
    -9
      package.json

+ 10
- 9
HISTORY.md View File

@ -2,7 +2,7 @@
http://visjs.org http://visjs.org
## not yet released, version 3.9.2-SNAPSHOT
## 2015-02-11, version 3.10.0
### Network ### Network
@ -20,14 +20,6 @@ http://visjs.org
- Added opacity option to edges. Opacity is only used for the unselected state. - Added opacity option to edges. Opacity is only used for the unselected state.
- Fixed bug where selections from removed data elements persisted. - Fixed bug where selections from removed data elements persisted.
### DataSet/DataView
- Added property `length` holding the total number of items to the `DataSet`
and `DataView`.
- Added a method `refresh()` to the `DataView`, to update filter results.
- Fixed a bug in the `DataSet` returning an empty object instead of `null` when
no item was found when using both a filter and specifying fields.
### Timeline ### Timeline
- `Timeline.redraw()` now also recalculates the size of items. - `Timeline.redraw()` now also recalculates the size of items.
@ -41,6 +33,15 @@ http://visjs.org
- Fixed `setWindow` not working when applying an interval larger than the - Fixed `setWindow` not working when applying an interval larger than the
configured `zoomMax`. configured `zoomMax`.
### DataSet/DataView
- Added property `length` holding the total number of items to the `DataSet`
and `DataView`.
- Added a method `refresh()` to the `DataView`, to update filter results.
- Fixed a bug in the `DataSet` returning an empty object instead of `null` when
no item was found when using both a filter and specifying fields.
## 2015-01-16, version 3.9.1 ## 2015-01-16, version 3.9.1
### General ### General

+ 1
- 1
bower.json View File

@ -1,6 +1,6 @@
{ {
"name": "vis", "name": "vis",
"version": "3.9.2-SNAPSHOT",
"version": "3.10.0",
"main": ["dist/vis.min.js", "dist/vis.min.css"], "main": ["dist/vis.min.js", "dist/vis.min.css"],
"description": "A dynamic, browser-based visualization library.", "description": "A dynamic, browser-based visualization library.",
"homepage": "http://visjs.org/", "homepage": "http://visjs.org/",

+ 4645
- 4644
dist/vis.js
File diff suppressed because it is too large
View File


+ 1
- 1
dist/vis.map
File diff suppressed because it is too large
View File


+ 7
- 7
dist/vis.min.js
File diff suppressed because it is too large
View File


+ 4
- 3
lib/network/Network.js View File

@ -2196,9 +2196,10 @@ Network.prototype._stabilize = function() {
var count = 0; var count = 0;
while (this.moving && count < this.constants.stabilizationIterations) { while (this.moving && count < this.constants.stabilizationIterations) {
this._physicsTick(); this._physicsTick();
if (count % 100 == 0) {
console.log("stabilizationIterations",count);
}
// TODO: cleanup
//if (count % 100 == 0) {
// console.log("stabilizationIterations",count);
//}
count++; count++;
} }

+ 9
- 9
package.json View File

@ -1,6 +1,6 @@
{ {
"name": "vis", "name": "vis",
"version": "3.9.2-SNAPSHOT",
"version": "3.10.0",
"description": "A dynamic, browser-based visualization library.", "description": "A dynamic, browser-based visualization library.",
"homepage": "http://visjs.org/", "homepage": "http://visjs.org/",
"repository": { "repository": {
@ -35,16 +35,16 @@
}, },
"devDependencies": { "devDependencies": {
"clean-css": "latest", "clean-css": "latest",
"gulp": "^3.8.5",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.6",
"gulp": "^3.8.11",
"gulp-concat": "^2.4.3",
"gulp-minify-css": "^0.4.5",
"gulp-rename": "^1.2.0", "gulp-rename": "^1.2.0",
"gulp-util": "^2.2.19",
"gulp-util": "^3.0.3",
"merge-stream": "^0.1.5", "merge-stream": "^0.1.5",
"mocha": "^1.20.1",
"mocha": "^2.1.0",
"rimraf": "^2.2.8", "rimraf": "^2.2.8",
"uglify-js": "^2.4.14",
"webpack": "^1.3.1-beta7",
"yargs": "^1.2.6"
"uglify-js": "^2.4.16",
"webpack": "^1.5.3",
"yargs": "^2.3.0"
} }
} }

Loading…
Cancel
Save