mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug #897
- Fixed bug #897, which omitted the UUID field from the 'completed' report, which is essential if you need to modify a completed task (thanks to Eli Lev).
This commit is contained in:
parent
205d4fe29f
commit
7cc3544f74
3 changed files with 5 additions and 2 deletions
1
AUTHORS
1
AUTHORS
|
@ -117,4 +117,5 @@ suggestions:
|
||||||
Gour-Gadadhara Dasa
|
Gour-Gadadhara Dasa
|
||||||
Aaron Jackson
|
Aaron Jackson
|
||||||
Dmitriy Samborskiy
|
Dmitriy Samborskiy
|
||||||
|
Eli Lev
|
||||||
|
|
||||||
|
|
|
@ -223,6 +223,8 @@
|
||||||
+ Fixed bug #862, which suppressed feedback from the 'denotate' command.
|
+ Fixed bug #862, which suppressed feedback from the 'denotate' command.
|
||||||
+ Fixed bug #892, which caused a segfault due to misuse of
|
+ Fixed bug #892, which caused a segfault due to misuse of
|
||||||
std::map::operator[] (thanks to Dmitriy Samborskiy).
|
std::map::operator[] (thanks to Dmitriy Samborskiy).
|
||||||
|
+ Fixed bug #897, which adds the UUID field to the 'completed' report
|
||||||
|
(thanks to Eli Lev).
|
||||||
|
|
||||||
# Untracked Bugs, biggest first.
|
# Untracked Bugs, biggest first.
|
||||||
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
||||||
|
|
|
@ -400,8 +400,8 @@ std::string Config::_defaults =
|
||||||
"\n"
|
"\n"
|
||||||
"# task completed\n"
|
"# task completed\n"
|
||||||
"report.completed.description=Lists completed tasks\n"
|
"report.completed.description=Lists completed tasks\n"
|
||||||
"report.completed.columns=end,project,priority,entry.age,description\n"
|
"report.completed.columns=end,project,priority,entry.age,description,uuid\n"
|
||||||
"report.completed.labels=Complete,Project,Pri,Age,Description\n"
|
"report.completed.labels=Complete,Project,Pri,Age,Description,UUID\n"
|
||||||
"report.completed.sort=end+,priority-,project+,description+\n"
|
"report.completed.sort=end+,priority-,project+,description+\n"
|
||||||
"report.completed.filter=status:completed\n"
|
"report.completed.filter=status:completed\n"
|
||||||
"#report.completed.dateformat=m/d/Y\n"
|
"#report.completed.dateformat=m/d/Y\n"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue