Releases: Starmapo/flixel-text-input
Releases · Starmapo/flixel-text-input
v2.0.2
2.0.2 - 2024-01-24
Changed
- Slightly optimized
FlxUITextInput.resize
and added comment to clarify what it resizes
Fixed
- Fixed compile errors with
FlxUITextInput
and the samples when using HaxeFlixel 5.3.1 or older - Fixed crash from
_currentCamera
being destroyed - Fixed vertical-stacked stepper not being visible in flixel-ui sample
v2.0.1
2.0.1 - 2023-12-26
Changed
- Internal: Moved focus handling and
_currentCamera
variable fromFlxTextInput
toFlxBaseTextInput
- Internal: Removed
dispatch
argument fromonFocusInHandler
, usecheckForFocus
instead to check for focus without dispatchingonFocusGained
Fixed
- OpenFL events dispatched for a text input with focus are now dispatched for the stage
- Flixel key bindings (volume up/down, debugger toggle, etc.) are now disabled while a text input has focus, since keyboard events are now dispatched for the stage
- Fixed text input having a single empty character when passing
null
or empty text in the constructor - Fixed
FlxUINumericStepper
having no package declared if "flixel-ui" isn't installed (#1)
v2.0.0
2.0.0 - 2023-12-22
Added
pointerEnabled
variable toFlxTextInput
Changed
- Set Dead Code Elimination to "full" in sample projects
- Internal: Simplified removing event listeners in
CustomTextField
Removed
flixel.addons.text.FlxUITextInput
(deprecated class)
Fixed
- Fixed a bug in HaxeUI where the text input wouldn't gain focus if its background was pressed
- Fixed compatibility issues with flixel 4.11.0 and lime 7.9.0
v1.1.0
1.1.0 - 2023-12-07
Added
flixel.addons.text.ui.FlxUINumericStepper
: A recreation of the "flixel-ui" numeric stepper that uses this library's text input- Added "basic" and "flixel-ui" sample projects
Changed
- Moved
FlxUITextInput
to theflixel.addons.text.ui
package.
Fixed
- Fixed a crash when text is
null
in theFlxTextInput
constructor. - Fixed a bug with touch input.