Skip to content

Releases: CXuesong/Luaon.NET

v0.2.7

16 Apr 10:53

Choose a tag to compare

  • Bug fix: LuaConvert.ToString: Fix backslashes not being escaped properly (#6)

v0.2.6

28 Sep 09:01

Choose a tag to compare

  • Use CultureInfo.InvariantCulture when parsing numeric values in LuaTableTextReader.ReadNumberLiteral. ( #5 )

v0.2.5

24 Jan 15:52

Choose a tag to compare

Bug fix: #4

v0.2.4

23 Jan 14:45

Choose a tag to compare

Bug fix: incorrect buffering logic that may truncate table key or other expressions (#3 )

v0.2.3

16 Nov 16:55

Choose a tag to compare

  • Bug fix: Fixed incorrect buffer expansion logic (#1; Thanks @whc2001 !)
  • Bug fix: NullReferenceException when writing previously non-existent keyed value to LTable. E.g.
var table = new LTable();
table[12] = 345;           // NullReferenceException
table["key"] = "value";    // NullReferenceException
  • Add .NET 6.0 targeting framework support.

v0.2.2

12 May 15:18

Choose a tag to compare

  • LuaTableTextWriter should support writing fields outside table. This will prevent LField.ToString() from throwing writer exception.

v0.2.1

12 May 15:10

Choose a tag to compare

  • Added LuaTableTextReader. Now you can read Lua table expressions!
  • Added LToken.Load and LToken.Parse methods.
  • Bug fix on LuaConvert class.

v0.1.1

12 Jan 14:10

Choose a tag to compare

Initial release.