mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-06 17:37:21 +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
|
@ -111,7 +111,7 @@ int CmdTimesheet::execute (std::string& output)
|
|||
Date compDate (task->get_date ("end"));
|
||||
if (compDate >= start && compDate < end)
|
||||
{
|
||||
Color c (task->get ("fg") + " " + task->get ("bg"));
|
||||
Color c;
|
||||
if (context.color ())
|
||||
autoColorize (*task, c);
|
||||
|
||||
|
@ -168,7 +168,7 @@ int CmdTimesheet::execute (std::string& output)
|
|||
Date startDate (task->get_date ("start"));
|
||||
if (startDate >= start && startDate < end)
|
||||
{
|
||||
Color c (task->get ("fg") + " " + task->get ("bg"));
|
||||
Color c;
|
||||
if (context.color ())
|
||||
autoColorize (*task, c);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue