mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Deprecated
- Made proper note of deprecated configuration variables.
This commit is contained in:
parent
202959898d
commit
0ac9a4b3df
2 changed files with 6 additions and 1 deletions
|
@ -72,7 +72,6 @@ int CmdShow::execute (std::string& output)
|
||||||
std::string recognized =
|
std::string recognized =
|
||||||
" abbreviation.minimum"
|
" abbreviation.minimum"
|
||||||
" active.indicator"
|
" active.indicator"
|
||||||
" annotations"
|
|
||||||
" avoidlastcolumn"
|
" avoidlastcolumn"
|
||||||
" bulk"
|
" bulk"
|
||||||
" burndown.bias"
|
" burndown.bias"
|
||||||
|
|
|
@ -145,9 +145,15 @@ std::string legacyCheckForDeprecatedVariables ()
|
||||||
it->first.substr (it->first.length () - 6) == ".limit")
|
it->first.substr (it->first.length () - 6) == ".limit")
|
||||||
deprecated.push_back (it->first);
|
deprecated.push_back (it->first);
|
||||||
|
|
||||||
|
// report.*.annotaitons
|
||||||
|
if (it->first.substr (0, 7) == "report." &&
|
||||||
|
it->first.substr (it->first.length () - 12) == ".annotations")
|
||||||
|
deprecated.push_back (it->first);
|
||||||
|
|
||||||
if (it->first == "echo.command" ||
|
if (it->first == "echo.command" ||
|
||||||
it->first == "edit.verbose" ||
|
it->first == "edit.verbose" ||
|
||||||
it->first == "next" ||
|
it->first == "next" ||
|
||||||
|
it->first == "annotations" ||
|
||||||
it->first == "export.ical.class")
|
it->first == "export.ical.class")
|
||||||
deprecated.push_back (it->first);
|
deprecated.push_back (it->first);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue