Add a Recurring status to TaskChampion

This commit is contained in:
Dustin J. Mitchell
2022-12-15 02:52:35 +00:00
committed by Tomas Babej
parent 6e5d8b1dde
commit 9add31104b
5 changed files with 13 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ Timestamps are stored as UNIX epoch timestamps, in the form of an integer.
The following keys, and key formats, are defined:
* `status` - one of `P` for a pending task (the default), `C` for completed or `D` for deleted
* `status` - one of `P` for a pending task (the default), `C` for completed, `D` for deleted, or `R` for recurring
* `description` - the one-line summary of the task
* `modified` - the time of the last modification of this task
* `start` - the most recent time at which this task was started (a task with no `start` key is not active)
@@ -43,9 +43,7 @@ The following keys, and key formats, are defined:
* `entry` - the time at which the task was created
* `annotation_<timestamp>` - value is an annotation created at the given time
The following are not yet implemented:
* `dep_<uuid>` - indicates this task depends on `<uuid>` (value is an empty string)
Note that while TaskChampion recognizes "recurring" as a status, it does not implement recurrence directly.
### UDAs