mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug #1008
- 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:
parent
e99bbf6213
commit
c42706a3dc
3 changed files with 5 additions and 1 deletions
1
AUTHORS
1
AUTHORS
|
@ -139,4 +139,5 @@ suggestions:
|
|||
Ethan Schoonover
|
||||
Paul Kishimoto
|
||||
Jeff Schroeder
|
||||
Bryan Kam
|
||||
|
||||
|
|
|
@ -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 ------------------------------
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue