Browse Source

Released version 4.8.0

webworkersNetwork v4.8.0
jos 9 years ago
parent
commit
5275849ade
9 changed files with 14019 additions and 13919 deletions
  1. +10
    -9
      HISTORY.md
  2. +1
    -1
      bower.json
  3. +13981
    -13883
      dist/vis.js
  4. +1
    -1
      dist/vis.map
  5. +1
    -1
      dist/vis.min.css
  6. +22
    -21
      dist/vis.min.js
  7. +1
    -1
      lib/header.js
  8. +1
    -1
      package.json
  9. +1
    -1
      test/timeline_groups.html

+ 10
- 9
HISTORY.md View File

@ -2,7 +2,7 @@
http://visjs.org
## not yet released, version 4.7.1-SNAPSHOT
## 2015-08-28, version 4.8.0
### Timeline
@ -10,20 +10,21 @@ http://visjs.org
### Network
- Fixed #1152, updating images now works.
- Fixed cleaning up of nodes.
- Improved the positioning and CSS of the configurator and the color picker.
- Fixed dynamic updating of label properties.
- Added Spanish (es) locale. Thanks @gomezgoiri.
- Added support for labels in edges and titles for both nodes and edges during gephi import.
- Added KamadaKawai layout engine for improved initial layout.
- Added Adaptive timestep to the physics solvers for increased performance during stabilization.
- Fixed bugs in clustering algorithm.
- Greatly improved performance in clustering.
- Fixed find node return types.
- Made the network keep its 'view' during a change of the size of the container.
- Added improvedLayout as experimental option for greatly improved stabilization times.
- Added adaptiveTimestep as experimental option for greatly improved stabilization times.
- Added support for Gephi directed edges, edge labels and titles.
- Improved the positioning and CSS of the configurator and the color picker.
- Greatly improved performance in clustering.
- Made the network keep its 'view' during a change of the size of the container.
- Fixed #1152, updating images now works.
- Fixed cleaning up of nodes.
- Fixed dynamic updating of label properties.
- Fixed bugs in clustering algorithm.
- Fixed find node return types.
- Fixed bug where stabilization iterations were counted double. If it looks like the stabilization is slower, its because it is doing twice the amount of steps it did before.
- Fixed getPositions return values.

+ 1
- 1
bower.json View File

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

+ 13981
- 13883
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


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


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


+ 1
- 1
lib/header.js View File

@ -8,7 +8,7 @@
* @date @@date
*
* @license
* Copyright (C) 2011-2014 Almende B.V, http://almende.com
* Copyright (C) 2011-2015 Almende B.V, http://almende.com
*
* Vis.js is dual licensed under both
*

+ 1
- 1
package.json View File

@ -1,6 +1,6 @@
{
"name": "vis",
"version": "4.7.1-SNAPSHOT",
"version": "4.8.0",
"description": "A dynamic, browser-based visualization library.",
"homepage": "http://visjs.org/",
"license": "(Apache-2.0 OR MIT)",

+ 1
- 1
test/timeline_groups.html View File

@ -221,7 +221,7 @@
var logs = document.getElementById('logs');
logs.innerHTML = msg + '<br>' + logs.innerHTML;
}
alert(1)
</script>
<div id="logs"></div>
</body>

Loading…
Cancel
Save