Skip to content

Releases: Eiyeron/Textbox

v0.0.5

14 Dec 20:54
Compare
Choose a tag to compare

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

04 Dec 22:39
Compare
Choose a tag to compare

Added

Changed

  • Switched from FlxTween's tween type variables to FlxTweenType 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 not null.
  • Added a few additonal unit tests around invalid character code parsing.

v0.0.3

04 Dec 22:38
Compare
Choose a tag to compare

Added

  • (html5) Added characterSpacingHack in Settings to replace the magic cookie used for fixing character spacing.

Changed

  • Readme cleaned.

v0.0.2

17 Apr 18:24
Compare
Choose a tag to compare

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

17 Apr 08:43
Compare
Choose a tag to compare

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.