From c027c215d6701bfa6162ea1295992b9fded8f83c Mon Sep 17 00:00:00 2001 From: Dianne Skoll Date: Sun, 29 Dec 2019 21:03:27 -0500 Subject: [PATCH] Update WHATSNEW --- docs/WHATSNEW | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/WHATSNEW b/docs/WHATSNEW index 72438969..d55885d5 100644 --- a/docs/WHATSNEW +++ b/docs/WHATSNEW @@ -1,5 +1,30 @@ CHANGES TO REMIND +* Version 3.1 Patch 18 - TBD + +- IMPROVEMENT: Add introspection functions trigback(), trigdelta(), + trigduration(), trigfrom(), trigpriority(), trigrep(), + trigscanfrom(), trigtimedelta(), trigtimerep(), and triguntil(). See + man page for details; thanks to Tim Chase for the suggestion. + +- CHANGE: Modify addition so that previously-illegal combinations + TIME + TIME, TIME + DATETIME and DATETIME + TIME are now allowed. If + t1 and t2 are expressions of type TIME and dt is an expression of + type DATETIME, then the following are now equivalent (before, the + expressions on the left-hand side would fail with a "Type mismatch" + error.) + + t1 + t2 == t1 + coerce("INT", t2) + dt + t2 == dt + coerce("INT", t2) + t1 + dt == coerce("INT", t1) + dt + +- DOC FIX: Document previously-undocumented $MaxStringLen system variable + +- BUG FIX: Catch potential date overflow in slide() function + +- BUG FIX: Fix compile error when compiling Romanian version; eliminate + compiler warning when compiling non-English versions. + * Version 3.1 Patch 17 - 2019-11-15 - IMPROVEMENT: Add "Extra Remind Options" setting to TkRemind.