Skip to content

Releases: cocopon/tweakpane

2.1.1

13 Mar 08:28
Compare
Choose a tag to compare
  • Added Point 4D support (#186)
  • Improved visibility of graph tooltip

2.1.0

11 Mar 20:30
Compare
Choose a tag to compare
  • Added numeric expression support 🔢 (#189)
  • Added a draggable knob to numeric text inputs 🎛️ (#185)
  • Some minor improvements

2.0.1

06 Mar 10:06
Compare
Choose a tag to compare
  • Fine-tuned the pane appearance
  • Added Tweakpane.version

2.0.0

27 Feb 06:22
Compare
Choose a tag to compare

The second major version of Tweakpane! Lots of refactoring, mainly for the plugin system, and some breaking changes.

Summary

  • Plugin system!! ⚙️ (#78)
  • Added more context to event handlers (#110)

Migration from 1.x

  • count option of addMonitor() was removed:
    Use bufferSize instead.
  • The first argument of the event handler was changed:
    // 1.x
    pane.addInput(params, 'key').on('click', (value) => {
      console.log(value);
    });
    
    // 2.0.0
    pane.addInput(params, 'key').on('click', (ev) => {
      console.log(ev.value);
    });

1.6.1

24 Feb 12:24
Compare
Choose a tag to compare
  • Non-destructive binding for complex object (#151)
  • Fixed a bug of hidden property (#157)

1.6.0

23 Feb 03:13
Compare
Choose a tag to compare
  • Added support for Point/Vector 3D input 🌐 (#102)
  • Added lineCount option to monitors
  • Improved initial color mode of color picker (#144)
  • Refactored file size of the default theme
  • Fixed duplicated change events for Color and Point2D (#120)
  • Fixed a small layout issue in some environment
  • Huge refactoring for preparing for plugin system (#78)

1.5.9

11 Feb 09:12
Compare
Choose a tag to compare
  • Added lineCount option to monitors
  • Fine-tuned the default theme and the pane layout
  • Refactored inputs and monitors for preparing for plugin structure (#78)
  • Fixed firing duplicated change events (#120)

1.5.8

22 Jan 00:24
Compare
Choose a tag to compare

Tweakpane:

  • Fixed HSL color format

Document:

  • Added Theming page
  • Added Panepaint, a tool for building themes 🎨

1.5.7

26 Nov 13:05
Compare
Choose a tag to compare
  • Fixed RegExp patterns for parsing colors (#104)
  • Added input: 'string' option

1.5.6

29 Oct 13:02
Compare
Choose a tag to compare
  • Improved performance of color palettes (#99)
  • Some minor improvements