Skip to content

Releases: britzl/gooey

Gooey 7.2.0

15 Apr 23:28
Compare
Choose a tag to compare

CHANGE: Lack of dynamic list item data is now returned as nil instead of an empty string

Gooey 7.1.0

26 Mar 05:42
Compare
Choose a tag to compare

CHANGE: Handle size is taken into account when calculating scroll amount as well as handle position. The handle will now stay within the scrollbar bounds.
FIX: scroll.y was inverted for both the scrollbar and list component. 0 should be at the top of a list while 1 should be at the bottom.

Gooey 7.0.2

21 Mar 22:07
Compare
Choose a tag to compare

FIX: List initial scroll is 1
FIX: Need to initiate scrollbar values even if no action is provided

Gooey 7.0.1

18 Mar 23:41
Compare
Choose a tag to compare

FIX: Removed debug print

Gooey 7.0.0

18 Mar 23:28
Compare
Choose a tag to compare

NEW: gooey.scrollbar()
NEW: Lists now have a scroll_to(x, y) instance function
BREAKING CHANGE: The lists in the Kenneyblue theme now supports scrollbars via an optional scrollbar id as the second argument.

Gooey 6.6.1

07 Feb 12:26
Compare
Choose a tag to compare

FIX: Fixed a crash in the input field if the config was nil

Gooey 6.6.0

07 Feb 12:00
Compare
Choose a tag to compare

NEW: Text fields can now define a range of allowed characters using Lua standard pattern matching. Example:

gooey.input("input_alphanumeric", gui.KEYBOARD_TYPE_DEFAULT, action_id, action, { allowed_characters = "[%a%d%s]" })

Gooey 6.5.1

26 Sep 08:45
Compare
Choose a tag to compare

FIX: Adding and removing items from a dynamic list didn't work properly

Gooey 6.5.0

09 Jul 05:54
Compare
Choose a tag to compare

NEW: It is now possible to directly set the text of an input node using gooey.input("text", gui.KEYBOARD_TYPE_DEFAULT).set_text("foobar")
FIX: Input node empty flag is now properly set even when no input action is provided

Gooey 6.4.2

13 Jun 13:02
Compare
Choose a tag to compare

FIX: Radio button deselect was still not properly working