1.1.1 Preview
Pre-release
Pre-release
Since 1.0.0:
- Adds
chatterbox_get_current()
- Adds
chatterbox_load_from_string()
- Renames
chatterbox_load()
tochatterbox_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 usingfile_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, ...)
withbuffer_write()
replacement