From 052444350e72e3eee038b5657d7c43a6bc5499b3 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Tue, 28 Sep 2021 22:31:14 -0400 Subject: [PATCH] CmdNews: Add news item about 64-bit datetime support --- src/commands/CmdNews.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/commands/CmdNews.cpp b/src/commands/CmdNews.cpp index e07a3d5d2..79cf9d86e 100644 --- a/src/commands/CmdNews.cpp +++ b/src/commands/CmdNews.cpp @@ -257,6 +257,23 @@ void CmdNews::version2_6_0 (std::vector& items) { advice.str () ); items.push_back(writeable_context); + + ///////////////////////////////////////////////////////////////////////////// + // - 64-bit datetime support (major) + + NewsItem uint64_support ( + false, + "Support for 64-bit timestamps and numeric values", + "", + "", + " Taskwarrior now supports 64-bit timestamps, making it possible to set due dates\n" + " and other date attributes beyond 19 January 2038 (limit of 32-bit timestamps).\n", + " The current limit is 31 December 9999 for display reasons (last 4-digit year).", + " With each year passing by faster than the last, setting tasks for 2040s\n" + " is not as unfeasible as it once was.", + " Don't forget that 50-year anniversary and 'task add' a long-term task today!" + ); + items.push_back(uint64_support); } ////////////////////////////////////////////////////////////////////////////////