Releases: britzl/ludobits
Ludobits 7.4.0
NEW: Added ability to group different flow instances and wait for an entire group of flows using flow.until_group()
. Thanks to @astrochili for the contribution!
Ludobits 7.3.0
NEW: Added flow.until_flows()
to wait until all sub-flows are finished. Thanks @Vbif
Ludobits 7.2.0
CHANGE: Improved flow error message by showing traceback on error. Thanks @Vbif
Ludobits 7.1.0
NEW: flow.collectionfactory_load(url) to load collection factory resources
NEW: flow.factory_load(url) to load factory resources
NEW: flow.async_load(url) to async load a collection proxy
Ludobits 7.0.0
BREAKING CHANGE: Coroutine Flows are now started immediately when calling flow.start() as opposed to the old behaviour where they started on the next frame
Ludobits 6.9.1
FIX: The timing in ludobits.m.flow() updates was not accurate and caused a gradually increasing gap between calculated and actual time.
Ludobits 6.9.0
NEW: ludobits.m.savetable has new functionality to save and load using both sys.* and io.* (w. json encoding)
-- load file using sys.load() (or create file if it doesn't exist)
local data = savetable.load(filename, "sys") -- or "io" for use of io.open and io.read
-- update table value
data.foo = "bar"
-- save table using sys.save()
savetable.save(data)
And:
local data = { foo = "bar" }
savetable.save(data, filename, "io") -- or "sys" for use of sys.save
Ludobits 6.8.0
NEW: flow.until_message(), flow.until_any_message() and flow.until_input() will resume the flow immediately instead of waiting one frame.
Ludobits 6.7.1
FIX: Incorrect syntax for sequence.wait_until_true()/false()
Ludobits 6.7.0
NEW: sequence.wait_until_true() and wait_until_false()