diff --git a/ChangeLog b/ChangeLog index 0e7bdc684..b00d2505f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,8 @@ 1.9.3 () + Added feature #423, now custom report filters allow rc overrides. + + Added feature #429, which improves the 'all' report to exclude deleted + tasks, provide a new sort order and include the 'end' column. + New 'depends' column for custom reports. + New 'blocked' report for showing blocked tasks. + Improved man pages (thanks to Andy Lester). diff --git a/src/Config.cpp b/src/Config.cpp index 5f4a65594..d3a8513fa 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -340,9 +340,10 @@ std::string Config::defaults = "\n" "# task all\n" "report.all.description=Lists all tasks matching the specified criteria\n" - "report.all.columns=id,project,priority,due,active,age,description\n" - "report.all.labels=ID,Project,Pri,Due,Active,Age,Description\n" - "report.all.sort=due+,priority-,active-,project+\n" + "report.all.columns=id,project,priority,due,end,active,age,description\n" + "report.all.labels=ID,Project,Pri,Due,Completed,Active,Age,Description\n" + "report.all.sort=project+,due+,end+,priority-,active-,description+\n" + "report.all.filter=status.not:deleted\n" "#report.all.dateformat=m/d/Y\n" "#report.all.annotations=full\n" "\n"