diff --git a/DEVELOPERS b/DEVELOPERS index bfab9ea27..2eec979bc 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -1,9 +1,11 @@ Developers may wish to change task, and here is a high-level guide to the files included. - task.{cpp,h} Functions that implement the task commands, and main. + task.{cpp,h} Implements main, high level processing. + command.cpp Implements all non-report task commands. + report.cpp Implements all task reports. parse.cpp Parses the command line. - TDB.{cpp,h} The task database, performs all file I/O + TDB.{cpp,h} The task database, performs all file I/O. T.{cpp,h} Represents a single task - parses a record from TDB, and also composes record for TDB. Provides accessors for tasks. Grid.{cpp,h} Implements a sparse 2D array, provides data storage for the diff --git a/README b/README index a7de2f111..0b1b02f58 100644 --- a/README +++ b/README @@ -30,6 +30,12 @@ it fits in to your way of working. As a command line application, task is not for everyone and some of you may prefer to not proceed. The movie or TUTORIAL file are the quickest way for you to make that decision. +Please note that the TUTORIAL file included is deprecated, and will be removed +at the next major release of task. It is superceded by an HTML tutorial that +can be found at: + + http://www.beckingham.net/task.html + Task is based on ideas presented in the todo.sh script, found on: http://todotxt.org diff --git a/TUTORIAL b/TUTORIAL index 991dc863e..5bf05886b 100644 --- a/TUTORIAL +++ b/TUTORIAL @@ -1,6 +1,19 @@ Task program tutorial, for version 1.4.0 ---------------------------------------- + + +* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + +This TUTORIAL file is deprecated. It will not be included in future releases +of task, and will be superceded by an online version that can be found at: + + http://www.beckingham.net/task.html + +* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + + + This guide shows how to quickly set up the task program, and become proficient with it. diff --git a/src/task.cpp b/src/task.cpp index 13e3999ca..ba48c472e 100644 --- a/src/task.cpp +++ b/src/task.cpp @@ -213,6 +213,8 @@ static void longUsage (Config& conf) << " project: Project name" << "\n" << " priority: Priority" << "\n" << " due: Due date" << "\n" + << " recur: Recurrence frequency" << "\n" + << " until: Recurrence end date" << "\n" << " fg: Foreground color" << "\n" << " bg: Background color" << "\n" << " rc: Alternate .taskrc file" << "\n"