Enhancement

- Stop consider new tasks after quitting a bulk change.
This commit is contained in:
Louis-Claude Canon
2012-07-25 09:13:38 +02:00
committed by Paul Beckingham
parent e5d142a468
commit 1d99260cb9
11 changed files with 23 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
2.2.0 () 2.2.0 ()
Features
+ Stop consider new tasks after quitting a bulk change.
Bugs Bugs
+ Fixed bug #1038, which prints blank lines with bulk changes and when the + 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 verbose attributes does not specify it. Lines do a better separation between

View File

@@ -119,6 +119,8 @@ int CmdAnnotate::execute (std::string& output)
std::cout << STRING_CMD_ANNO_NO << "\n"; std::cout << STRING_CMD_ANNO_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
// Now list the project changes. // Now list the project changes.

View File

@@ -119,6 +119,8 @@ int CmdAppend::execute (std::string& output)
std::cout << STRING_CMD_APPEND_NO << "\n"; std::cout << STRING_CMD_APPEND_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
// Now list the project changes. // Now list the project changes.

View File

@@ -143,6 +143,8 @@ int CmdDelete::execute (std::string& output)
std::cout << STRING_CMD_DELETE_NO << "\n"; std::cout << STRING_CMD_DELETE_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
else else
{ {

View File

@@ -132,6 +132,8 @@ int CmdDenotate::execute (std::string& output)
std::cout << STRING_CMD_DENO_NO << "\n"; std::cout << STRING_CMD_DENO_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
else else
{ {

View File

@@ -111,6 +111,8 @@ int CmdDone::execute (std::string& output)
std::cout << STRING_CMD_DONE_NO << "\n"; std::cout << STRING_CMD_DONE_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
else else
{ {

View File

@@ -125,6 +125,8 @@ int CmdDuplicate::execute (std::string& output)
std::cout << STRING_CMD_DUPLICATE_NO << "\n"; std::cout << STRING_CMD_DUPLICATE_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
// Now list the project changes. // Now list the project changes.

View File

@@ -162,6 +162,8 @@ int CmdModify::execute (std::string& output)
std::cout << STRING_CMD_MODIFY_NO << "\n"; std::cout << STRING_CMD_MODIFY_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
} }

View File

@@ -119,6 +119,8 @@ int CmdPrepend::execute (std::string& output)
std::cout << STRING_CMD_PREPEND_NO << "\n"; std::cout << STRING_CMD_PREPEND_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
// Now list the project changes. // Now list the project changes.

View File

@@ -104,6 +104,8 @@ int CmdStart::execute (std::string& output)
std::cout << STRING_CMD_START_NO << "\n"; std::cout << STRING_CMD_START_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
else else
{ {

View File

@@ -100,6 +100,8 @@ int CmdStop::execute (std::string& output)
std::cout << STRING_CMD_STOP_NO << "\n"; std::cout << STRING_CMD_STOP_NO << "\n";
rc = 1; rc = 1;
} }
if (_permission_quit)
break;
} }
else else
{ {