mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
feddback: Added TEMPLATE and INSTANCE virtual tags
This commit is contained in:
parent
09562c8fac
commit
8049c8ba99
2 changed files with 5 additions and 2 deletions
1
NEWS
1
NEWS
|
@ -20,6 +20,7 @@ Newly Deprecated Features in Taskwarrior 2.6.0
|
|||
- The use of alternate Boolean configuration settings is deprecated. Use values
|
||||
"0" for off, and "1" for on. Avoid used of "on", "off", "true", "t",
|
||||
"false", "f", "yes", "y", "no", "n".
|
||||
- The 'PARENT' and 'CHILD' virtual tags are replaced by 'TEMPLATE' and 'INSTANCE'.
|
||||
|
||||
Removed Features in 2.6.0
|
||||
|
||||
|
|
|
@ -318,22 +318,24 @@ void feedback_reserved_tags (const std::string& tag)
|
|||
tag == "ANNOTATED" ||
|
||||
tag == "BLOCKED" ||
|
||||
tag == "BLOCKING" ||
|
||||
tag == "CHILD" ||
|
||||
tag == "CHILD" || // Deprecated 2.6.0
|
||||
tag == "COMPLETED" ||
|
||||
tag == "DELETED" ||
|
||||
tag == "DUE" ||
|
||||
tag == "DUETODAY" ||
|
||||
tag == "INSTANCE" ||
|
||||
tag == "LATEST" ||
|
||||
tag == "MONTH" ||
|
||||
tag == "ORPHAN" ||
|
||||
tag == "OVERDUE" ||
|
||||
tag == "PARENT" ||
|
||||
tag == "PARENT" || // Deprecated 2.6.0
|
||||
tag == "PENDING" ||
|
||||
tag == "PRIORITY" ||
|
||||
tag == "PROJECT" ||
|
||||
tag == "READY" ||
|
||||
tag == "SCHEDULED" ||
|
||||
tag == "TAGGED" ||
|
||||
tag == "TEMPLATE" ||
|
||||
tag == "TODAY" ||
|
||||
tag == "TOMORROW" ||
|
||||
tag == "UDA" ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue