From 225939f14bd481acf24e7aa7ba2a1c250b214735 Mon Sep 17 00:00:00 2001 From: Raymond Beehler <21GunSoftware@comcast.net> Date: Fri, 25 Jun 2021 10:04:27 -0700 Subject: [PATCH] 1.12 support Add basic support for the new 1.12.0 date formatting. --- src/Kronometer.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Kronometer.cs b/src/Kronometer.cs index aa78633..c6f8f0d 100644 --- a/src/Kronometer.cs +++ b/src/Kronometer.cs @@ -398,6 +398,11 @@ public virtual string PrintDateDeltaCompact(double time, bool includeTime, bool return stringBuilder.ToStringAndRelease(); } + public virtual string PrintDateDeltaCompact(double time, bool includeTime, bool includeSeconds, bool useAbs, int uselessint) + { + return PrintDateDeltaCompact(time, includeTime, includeSeconds, useAbs); + } + /// /// Calculates the current date /// This will work also when a year cannot be divided in days without a remainder