diff --git a/ChangeLog b/ChangeLog index 873c82d0a..5142a1bbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,8 @@ Features 'affected' verbosity tokens. + Removed deprecated 'edit.verbose' setting, in favor of the 'edit' verbosity token.. + + Includes utility 'calc' for quick command line calculations using the new + expression evaluator. Bugs diff --git a/NEWS b/NEWS index 63cdb6423..16d96bb6c 100644 --- a/NEWS +++ b/NEWS @@ -5,14 +5,14 @@ New Features in taskwarrior 2.4.0 New commands in taskwarrior 2.4.0 - - + - New 'calc' utility for quick command line calculations. New configuration options in taskwarrior 2.4.0 - Newly deprecated features in taskwarrior 2.4.0 - + - --- diff --git a/src/commands/CmdSync.cpp b/src/commands/CmdSync.cpp index becbab95e..93be421e5 100644 --- a/src/commands/CmdSync.cpp +++ b/src/commands/CmdSync.cpp @@ -110,8 +110,8 @@ int CmdSync::execute (std::string& output) std::string code = response.get ("code"); if (code == "200") { - Color colorAdded (context.config.get ("color.sync.added")); - Color colorChanged (context.config.get ("color.sync.changed")); + Color colorAdded (context.config.get ("color.sync.added")); + Color colorChanged (context.config.get ("color.sync.changed")); int download_count = 0; payload = response.getPayload ();