From f9980370864c362622ed068785b50fb997914d09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Bo=C3=9F?= Date: Sun, 13 Jul 2014 14:24:24 -0400 Subject: [PATCH] Typo - Fixed typo in 'newest' and 'oldest' report definitions. Signed-off-by: Paul Beckingham --- AUTHORS | 2 +- ChangeLog | 1 + src/Config.cpp | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 6da72169b..937d9051e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -107,6 +107,7 @@ The following submitted code, packages or analysis, and deserve special thanks: catern Tatjana Heuser leowzukw + Richard Boß Thanks to the following, who submitted detailed bug reports and excellent suggestions: @@ -222,5 +223,4 @@ suggestions: Jack Kevin Ballard Sitaram Chamarty - Richard Boß lolilolicon diff --git a/ChangeLog b/ChangeLog index 25d2f2915..268a53c0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -161,6 +161,7 @@ - Improved bash completion when TASKRC is exported. - Segfault when 'project:android' is split into 'and' and 'roid' (thanks to Richard Boß). +- Fixed typo in 'newest' and 'oldest' report definitions (thanks to Richard Boß). ------ current release --------------------------- diff --git a/src/Config.cpp b/src/Config.cpp index 50fd37326..08b08d4ec 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -338,13 +338,13 @@ std::string Config::_defaults = "\n" "report.newest.description=Newest tasks\n" "report.newest.labels=ID,Active,Created,Age,Mod,D,P,Project,Tags,R,Wait,Sch,Due,Until,Description\n" - "report.newest.columns=id,start.age,entry,entry.age,modified.age,depends.indicator,priority,project,tags,recur.indicator,wait.age,scheduled.coundtdown,due,until.age,description\n" + "report.newest.columns=id,start.age,entry,entry.age,modified.age,depends.indicator,priority,project,tags,recur.indicator,wait.age,scheduled.countdown,due,until.age,description\n" "report.newest.filter= ( status:pending or status:waiting ) and recur.none:\n" "report.newest.sort=entry-\n" "\n" "report.oldest.description=Oldest tasks\n" "report.oldest.labels=ID,Active,Created,Age,Mod,D,P,Project,Tags,R,Wait,Sch,Due,Until,Description\n" - "report.oldest.columns=id,start.age,entry,entry.age,modified.age,depends.indicator,priority,project,tags,recur.indicator,wait.age,scheduled.coundtdown,due,until.age,description\n" + "report.oldest.columns=id,start.age,entry,entry.age,modified.age,depends.indicator,priority,project,tags,recur.indicator,wait.age,scheduled.countdown,due,until.age,description\n" "report.oldest.filter= ( status:pending or status:waiting )\n" "report.oldest.sort=entry+\n" "\n"