Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 2.9 KB

CHANGELOG.md

File metadata and controls

44 lines (36 loc) · 2.9 KB

Changelog

0.6.2

  • Fixed issue with color picker not returning correct values onFinishChange. #116 #117
  • Fixed issue with color picker not showing the correct label for color format. #117
  • Fixed NumberControllerBox onFinishChange event. #112
  • Fixed issue with GUI not being sized correct at start. #111

0.6.1

  • Fixed issue with color picker not working on a page that has scrolled. #37
  • Fixed issue with sliders created with min()/max() not remembering their name or to listen. #107

0.6.0

  • Ported to ES6
  • Exported using Universal Module Definition (UMD) for max compatibility (Commonjs, Requirejs, AMD, global var)
  • Now using webpack for build
  • Optional external CSS file (dat.gui.css) for use on CSP-enabled servers that block unsafe-inline
  • Added updateDisplay() to GUI, to update all controls in all folders - dataarts#97
  • Fixed GUI.destroy() to remove all window eventListeners - dataarts#88
  • Fixed performance issue when rotated on tablet/mobile - dataarts#91
  • Fixed issue that prevented user from changing values of controls that are listening - dataarts#100
  • Fixed issues with onFinishChange callbacks on revert - dataarts#103
  • Fixed issues with color selector formatting - dataarts#73
  • Fixed issues with step parameters in sliders - dataarts#74
  • Fixed an issue with colors based on arrays - dataarts#57
  • Fixed factory.js, Step param was not used - dataarts#45

0.5

  • Moved to requirejs for dependency management.
  • Changed global namespace from DAT to dat (lowercase).
  • Added support for color controllers. See Color Controllers.
  • Added support for folders. See Folders.
  • Added support for saving named presets. See Presets.
  • Removed height parameter from GUI constructor. Scrollbar automatically induced when window is too short.
  • dat.GUI.autoPlace parameter removed. Use new dat.GUI( { autoPlace: false } ). See Custom Placement.
  • gui.autoListen and gui.listenAll() removed. See Updating The Display Manually.
  • dat.GUI.load removed. See Saving Values.
  • Made Controller code completely agnostic of GUI. Controllers can easily be created independent of a GUI panel.

0.4

  • Migrated from GitHub to Google Code.