- Fixed bug #1008, which failed to remove tasks with the special tag '+nocal'
  from the calendar report output with 'calendar.details=full' set (thanks to
  Bryan Kam).
This commit is contained in:
Paul Beckingham 2012-05-28 12:51:27 -04:00
parent e99bbf6213
commit c42706a3dc
3 changed files with 5 additions and 1 deletions

View file

@ -139,4 +139,5 @@ suggestions:
Ethan Schoonover
Paul Kishimoto
Jeff Schroeder
Bryan Kam

View file

@ -71,6 +71,9 @@ Bugs
directly by external script when a variable is override.
+ Fixed bug #990, which prevents color precedence to be applied correctly for
tagged tasks.
+ Fixed bug #1008, which failed to remove tasks with the special tag '+nocal'
from the calendar report output with 'calendar.details=full' set (thanks to
Bryan Kam).
------ old releases ------------------------------

View file

@ -338,7 +338,7 @@ int CmdCalendar::execute (std::string& output)
context.a3.clear ();
context.a3.push_back (Arg ("task", Arg::cat_program));
report_filter += " due.after:" + after + " due.before:" + before;
report_filter += " due.after:" + after + " due.before:" + before + " -nocal";
context.config.set ("report." + report + ".filter", report_filter);
// Display all due task in the report colorized not only the imminet ones