Deprecated Feature Removal
- Removed deprecated 'edit.verbose' setting, in favor of the 'edit' verbosity token..
This commit is contained in:
@@ -160,8 +160,7 @@ std::string CmdEdit::formatDuration (
|
||||
std::string CmdEdit::formatTask (Task task, const std::string& dateformat)
|
||||
{
|
||||
std::stringstream before;
|
||||
bool verbose = context.verbose ("edit") ||
|
||||
context.config.getBoolean ("edit.verbose"); // Deprecated 2.0
|
||||
bool verbose = context.verbose ("edit");
|
||||
|
||||
if (verbose)
|
||||
before << "# " << STRING_EDIT_HEADER_1 << "\n"
|
||||
|
||||
@@ -146,7 +146,6 @@ int CmdShow::execute (std::string& output)
|
||||
" displayweeknumber"
|
||||
" dom"
|
||||
" due"
|
||||
" edit.verbose" // Deprecated 2.0
|
||||
" editor"
|
||||
" exit.on.missing.db"
|
||||
" expressions"
|
||||
|
||||
@@ -148,8 +148,7 @@ std::string legacyCheckForDeprecatedVariables ()
|
||||
it->first.substr (it->first.length () - 12) == ".annotations")
|
||||
deprecated.push_back (it->first);
|
||||
|
||||
if (it->first == "edit.verbose" ||
|
||||
it->first == "next" ||
|
||||
if (it->first == "next" ||
|
||||
it->first == "annotations" ||
|
||||
it->first == "export.ical.class")
|
||||
deprecated.push_back (it->first);
|
||||
|
||||
Reference in New Issue
Block a user