diff --git a/ChangeLog b/ChangeLog index f924b0d61..6c2d5e3b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,7 +7,7 @@ represents a feature release, and the Z represents a patch. ------ current release --------------------------- -1.4.2 (9/13/2008) +1.4.2 (9/14/2008) + "task undo" can now retract a "task done" command, provided no reports have been run (and therefore TDB::gc run) + Task now correctly sorts on entire strings, instead of just the first diff --git a/html/advanced.html b/html/advanced.html index 3208f2671..126bbf3a2 100644 --- a/html/advanced.html +++ b/html/advanced.html @@ -356,6 +356,14 @@ ID Project Pri Description % wtask list ... + % task <id> "new description" +

+ Not strictly a command, the replacement of the description can + be achieved by quoting the entire description. The quotes are + necessary in case one of the description words looks like a task + command. +

+ % task <id> fg:... bg:...

Not strictly a command, the setting of the fg and bg (foreground diff --git a/html/task.html b/html/task.html index cec9f6ae7..28b160bcb 100644 --- a/html/task.html +++ b/html/task.html @@ -92,7 +92,7 @@ --> -

New in version 1.4.2 (9/13/2008)

+

New in version 1.4.2 (9/14/2008)

+

New in version 1.4.0 (7/10/2008)

Source: task-1.4.0.tar.gz diff --git a/src/parse.cpp b/src/parse.cpp index 98c376fe2..c468a822c 100644 --- a/src/parse.cpp +++ b/src/parse.cpp @@ -418,7 +418,6 @@ void parse ( command = l; else descCandidate += arg; -// throw std::string ("'") + arg + "' is not a valid command."; } // Anything else is just considered description.