- added extra line of output when doing bulk done changes.
This commit is contained in:
Federico Hernandez 2010-10-12 16:06:16 +02:00
parent 1f8ae07b8e
commit 0e1d12f5b1
2 changed files with 4 additions and 0 deletions

View file

@ -33,6 +33,8 @@
report. report.
+ Added feature #481, allowing for user control of the color rule order + Added feature #481, allowing for user control of the color rule order
of precedence via the 'rule.precedence.color' configuration variable. of precedence via the 'rule.precedence.color' configuration variable.
+ Added feature #499, giving an extra line in the message output when
doing bulk done changes (thanks to T. Charles Yun).
+ New 'depends' column for custom reports. + New 'depends' column for custom reports.
+ New 'blocked' report for showing blocked tasks. + New 'blocked' report for showing blocked tasks.
+ New 'unblocked' report for showing tasks that are not blocked. + New 'unblocked' report for showing tasks that are not blocked.

View file

@ -1592,6 +1592,8 @@ int handleDone (std::string &outs)
<< " as done.\n"; << " as done.\n";
outs = out.str (); outs = out.str ();
if (count > context.config.getInteger ("bulk"))
outs = "\n" + outs;
context.hooks.trigger ("post-done-command"); context.hooks.trigger ("post-done-command");
} }