vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

157 lines
4.8 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
11 years ago
  1. vis.js history
  2. http://visjs.org
  3. ## 2014-03-06, version 0.6.2
  4. ### Graph
  5. - changed navigation CSS. Icons are now always correctly positioned.
  6. - added stabilizationIterations option to graph.
  7. ## 2014-03-06, version 0.6.1
  8. ### Graph
  9. - Bugfix graphviz examples.
  10. - Bugfix labels position for smooth curves.
  11. - Tweaked graphviz example physics.
  12. - Updated physics documentation to stress importance of configurePhysics.
  13. ### Timeline
  14. - Fixed a bug with options `margin.axis` and `margin.item` being ignored when setting them to zero.
  15. - Some clarifications in the documentation.
  16. ## 2014-03-05, version 0.6.0
  17. ### Graph
  18. - Added Physics Configuration option. This makes tweaking the physics system to suit your needs easier.
  19. - Click and doubleClick events.
  20. - Initial zoom bugfix.
  21. - Directions for Hierarchical layout.
  22. - Refactoring and bugfixes.
  23. ## 2014-02-20, version 0.5.1
  24. - Fixed broken bower module.
  25. ## 2014-02-20, version 0.5.0
  26. ### Timeline
  27. - Editable Items: drag items, add new items, update items, and remove items.
  28. - Implemented options `selectable`, `editable`.
  29. - Added events `timechange` and `timechanged` when dragging the custom time bar.
  30. - Multiple items can be selected using ctrl+click or shift+click.
  31. - Implemented functions `setWindow(start, end)` and `getWindow()`.
  32. - Fixed scroll to zoom not working on IE in standards mode.
  33. ### Graph
  34. - Editable nodes and edges: create, update, and remove them.
  35. - Support for smooth, curved edges (on by default).
  36. - Performance improvements.
  37. - Fixed scroll to zoom not working on IE in standards mode.
  38. - Added hierarchical layout option.
  39. - Overhauled physics system, now using Barnes-Hut simulation by default. Great performance gains.
  40. - Modified clustering system to give better results.
  41. - Adaptive performance system to increase visual performance (60fps target).
  42. ### DataSet
  43. - Renamed functions `subscribe` and `unsubscribe` to `on` and `off` respectively.
  44. ## 2014-01-31, version 0.4.0
  45. ### Timeline
  46. - Implemented functions `on` and `off` to create event listeners for events
  47. `rangechange`, `rangechanged`, and `select`.
  48. - Implemented function `select` to get and set the selected items.
  49. - Items can be selected by clicking them, muti-select by holding them.
  50. - Fixed non working `start` and `end` options.
  51. ### Graph
  52. - Fixed longstanding bug in the force calculation, increasing simulation
  53. stability and fluidity.
  54. - Reworked the calculation of the Graph, increasing performance for larger
  55. datasets (up to 10x!).
  56. - Support for automatic clustering in Graph to handle large (>50000) datasets
  57. without losing performance.
  58. - Added automatic initial zooming to Graph, to more easily view large amounts
  59. of data.
  60. - Added local declustering to Graph, freezing the simulation of nodes outside
  61. of the cluster.
  62. - Added support for key-bindings by including mouseTrap in Graph.
  63. - Added navigation controls.
  64. - Added keyboard navigation.
  65. - Implemented functions `on` and `off` to create event listeners for event
  66. `select`.
  67. ## 2014-01-14, version 0.3.0
  68. - Moved the generated library to folder `./dist`
  69. - Css stylesheet must be loaded explicitly now.
  70. - Implemented options `showCurrentTime` and `showCustomTime`. Thanks fi0dor.
  71. - Implemented touch support for Timeline.
  72. - Fixed broken Timeline options `min` and `max`.
  73. - Fixed not being able to load vis.js in node.js.
  74. ## 2013-09-20, version 0.2.0
  75. - Implemented full touch support for Graph.
  76. - Fixed initial empty range in the Timeline in case of a single item.
  77. - Fixed field `className` not working for items.
  78. ## 2013-06-20, version 0.1.0
  79. - Added support for DataSet to Graph. Graph now uses an id based set of nodes
  80. and edges instead of a row based array internally. Methods getSelection and
  81. setSelection of Graph now accept a list with ids instead of rows.
  82. - Graph is now robust against edges pointing to non-existing nodes, which
  83. can occur easily while dynamically adding/removing nodes and edges.
  84. - Implemented basic support for groups in the Timeline.
  85. - Added documentation on DataSet and DataView.
  86. - Fixed selection of nodes in a Graph when the containing web page is scrolled.
  87. - Improved date conversion.
  88. - Renamed DataSet option `fieldTypes` to `convert`.
  89. - Renamed function `vis.util.cast` to `vis.util.convert`.
  90. ## 2013-06-07, version 0.0.9
  91. - First working version of the Graph imported from the old library.
  92. - Documentation added for both Timeline and Graph.
  93. ## 2013-05-03, version 0.0.8
  94. - Performance improvements: only visible items are rendered.
  95. - Minor bug fixes and improvements.
  96. ## 2013-04-25, version 0.0.7
  97. - Sanitized the published packages on npm and bower.
  98. ## 2013-04-25, version 0.0.6
  99. - Css is now packaged in the javascript file, and automatically loaded.
  100. - The library uses node style dependency management for modules now, used
  101. with Browserify.
  102. ## 2013-04-16, version 0.0.5
  103. - First working version of the Timeline.
  104. - Website created.