Skip to content

Releases: rpgmaker/NetJSON

v 1.0.11

21 Sep 11:15
Compare
Choose a tag to compare
  • Added support for switching between use of single and double with use of NetJSON.QuoteType(NetISONQuote.Single/Double) for serialization and deserialization
  • Added support for serializing short type in dictionary (string, object)
  • Added support for adding custom serializer with the use of NetJSON.RegisterTypeSerializer

v 1.0.10

08 Aug 02:48
Compare
Choose a tag to compare
  • Added support for serializing Type
  • Fixed issue with skip optimization logic

v 1.0.9

04 Aug 03:35
Compare
Choose a tag to compare
  • Added support for E/e+ and E/e- notation for float/double/decimal
  • Fixed floating point issue
  • Improved skipping property logic
  • Fixed infinite loop caused by string skipping
  • Added support for deserializing primitive type using generic object type

v 1.0.8

20 Jun 21:40
Compare
Choose a tag to compare
  • Fixed issue with 3.5 support
  • Added support for serialization of char and sbyte
  • Added support for serialization of collection with nullable types
  • Fixed issue with getting correct default Guid value
  • Added throwing of Invalid JSON Exception when dealing with incomplete json objects
  • Fixed issue with infinite loop due to string skipping when complex json ends with property containing string value
  • Added support for serializing enum when using dictionary[string,object]
  • Added support for serializing primitive types without a wrapper class
  • Added support for serialize/deserialize of tuple

v 1.0.7

15 Mar 09:58
Compare
Choose a tag to compare
  • Fixed issue with deserializing/serializing nullable type when value is specified
  • Fixed encoding issue with array and other related methods when dealing with tabs
  • Added support for .NET 3.5

v 1.0.6.2

12 Jan 01:08
Compare
Choose a tag to compare
  • Fixed Runtime JIT error

v 1.0.6.1

12 Jan 00:55
Compare
Choose a tag to compare
  • Fixed Issue with Serializing Properties without Setter
  • Added Serialization Support for ExpandoObject Type

v 1.0.6

14 Dec 00:10
Compare
Choose a tag to compare
  • Fixed issue with Dictionary caused by string skipping
  • Added support for serialize/deserialize of struct
  • Added support for serialize/deserialize of fields (Requires NetJSON.IncludeFields(false by default) to enable)
  • Fixed issue with Deserialize(Type, string)

v 1.0.5.4

22 Nov 07:38
Compare
Choose a tag to compare
  • Fixed issue caused by string skipping logic

v 1.0.5.3

16 Nov 06:32
Compare
Choose a tag to compare
  • Improved deserialization performance when using classes.