mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Deprecation
- Removed deprecated 'fg:' and 'bg:' attributes, which involves code, documentation and tests. - Cleaned out NEWS file. - Cleaned out config import synonyms, which should have been deleted a while ago. - Removed unused localized strings, but left the 'deprecated' one behind, because it will be needed.
This commit is contained in:
parent
1d99260cb9
commit
d89d51e7e1
15 changed files with 14 additions and 400 deletions
|
@ -300,24 +300,6 @@ int CmdInfo::execute (std::string& output)
|
|||
|
||||
view.set (row, 1, entry + " (" + age + ")");
|
||||
|
||||
// fg TODO deprecated 2.0
|
||||
std::string color = task->get ("fg");
|
||||
if (color != "")
|
||||
{
|
||||
row = view.addRow ();
|
||||
view.set (row, 0, STRING_COLUMN_LABEL_FG);
|
||||
view.set (row, 1, color);
|
||||
}
|
||||
|
||||
// bg TODO deprecated 2.0
|
||||
color = task->get ("bg");
|
||||
if (color != "")
|
||||
{
|
||||
row = view.addRow ();
|
||||
view.set (row, 0, STRING_COLUMN_LABEL_BG);
|
||||
view.set (row, 1, color);
|
||||
}
|
||||
|
||||
// Task::urgency
|
||||
row = view.addRow ();
|
||||
view.set (row, 0, STRING_COLUMN_LABEL_URGENCY);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue