Feature 429 - The default 'all' report should exclude tasks with status:deleted

- Added feature #429, which improves the 'all' report to exclude deleted
  tasks, provide a new sort order and include the 'end' column.
This commit is contained in:
Paul Beckingham 2010-07-16 22:39:07 -04:00
parent 9385492114
commit 63e42c6607
2 changed files with 6 additions and 3 deletions

View file

@ -3,6 +3,8 @@
1.9.3 () 1.9.3 ()
+ Added feature #423, now custom report filters allow rc overrides. + 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 'depends' column for custom reports.
+ New 'blocked' report for showing blocked tasks. + New 'blocked' report for showing blocked tasks.
+ Improved man pages (thanks to Andy Lester). + Improved man pages (thanks to Andy Lester).

View file

@ -340,9 +340,10 @@ std::string Config::defaults =
"\n" "\n"
"# task all\n" "# task all\n"
"report.all.description=Lists all tasks matching the specified criteria\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.columns=id,project,priority,due,end,active,age,description\n"
"report.all.labels=ID,Project,Pri,Due,Active,Age,Description\n" "report.all.labels=ID,Project,Pri,Due,Completed,Active,Age,Description\n"
"report.all.sort=due+,priority-,active-,project+\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.dateformat=m/d/Y\n"
"#report.all.annotations=full\n" "#report.all.annotations=full\n"
"\n" "\n"