Releases: Eiyeron/Textbox
Releases · Eiyeron/Textbox
v0.0.5
Added
- Added MP3 samples for demo sample for flash target.
Changed
- Changed the internal character structure for an ADT enumeration. Nothing should visually change. It's a part of cleaning process.
- Renamed an internal class.
- Removed a few seemingly useless setters in textbox.
- Removed usage of FlxTypedGroup in TextboxLine. Didn't serve a sensible goal in the end.
- Removed a few unit test-related cruft.
Fixed
- Fixed demos not compiling on static.
- Fixed super constructor call in Textbox, blocking Flash target to compile.
v0.0.4
Added
Changed
- Switched from
FlxTween
's tween type variables toFlxTweenType
enumeration, avoiding deprecation messages on Haxeflixel 4.5.1+. - Added a few haxedef defines to avoid compiling useless chunks of Haxeflixel in tests.
Fixed
- (static platforms) Parsing non-hexadecimal characters wouldn't trigger a parsing error fallback as
parseInt
returns 0 and notnull
. - Added a few additonal unit tests around invalid character code parsing.
v0.0.3
v0.0.2
This release contains a few fixes and a lot of cleaning. The codebase should be saner now.
Changed
- Textbox's
advanceCharacter
function has been cleaned. - General codestyle cleaning.
- Factorized the demo sample to make callback plugin class examples.
Fixed
- Newline in the textbox's last line would make the textbox perpetually stuck on the newline.
- Using isSpace instead of a comparison against the space character
Versionning start
Added
- Initial versioning.
- Added a sample (decorating)
Changed
- Textbox callback members are now callback arrays to handle multiple callbacks.
- Sample folder structure and name (
sample -> samples
) - The first sample is now in
samples/demo
- Changed demo sample to use the new callback type.