Skip to content

Releases: CXuesong/Luaon.NET

v0.2.7

Choose a tag to compare

@CXuesong CXuesong released this 16 Apr 10:53
  • Bug fix: LuaConvert.ToString: Fix backslashes not being escaped properly (#6)

v0.2.6

Choose a tag to compare

@CXuesong CXuesong released this 28 Sep 09:01
  • Use CultureInfo.InvariantCulture when parsing numeric values in LuaTableTextReader.ReadNumberLiteral. ( #5 )

v0.2.5

Choose a tag to compare

@CXuesong CXuesong released this 24 Jan 15:52

Bug fix: #4

v0.2.4

Choose a tag to compare

@CXuesong CXuesong released this 23 Jan 14:45

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

v0.2.3

Choose a tag to compare

@CXuesong CXuesong released this 16 Nov 16:55
  • 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

Choose a tag to compare

@CXuesong CXuesong released this 12 May 15:18
  • LuaTableTextWriter should support writing fields outside table. This will prevent LField.ToString() from throwing writer exception.

v0.2.1

Choose a tag to compare

@CXuesong CXuesong released this 12 May 15:10
  • Added LuaTableTextReader. Now you can read Lua table expressions!
  • Added LToken.Load and LToken.Parse methods.
  • Bug fix on LuaConvert class.

v0.1.1

Choose a tag to compare

@CXuesong CXuesong released this 12 Jan 14:10

Initial release.