diff --git a/AUTHORS b/AUTHORS index ce785fda8..273d2acc1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -29,4 +29,5 @@ With thanks to: Eric Farris Bruce Dillahunty Askme Too + P.C. Shyamshankar diff --git a/ChangeLog b/ChangeLog index 2713a9a27..266042125 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,10 @@ ------ old releases ------------------------------ +1.6.1 (4/24/2009) 1b6faf57c998617024d0348a87b941a5d2ab2249 + + Fixed bug that caused new, first-time .taskrc files to be written without + including the custom report labels (thanks to P.C. Shyamshankar). + 1.6.0 (4/12/2009) 06062a96eb57d10dcd7fbe1edf968bb638a0b3a9 + Added support for new "append" command that adds more description text to an existing task. diff --git a/NEWS b/NEWS index 60b40cba4..3e9b96087 100644 --- a/NEWS +++ b/NEWS @@ -10,7 +10,7 @@ Task has been built and tested on the following configurations: - Ubuntu 7 Feisty Fawn - Ubuntu 8 Hardy Heron - Ubuntu 8.10 Intrepid Ibex - - Ubuntu 9.04 Jaunty Jackalope (beta) + - Ubuntu 9.04 Jaunty Jackalope - Solaris 10 - Cygwin 1.5.25-14 diff --git a/html/task.html b/html/task.html index b0a146a36..a4616f4e2 100644 --- a/html/task.html +++ b/html/task.html @@ -79,81 +79,44 @@ - + +
Source:task-1.6.0.tar.gztask-1.7.0.tar.gz
Git - get the whole source and history: http://github.com/pbeckingham/task
-

New in version 1.6.0 (?)

+

New in version 1.7.0 (?)

(Find out what was new in prior versions)

@@ -192,6 +155,7 @@
  • Ubuntu 7 Feisty Fawn
  • Ubuntu 8 Hardy Heron
  • Ubuntu 8.10 Intrepid Ibex +
  • Ubuntu 9.04 Jaunty Jackalope
  • Solaris 10
  • Cygwin 1.5.25-14 diff --git a/html/versions.html b/html/versions.html index e9dee7fd8..6044b464b 100644 --- a/html/versions.html +++ b/html/versions.html @@ -36,6 +36,121 @@
    +

    New in version 1.6.1 (4/24/2009)

    +

    + + + + + + + + + + +
    Source:task-1.6.1.tar.gz
    Git - get the whole source and history:http://github.com/pbeckingham/task
    + +

    +

    + +

    New in version 1.6.0 (4/13/2009)

    +

    + + + + + + + + + + + + + + +
    Source:task-1.6.0.tar.gz
    + Red Hat: + (Thanks to Federico Hernandez): + task-1.6.0-1.FC10.i386.rpm
    Git - get the whole source and history:http://github.com/pbeckingham/task
    + +

    +

    New in version 1.5.0 (3/15/2009)

    diff --git a/src/Config.cpp b/src/Config.cpp index 17206c1ae..5403accec 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -183,23 +183,28 @@ void Config::createDefault (const std::string& home) fprintf (out, "# Limit: 10\n"); fprintf (out, "report.long.description=Lists all task, all data, matching the specified criteria\n"); + fprintf (out, "report.long.labels=ID,Project,Pri,Added,Started,Due,Recur,Age,Tags,Description\n"); fprintf (out, "report.long.columns=id,project,priority,entry,start,due,recur,age,tags,description\n"); fprintf (out, "report.long.sort=due+,priority-,project+\n"); fprintf (out, "report.list.description=Lists all tasks matching the specified criteria\n"); + fprintf (out, "report.list.labels=ID,Project,Pri,Due,Active,Age,Description\n"); fprintf (out, "report.list.columns=id,project,priority,due,active,age,description\n"); fprintf (out, "report.list.sort=due+,priority-,project+\n"); fprintf (out, "report.ls.description=Minimal listing of all tasks matching the specified criteria\n"); + fprintf (out, "report.ls.labels=ID,Project,Pri,Description\n"); fprintf (out, "report.ls.columns=id,project,priority,description\n"); fprintf (out, "report.ls.sort=priority-,project+\n"); fprintf (out, "report.newest.description=Shows the newest tasks\n"); + fprintf (out, "report.newest.labels=ID,Project,Pri,Due,Active,Age,Description\n"); fprintf (out, "report.newest.columns=id,project,priority,due,active,age,description\n"); fprintf (out, "report.newest.sort=id-\n"); fprintf (out, "report.newest.limit=10\n"); fprintf (out, "report.oldest.description=Shows the oldest tasks\n"); + fprintf (out, "report.oldest.labels=ID,Project,Pri,Due,Active,Age,Description\n"); fprintf (out, "report.oldest.columns=id,project,priority,due,active,age,description\n"); fprintf (out, "report.oldest.sort=id+\n"); fprintf (out, "report.oldest.limit=10\n"); diff --git a/src/tests/t.t.cpp b/src/tests/t.t.cpp index e36012988..b0a30c6ae 100644 --- a/src/tests/t.t.cpp +++ b/src/tests/t.t.cpp @@ -86,7 +86,7 @@ int main (int argc, char** argv) t.setDescription ("sample"); std::string format = t.compose (); test.is (format.substr (36, 20), " - [foo] [bar:baz] [", "compose tag, attribute"); - test.is (format.substr (66, 16), ":'woof'] sample\n", "compose annotation"); + test.is (format.substr (66, 16), ":\"woof\"] sample\n", "compose annotation"); test.is (t.getAnnotationCount (), 1, "annotation count"); return 0;