Skip to content

Releases: britzl/gooey

Gooey 6.0.3

23 Apr 16:31
Compare
Choose a tag to compare

FIX: Typing a space in an input field caused a Lua crash
FIX: Masked text (password) for input fields didn't work
FIX: Issue with text input and focus loss

Gooey 6.0.2

18 Apr 11:08
Compare
Choose a tag to compare

FIX: Buttons and other clickable components was still flagged as clicked even when the click disabled the component

Gooey 6.0.1

17 Apr 05:35
Compare
Choose a tag to compare

FIX: Error when not using input groups

Gooey 6.0.0

16 Apr 08:46
Compare
Choose a tag to compare

NEW: All components have a consumed boolean indicating if input could be considered consumed (pressed, released, scroll, input etc)
NEW: Clickable components (button, checkbox, radio button) has a clicked boolean
BREAKING CHANGE: radio and input components no longer exposes a selected_now value. Use pressed_now and selected to get the equivalent behaviour.

Gooey 5.3.0

25 Mar 21:51
Compare
Choose a tag to compare

NEW: Mouse wheel support for scrolling of lists

Gooey 5.2.0

23 Mar 17:34
Compare
Choose a tag to compare

NEW: The dynamic lists of the the Dirtylarry, RPG and Kenney themes now call tostring() on the data before setting the text. This means that it's now possible to have complex data models with the use __tostring meta method and other primitive data types than string

Gooey 5.1.0

23 Mar 15:48
Compare
Choose a tag to compare

NEW: gooey.dynamic_list() can now handle that the data changes and grow and shrink the scrollable area as needed

Gooey 5.0.2

23 Mar 13:08
Compare
Choose a tag to compare

FIX: Problem with empty dynamic lists

Gooey 5.0.1

23 Mar 12:43
Compare
Choose a tag to compare

FIX: set_visible() on buttons didn't work

Gooey 5.0.0

23 Mar 12:37
Compare
Choose a tag to compare

CHANGE: gooey.static_list() has changed it's function signature
CHANGE: checkbox.check() renamed to checkbox.set_checked(true|false)
CHANGE: radio.select() renamed to radio.set_selected(true|false)
NEW: set_visible() for button, checkbox and radio