Skip to content

Releases: shravan2x/Gameloop.Vdf

Vdf.NET 0.6.2

07 Mar 03:43
ed8dfe2
Compare
Choose a tag to compare
Vdf.NET 0.6.2 Pre-release
Pre-release
  • Updated MaximumTokenSize to be adjustable in settings.

Vdf.NET 0.6.1

20 Jun 23:23
a042be8
Compare
Choose a tag to compare
Vdf.NET 0.6.1 Pre-release
Pre-release
  • Fixed VdfTextReader treating slashes in quoted values as comments.

Vdf.NET 0.6.0

29 May 07:30
c2aa841
Compare
Choose a tag to compare
Vdf.NET 0.6.0 Pre-release
Pre-release
  • Added comment serialization and deserialization support. Learn more at #18.
  • Added DeepClone method to VToken.
  • Added VToken.DeepEquals to deep compare two VTokens.
  • Added support for C# 8's nullable reference types.

BREAKING CHANGES

  • VObject.Children() now returns an IEnumerable, rather than an IEnumerable. This is more in line with Json.NET and allows for comments (which are VTokens) to be returned.
  • VProperty's empty constructor has been removed. Neither Key or Value should be null. C# 8's NRT feature type-checks this.
  • VObject's IDictionary<string, VToken>.this[string key] indexer now throws a KeyNotFoundException when the key isn't found. Note that that VObject's regular this[string key] indexer still returns null when the key isn't found.

Vdf.NET 0.5.0

31 Jul 06:44
ecd7777
Compare
Choose a tag to compare
Vdf.NET 0.5.0 Pre-release
Pre-release
  • Added VToken.Value, VToken.Value(), and other accessors.
  • Added IDictionary<string, VToken> as a superclass of VObject.
  • Moved VToken and subtypes to Gameloop.Vdf.Linq namespace.

Vdf.NET 0.4.4

01 Dec 09:45
Compare
Choose a tag to compare
Vdf.NET 0.4.4 Pre-release
Pre-release
  • Fixed SOE on deserializing an empty input.

Vdf.NET 0.4.3

29 Aug 16:33
Compare
Choose a tag to compare
Vdf.NET 0.4.3 Pre-release
Pre-release
  • Fixed NRE on serializing a null VValue.

Vdf.NET 0.4.2

28 Aug 15:02
Compare
Choose a tag to compare
Vdf.NET 0.4.2 Pre-release
Pre-release
  • Added targeting for .NET 4.5.

Vdf.NET 0.4.1

27 Aug 20:22
Compare
Choose a tag to compare
Vdf.NET 0.4.1 Pre-release
Pre-release
  • Fixed strings not being escaped during serialization.
  • Fixed bug in VObject set indexer.

Vdf.NET 0.4.0

10 Aug 08:14
Compare
Choose a tag to compare
Vdf.NET 0.4.0 Pre-release
Pre-release
  • Re-targeted project to .NET Standard 1.0.
  • Added VdfSerializerSettings.Common settings preset as default.
  • Fixed VdfConvert.Deserialize return type to VProperty.

Vdf.NET 0.3.0

26 Mar 18:31
Compare
Choose a tag to compare
Vdf.NET 0.3.0 Pre-release
Pre-release
  • Added serialization support.
  • Added dynamic property binding for VObject.
  • Fixed VdfTextReader not closing streams.