Skip to content

Releases: VoSs2o0o/NetFormat

Version 3.0.1

30 Jan 21:58
Compare
Choose a tag to compare

30.01.2024: Version 3.0.1

  • Bugfix for compatiblility with <D12 Versions
  • small fixes in readme
  • moved readme, license, groupproj to root

Version 3.0.0

30 Jan 00:34
Compare
Choose a tag to compare
  • Old:
TStr('Hallo {0} {1:D4} {2} {3}').
    Params('Welt', 55, 7.7, testdate);
  • New: TStr -> FStr, and old Format readded, beause some People wants a more
    Delphi-Format like command:
FStr('Hallo {0} {1:D4} {2} {3}').
               Params('Welt', 55, 7.7, testdate);
NetFormat.TStr('Hallo {0} {1:D4} {2} {3}',
               'Welt', 55, 7.7, testdate);
  • Namespace VTools added to avoid conficts
  • Hex-Format added ("X")
  • TFormatStettings Support
  • Tests added
  • 'writeln' to Example added, to also have an console output
  • some minors changes to README

Version 2.0.0

25 Jan 22:26
Compare
Choose a tag to compare
  • Old:
NetFormat.ToString('Hallo {0} {1:D4} {2} {3}',
                   'Welt', 55, 7.7, testdate);
  • New: Format changed, I have found a more ellegant and slightly shorter Method:
TStr('Hallo {0} {1:D4} {2} {3}').
    Params('Welt', 55, 7.7, testdate);
  • some minors addes to README

Version 1.0.0

23 Jan 17:26
Compare
Choose a tag to compare

first version :-)