mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Legacy Checking
- Added previously deprecated configuration variables to the list that are mentioned by the 'show' command.
This commit is contained in:
parent
0aa953dc4e
commit
28133f8567
2 changed files with 6 additions and 2 deletions
2
NEWS
2
NEWS
|
@ -76,6 +76,8 @@ Newly deprecated features in taskwarrior 2.0.0
|
|||
instead.
|
||||
- Use of 'export.ical.class' configuration variable. Value is now specified
|
||||
in the scripts/add-ons/export-ical.pl script.
|
||||
- Use of 'report.<name>.limit' configuration variable. This is now handled
|
||||
in the report filter as 'limit:<tasks>'.
|
||||
|
||||
---
|
||||
|
||||
|
|
|
@ -147,7 +147,9 @@ std::string legacyCheckForDeprecatedVariables ()
|
|||
deprecated.push_back (it->first);
|
||||
|
||||
if (it->first == "echo.command" ||
|
||||
it->first == "edit.verbose")
|
||||
it->first == "edit.verbose" ||
|
||||
it->first == "next" ||
|
||||
it->first == "export.ical.class")
|
||||
deprecated.push_back (it->first);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue