diff --git a/ChangeLog b/ChangeLog index 2618829bc..757f2436f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,11 @@ + Added ability to temporarily suspend GC (rc.gc:0) for a given command, which helps scriptwriters implement shadow files externally (thanks to Sander 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 #247, providing infinite width reports when redirecting output to a file, by setting defaultwidth to 0. @@ -26,8 +31,6 @@ + Added feature #574, default due dates (thanks to Erlan Sergaziev). + Added feature #575, including Danish holidays (thanks to Irfan Siddiqui). + 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). + Fixed bug #515, which displayed an incorrect message after duplicating a non-existent task (thanks to Peter De Poorter). diff --git a/src/custom.cpp b/src/custom.cpp index 6f38594c4..d065bfd08 100644 --- a/src/custom.cpp +++ b/src/custom.cpp @@ -388,7 +388,6 @@ int handleCustomReport (const std::string& report, std::string& outs) { Date dt (::atoi (created.c_str ())); age = Duration (now - dt).formatCompact (); - context.hooks.trigger ("format-age_compact", "age_compact", age); table.addCell (row, columnCount, age); }