All Versions
21
Latest Version
Avg Release Cycle
146 days
Latest Release
1325 days ago

Changelog History
Page 1

  • v2.1.1 Changes

    November 06, 2021
    • โž• Add documentation
    • ๐Ÿ›  Fix potential System.NullReferenceException in the ToString() methods
  • v2.1.0 Changes

    September 03, 2021
    • ๐Ÿ‘Œ Support multiply (*) and divide (/) operators of ByteSize object
    • โž• Add ToString IFormattable parameter overload
    • โž• Add target for .NET 5
  • v2.0.0 Changes

    January 14, 2020

    HUGE BREAKING CHANGE :

    0๏ธโƒฃ By default ByteSize now assumes 1 KB == 1000 B and 1 KiB == 1024 B to
    adhere to the IEC and NIST standards (https://en.wikipedia.org/wiki/Binary_prefix).
    โฌ†๏ธ In the past ByteSize assumed 1 KB == 1024 B, that means if you're upgrading
    ๐Ÿ‘€ from v1, you'll see differences in values.

    Other Breaking Changes:

    • ๐Ÿ“‡ Renamed property LargestWholeNumberSymbol and LargestWholeNumberValue to LargestWholeNumberDecimalSymbol and LargestWholeNumberDecimalValue respectively.
    • Drop support for all platforms except netstandard1.0 and net45.

    ๐Ÿ†• New Features:

    • ๐Ÿ‘Œ Support for binary and decimal values (e.g. ByteSize.FromKibiByte and ByteSize.FromKiloByte). (#24 by @omar)
    • ๐Ÿ†• New constructor that takes a long value as the number of bits.
    • ๐Ÿ‘Œ Support for culture on Parse and TryParse. (#39 by @P-Storm)
  • v2.0.0-beta1

    June 16, 2019
  • v2.0.0-alpha2

    March 28, 2019
  • v2.0.0-alpha1

    March 28, 2019
  • v1.3.0 Changes

    January 22, 2017
    • โž• Add support for subtracting two ByteSize objects. (#25 by @omar)
  • v1.2.5 Changes

    January 21, 2017
    • ๐Ÿ‘ Properly support .NET Standard 1.0. (#29 by @jp7677)
  • v1.2.4 Changes

    November 25, 2016
    • ๐Ÿ›  Fix TryParse to not throw exceptions. (#23 by @omar)
  • v1.2.3 Changes

    November 10, 2016
    • ๐Ÿ›  Fix ByteSize of zero ToString output. (#21 by @omar)