mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug #991
- Fixed bug #991, which removes an obsolete consistency check. - Removed 'annotations' example from man page, because it is obsolete. Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
parent
b4d09d1c30
commit
9a18d77005
4 changed files with 3 additions and 12 deletions
2
AUTHORS
2
AUTHORS
|
@ -71,6 +71,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
||||||
Sam Stuck
|
Sam Stuck
|
||||||
Christoph Robbert
|
Christoph Robbert
|
||||||
Oleksii Tsai
|
Oleksii Tsai
|
||||||
|
Louis-Claude Canon
|
||||||
|
|
||||||
Thanks to the following, who submitted detailed bug reports and excellent
|
Thanks to the following, who submitted detailed bug reports and excellent
|
||||||
suggestions:
|
suggestions:
|
||||||
|
@ -135,5 +136,4 @@ suggestions:
|
||||||
Victor Roetman
|
Victor Roetman
|
||||||
Andy Spiegl
|
Andy Spiegl
|
||||||
Ethan Schoonover
|
Ethan Schoonover
|
||||||
Louis-Claude Canon
|
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,8 @@ Bugs
|
||||||
accumulate after an active task is completed (thanks to Louis-Claude Canon).
|
accumulate after an active task is completed (thanks to Louis-Claude Canon).
|
||||||
+ Fixed bug #988, updating the documentation so that 'undo.data' usage is more
|
+ Fixed bug #988, updating the documentation so that 'undo.data' usage is more
|
||||||
clearly stated (thanks to Louis-Claude Canon).
|
clearly stated (thanks to Louis-Claude Canon).
|
||||||
|
+ Applied patch for bug #991, which removes an obsolete consistency check
|
||||||
|
(thanks to Louis-Claude Canon).
|
||||||
+ Fixed grammar in feedback string (thanks to Uli Martens).
|
+ Fixed grammar in feedback string (thanks to Uli Martens).
|
||||||
+ Addressed valgrind complaints (thanks to Bryce Harrington).
|
+ Addressed valgrind complaints (thanks to Bryce Harrington).
|
||||||
+ Removed default configuration value for the obsolete 'annotations' setting.
|
+ Removed default configuration value for the obsolete 'annotations' setting.
|
||||||
|
|
|
@ -752,8 +752,6 @@ alias.ghistory ghistory.monthly
|
||||||
alias.history history.monthly
|
alias.history history.monthly
|
||||||
.br
|
.br
|
||||||
alias.rm delete
|
alias.rm delete
|
||||||
.br
|
|
||||||
annotations full
|
|
||||||
.br
|
.br
|
||||||
...
|
...
|
||||||
.br
|
.br
|
||||||
|
|
|
@ -372,15 +372,6 @@ int CmdShow::execute (std::string& output)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Check for bad values in rc.annotations.
|
|
||||||
// TODO Deprecated.
|
|
||||||
std::string annotations = context.config.get ("annotations");
|
|
||||||
if (annotations != "full" &&
|
|
||||||
annotations != "sparse" &&
|
|
||||||
annotations != "none")
|
|
||||||
out << format (STRING_CMD_SHOW_CONFIG_ERROR, "annotations", annotations)
|
|
||||||
<< "\n";
|
|
||||||
|
|
||||||
// Check for bad values in rc.calendar.details.
|
// Check for bad values in rc.calendar.details.
|
||||||
std::string calendardetails = context.config.get ("calendar.details");
|
std::string calendardetails = context.config.get ("calendar.details");
|
||||||
if (calendardetails != "full" &&
|
if (calendardetails != "full" &&
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue