- TW-1298 The color 'orange' is not recognized. - taskwarrior will not start
          anymore (thanks to Bernd Humpa).
This commit is contained in:
Paul Beckingham
2014-04-15 23:37:05 -04:00
parent c03df08d1e
commit 2aa224d278
3 changed files with 39 additions and 28 deletions

View File

@@ -207,3 +207,4 @@ suggestions:
Michele Vetturi
Jeremiah Marks
Profpatsch
Bernd Humpa

View File

@@ -42,6 +42,8 @@
Wilk).
- TW-1296 make test/run_all exit with non-zero code if a test fail (thanks to
Jakub Wilk).
- TW-1298 The color 'orange' is not recognized. - taskwarrior will not start
anymore (thanks to Bernd Humpa).
- TW-1300 _get could use return codes (thanks to Scott Kostyshak).
- TW-1301 Virtual tag +PENDING (thanks to Profpatsch).
- TW-1302 CmdShow.cpp:244: bad length in substr ? (thanks to David Binderman).

View File

@@ -40,6 +40,8 @@ static Date now;
////////////////////////////////////////////////////////////////////////////////
void initializeColorRules ()
{
try
{
gsColor.clear ();
gsPrecedence.clear ();
@@ -78,6 +80,12 @@ void initializeColorRules ()
}
}
catch (const std::string& e)
{
context.error (e);
}
}
////////////////////////////////////////////////////////////////////////////////
static void colorizeBlocked (Task& task, const Color& base, Color& c)
{