Skip to content

1.1.1 Preview

Pre-release
Pre-release
Compare
Choose a tag to compare
@JujuAdams JujuAdams released this 19 Jan 12:56
· 385 commits to dev since this release

Since 1.0.0:

  • Adds chatterbox_get_current()
  • Adds chatterbox_load_from_string()
  • Renames chatterbox_load() to chatterbox_load_from_file()
  • Removed some old unused globals/macros
  • Works around HTML5 compatibility issues as follows:
    • Adds a default font resource because GM requires this and is too stupid to automatically include the native default if there's no font resource in the project
    • buffer_load() is completely broken so we're using file_text_*() functions to strip out a string from source files then writing the string into the buffer, which is dumb, but this is what we're reduced to
    • Swaps out tabs for spaces in JSON strings because GM's HTML5 JSON parser hates them for some reason but doesn't actually tell us (json_decode() silently fails, json_parse() crashes with a generic error)
    • Replaces broken buffer_poke(..., buffer_string, ...) with buffer_write() replacement