lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Not sure if I should be making another post this close by, but here goes.
> Release 1.1.0 of luaSolidState has been tagged and rocked.

> Changelog:
>   * Changed names of local functions to be more human-friendly.
>   * Replaced string stack functions with just the table-inserting.
>   * Fixed a bug where serializing an empty table would fail.
>   * Is now able to store simple functions. Upvalues will fail.
>   * Will now error if encountering userdata or a thread.

> Source repository: http://github.com/TheLinx/luaSolidState
> Rockspec: http://github.com/TheLinx/luaSolidState/raw/rocks/luasolidstate-1.1.0-1.rockspec

> As always, if you have any suggestions, issues, praise or if you want
> to tear me a new one for making another thread so early, reply away.
> Thank you.

Still no chances to hold cyclic references in tables correctly. It seems the thing will fail storing
someting like 't':

local t = {}
table.insert(t, t)

Be well,
Seny