diff --git a/ChangeLog b/ChangeLog index ac59f79f0..93dc5afe8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,13 +1,15 @@ ------ current release --------------------------- -1.4.3 (10/9/2008) +1.4.3 (11/1/2008) + Fixed misleading task count at bottom on "info" report. + Added support for a shadow file that contains a plain text task report, with the "shadow.file" and "shadow.command" configuration variables. The shadow file is automatically updated whenever the task database changes. Useful for integrating with "Samurize". + Removed "task usage" command. + + Added documentation for Shadow files. + + Added documentation for task filters. ------ old releases ------------------------------ diff --git a/html/30second.html b/html/30second.html index 227b0bbf2..6cde1c6c2 100644 --- a/html/30second.html +++ b/html/30second.html @@ -25,6 +25,7 @@ Date Handling Troubleshooting Old Versions + Task on the Web
+ A task filter is a means of reducing a task report to a + subset that may consist of all tasks that have a specific + project, priority, tag, or part of the description. +
+ ++ A task filter consists of additional command line options, + that are specified in the same way as when a task is added. +
+ ++ All task reports can make use of filters. +
+ ++ For example, the report: +
+ +% task list
+
+ + Lists all tasks. +
+ +% task list the
+
+ + Lists only tasks with "the" in the task description. +
+ +% task list project:Home priority:H
+
+ + Lists only tasks with both the "Home" project and "H" priority. +
+ +% task list +shopping
+
+ + Lists only tasks with the "shopping" tag.
- Task is an open source, command-line, TODO list manager. + Task links from around the web...
-- Here you will find information on how to acquire, build, configure, - use and become proficient with the task program. -
++ + This movie has a voice-over that explains what is going on. +
+ + For a higher-quality version, download the whole + movie file (10MB). +
+ + This movie has no voice-over, and you may notice that it exactly duplicates + the commands used in the original todo.sh movie (below). That is, until it + deviates because of new task commands. +
+ A shadow file is a text file containing a copy of a task + report. It is automatically maintained by task whenever + something changes in the task database. +
++ This means there is always a current version of the task + report kept in a text file. Products such as + Samurize, + MkConsole, + or + GeekTool + can display this file on the computer desktop, so that it + is readily visible. +
++ To use a shadow file, edit your .taskrc configuration file, + and add two entries as shown: +
+shadow.file=/path/to/file
+shadow.command=list pri:H
+ + In this example the shadow file contains a report equivalent + to running "task list pri:H". +
- ++ You can use any task command that generates a report, and of + course, you can specify any file name, provided the directory + it resides in already exists.
@@ -77,6 +78,7 @@
diff --git a/html/troubleshooting.html b/html/troubleshooting.html index d21b59164..5e3147631 100644 --- a/html/troubleshooting.html +++ b/html/troubleshooting.html @@ -25,6 +25,7 @@ Date Handling Troubleshooting Old Versions + Task on the Web