mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-26 06:37:20 +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
|
Ethan Schoonover
|
||||||
Paul Kishimoto
|
Paul Kishimoto
|
||||||
Jeff Schroeder
|
Jeff Schroeder
|
||||||
|
Bryan Kam
|
||||||
|
|
||||||
|
|
|
@ -71,6 +71,9 @@ Bugs
|
||||||
directly by external script when a variable is override.
|
directly by external script when a variable is override.
|
||||||
+ Fixed bug #990, which prevents color precedence to be applied correctly for
|
+ Fixed bug #990, which prevents color precedence to be applied correctly for
|
||||||
tagged tasks.
|
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 ------------------------------
|
------ old releases ------------------------------
|
||||||
|
|
||||||
|
|
|
@ -338,7 +338,7 @@ int CmdCalendar::execute (std::string& output)
|
||||||
context.a3.clear ();
|
context.a3.clear ();
|
||||||
context.a3.push_back (Arg ("task", Arg::cat_program));
|
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);
|
context.config.set ("report." + report + ".filter", report_filter);
|
||||||
|
|
||||||
// Display all due task in the report colorized not only the imminet ones
|
// Display all due task in the report colorized not only the imminet ones
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue