diff --git a/HISTORY.md b/HISTORY.md index 27ae035e..fb6bca1d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,15 @@ vis.js history http://visjs.org +## 2014-03-04, version 0.6.0 + +### Graph + +- Added Physics Configuration option. This makes tweaking the physics system to suit your needs easier. +- Click and doubleClick events. +- Initial zoom bugfix. +- Directions for Hierarchical layout. +- Refactoring and bugfixes. ## 2014-02-20, version 0.5.1 diff --git a/examples/graph/25_physics_configuration.html b/examples/graph/25_physics_configuration.html index 08ad8d72..7e32aed2 100644 --- a/examples/graph/25_physics_configuration.html +++ b/examples/graph/25_physics_configuration.html @@ -27,7 +27,7 @@ var connectionCount = []; // randomly create some nodes and edges - var nodeCount = document.getElementById('nodeCount').value; + var nodeCount = 60; for (var i = 0; i < nodeCount; i++) { nodes.push({ id: i, @@ -103,14 +103,6 @@ On start, the default settings will be loaded. Keep in mind that selecting the hierarchical simulation mode disables smooth curves. These will not be enabled again afterwards.
-
- - - -
- -
-

diff --git a/examples/graph/index.html b/examples/graph/index.html index 86ec79b5..d9d9beed 100644 --- a/examples/graph/index.html +++ b/examples/graph/index.html @@ -36,6 +36,7 @@

22_les_miserables.html

23_hierarchical_layout.html

24_hierarchical_layout_userdefined.html

+

25_physics_configuration.html

graphviz_gallery.html

diff --git a/img/gallery/graph/25_physics_configuration.png b/img/gallery/graph/25_physics_configuration.png new file mode 100644 index 00000000..bd63d1c4 Binary files /dev/null and b/img/gallery/graph/25_physics_configuration.png differ diff --git a/index.html b/index.html index 8e7be2a1..737779a7 100644 --- a/index.html +++ b/index.html @@ -311,6 +311,12 @@ The source code of the examples can be found in the
user-defined hierarchy
+
+ + +
physics configuration
+
+