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 4328f0266..246116a0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,12 @@ ------ current release --------------------------- +1.6.1 (4/24/2009) + + Fixed bug that caused new, first-time .taskrc files to be written without + including the custom report labels (thanks to P.C. Shyamshankar). + +------ old releases ------------------------------ + 1.6.0 (4/12/2009) + Added support for new "append" command that adds more description text to an existing task. @@ -43,8 +49,6 @@ + Substitutions can now be made global with /from/to/g and all occurrences of "from" will be replaced with "to". ------- old releases ------------------------------ - 1.5.0 (3/15/2009) 87be68e2e83d7bb628be1e5679b16a49a26d3549 + Removed deprecated TUTORIAL file. + Removed "showage" configuration variable. diff --git a/NEWS b/NEWS index 115c75487..a45a40a94 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Welcome to Task 1.6.0. +Welcome to Task 1.6.1. Task has been built and tested on the following configurations: @@ -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/configure.ac b/configure.ac index 7635cd3f0..0a4c99378 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT(task, 1.6.0, bugs@beckingham.net) +AC_INIT(task, 1.6.1, bugs@beckingham.net) CFLAGS="${CFLAGS=}" CXXFLAGS="${CXXFLAGS=}" diff --git a/html/task.html b/html/task.html index 421e9fcde..2fd90d5f5 100644 --- a/html/task.html +++ b/html/task.html @@ -79,83 +79,45 @@ - + - + +-->
Source:task-1.6.0.tar.gztask-1.6.1.tar.gz
Red Hat: (Thanks to Federico Hernandez): task-1.6.0-1.FC10.i386.rpmtask-1.6.1-1.FC10.i386.rpm
Git - get the whole source and history: http://github.com/pbeckingham/task
-

New in version 1.6.0 (4/13/2009)

+

New in version 1.6.1 (4/24/2009)

(Find out what was new in prior versions)

@@ -194,6 +156,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..638078217 100644 --- a/html/versions.html +++ b/html/versions.html @@ -36,6 +36,82 @@
    +

    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;