Merge branch '1.9.4' of tasktools.org:task into 1.9.4
This commit is contained in:
@@ -14,6 +14,11 @@
|
|||||||
+ Added ability to temporarily suspend GC (rc.gc:0) for a given command, which
|
+ Added ability to temporarily suspend GC (rc.gc:0) for a given command, which
|
||||||
helps scriptwriters implement shadow files externally (thanks to Sander
|
helps scriptwriters implement shadow files externally (thanks to Sander
|
||||||
Marechal).
|
Marechal).
|
||||||
|
+ Added feature #30, which eliminates the dependency on ncurses (thanks to
|
||||||
|
Johan Friis).
|
||||||
|
+ Added feature #157, which implements the _query command, a helper command for
|
||||||
|
script writers, which accepts a filter like any other report, but returns
|
||||||
|
only full JSON.
|
||||||
+ Added feature #158, regular expression support for filters and substitutions.
|
+ Added feature #158, regular expression support for filters and substitutions.
|
||||||
+ Added feature #247, providing infinite width reports when redirecting output
|
+ Added feature #247, providing infinite width reports when redirecting output
|
||||||
to a file, by setting defaultwidth to 0.
|
to a file, by setting defaultwidth to 0.
|
||||||
@@ -26,8 +31,6 @@
|
|||||||
+ Added feature #574, default due dates (thanks to Erlan Sergaziev).
|
+ Added feature #574, default due dates (thanks to Erlan Sergaziev).
|
||||||
+ Added feature #575, including Danish holidays (thanks to Irfan Siddiqui).
|
+ Added feature #575, including Danish holidays (thanks to Irfan Siddiqui).
|
||||||
+ Eliminated dependency on ncurses.
|
+ Eliminated dependency on ncurses.
|
||||||
+ Added _query helper command for script writers, which accepts a filter like
|
|
||||||
any other report, but returns only full JSON.
|
|
||||||
+ The dependency columns are now right-justified (thanks to Eric Fluger).
|
+ The dependency columns are now right-justified (thanks to Eric Fluger).
|
||||||
+ Fixed bug #515, which displayed an incorrect message after duplicating a
|
+ Fixed bug #515, which displayed an incorrect message after duplicating a
|
||||||
non-existent task (thanks to Peter De Poorter).
|
non-existent task (thanks to Peter De Poorter).
|
||||||
|
|||||||
@@ -388,7 +388,6 @@ int handleCustomReport (const std::string& report, std::string& outs)
|
|||||||
{
|
{
|
||||||
Date dt (::atoi (created.c_str ()));
|
Date dt (::atoi (created.c_str ()));
|
||||||
age = Duration (now - dt).formatCompact ();
|
age = Duration (now - dt).formatCompact ();
|
||||||
|
|
||||||
context.hooks.trigger ("format-age_compact", "age_compact", age);
|
context.hooks.trigger ("format-age_compact", "age_compact", age);
|
||||||
table.addCell (row, columnCount, age);
|
table.addCell (row, columnCount, age);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user