Skip to content

Releases: britzl/ludobits

Ludobits 7.4.0

11 Jan 20:30
fb5b56c
Compare
Choose a tag to compare

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

22 Jan 14:49
04d0663
Compare
Choose a tag to compare

NEW: Added flow.until_flows() to wait until all sub-flows are finished. Thanks @Vbif

Ludobits 7.2.0

15 Oct 09:57
700a938
Compare
Choose a tag to compare

CHANGE: Improved flow error message by showing traceback on error. Thanks @Vbif

Ludobits 7.1.0

31 May 07:45
Compare
Choose a tag to compare

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

31 May 06:54
Compare
Choose a tag to compare

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

16 Nov 13:42
Compare
Choose a tag to compare

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

09 Nov 10:17
Compare
Choose a tag to compare

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

01 Apr 08:59
Compare
Choose a tag to compare

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

12 Aug 21:27
Compare
Choose a tag to compare

FIX: Incorrect syntax for sequence.wait_until_true()/false()

Ludobits 6.7.0

12 Aug 21:22
Compare
Choose a tag to compare

NEW: sequence.wait_until_true() and wait_until_false()