mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 13:37:20 +02:00
Bug Fixes, Unit Tests
- Fixed bug where "foo:bar" was not recognized as an attribute, and generated an error rather than demoting is to part of the description. - Fixed bug where en-passant deltas were applied only to the first task in a sequence. - Fixed various unit test.
This commit is contained in:
parent
1511c1fcfd
commit
9c2e70b73a
9 changed files with 53 additions and 39 deletions
|
@ -661,11 +661,7 @@ std::string handleDone ()
|
|||
{
|
||||
// Apply deltas.
|
||||
deltaDescription (*task);
|
||||
context.task.remove ("description");
|
||||
|
||||
deltaTags (*task);
|
||||
context.task.remove ("tags");
|
||||
|
||||
deltaAttributes (*task);
|
||||
deltaSubstitutions (*task);
|
||||
|
||||
|
@ -799,11 +795,7 @@ std::string handleModify ()
|
|||
|
||||
// Apply other deltas.
|
||||
changes += deltaDescription (*other);
|
||||
context.task.remove ("description");
|
||||
|
||||
changes += deltaTags (*other);
|
||||
context.task.remove ("tags");
|
||||
|
||||
changes += deltaAttributes (*other);
|
||||
changes += deltaSubstitutions (*other);
|
||||
|
||||
|
@ -853,11 +845,7 @@ std::string handleAppend ()
|
|||
|
||||
// Apply other deltas.
|
||||
changes += deltaAppend (*other);
|
||||
context.task.remove ("description");
|
||||
|
||||
changes += deltaTags (*other);
|
||||
context.task.remove ("tags");
|
||||
|
||||
changes += deltaAttributes (*other);
|
||||
|
||||
if (changes)
|
||||
|
@ -924,11 +912,7 @@ std::string handleDuplicate ()
|
|||
|
||||
// Apply deltas.
|
||||
deltaDescription (dup);
|
||||
context.task.remove ("description");
|
||||
|
||||
deltaTags (dup);
|
||||
context.task.remove ("tags");
|
||||
|
||||
deltaAttributes (dup);
|
||||
deltaSubstitutions (dup);
|
||||
|
||||
|
@ -1137,7 +1121,9 @@ int deltaAttributes (Task& task)
|
|||
|
||||
foreach (att, context.task)
|
||||
{
|
||||
if (att->first != "uuid")
|
||||
if (att->first != "uuid" &&
|
||||
att->first != "description" &&
|
||||
att->first != "tags")
|
||||
{
|
||||
if (att->second.value () == "")
|
||||
task.remove (att->first);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue