mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-19 00:43:07 +02:00
Enhancement
- Stop consider new tasks after quitting a bulk change.
This commit is contained in:
parent
e5d142a468
commit
1d99260cb9
11 changed files with 23 additions and 0 deletions
|
@ -2,6 +2,9 @@
|
|||
|
||||
2.2.0 ()
|
||||
|
||||
Features
|
||||
+ Stop consider new tasks after quitting a bulk change.
|
||||
|
||||
Bugs
|
||||
+ Fixed bug #1038, which prints blank lines with bulk changes and when the
|
||||
verbose attributes does not specify it. Lines do a better separation between
|
||||
|
|
|
@ -119,6 +119,8 @@ int CmdAnnotate::execute (std::string& output)
|
|||
std::cout << STRING_CMD_ANNO_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
|
||||
// Now list the project changes.
|
||||
|
|
|
@ -119,6 +119,8 @@ int CmdAppend::execute (std::string& output)
|
|||
std::cout << STRING_CMD_APPEND_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
|
||||
// Now list the project changes.
|
||||
|
|
|
@ -143,6 +143,8 @@ int CmdDelete::execute (std::string& output)
|
|||
std::cout << STRING_CMD_DELETE_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -132,6 +132,8 @@ int CmdDenotate::execute (std::string& output)
|
|||
std::cout << STRING_CMD_DENO_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -111,6 +111,8 @@ int CmdDone::execute (std::string& output)
|
|||
std::cout << STRING_CMD_DONE_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -125,6 +125,8 @@ int CmdDuplicate::execute (std::string& output)
|
|||
std::cout << STRING_CMD_DUPLICATE_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
|
||||
// Now list the project changes.
|
||||
|
|
|
@ -162,6 +162,8 @@ int CmdModify::execute (std::string& output)
|
|||
std::cout << STRING_CMD_MODIFY_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -119,6 +119,8 @@ int CmdPrepend::execute (std::string& output)
|
|||
std::cout << STRING_CMD_PREPEND_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
|
||||
// Now list the project changes.
|
||||
|
|
|
@ -104,6 +104,8 @@ int CmdStart::execute (std::string& output)
|
|||
std::cout << STRING_CMD_START_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -100,6 +100,8 @@ int CmdStop::execute (std::string& output)
|
|||
std::cout << STRING_CMD_STOP_NO << "\n";
|
||||
rc = 1;
|
||||
}
|
||||
if (_permission_quit)
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue