mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-02 03:37:19 +02:00
Urgency
- Made the default urgency.age.coefficient non-zero. - Updated documentation regarding new configuration settings.
This commit is contained in:
parent
b35a2f54bb
commit
4eb5c8a0db
4 changed files with 7 additions and 3 deletions
|
@ -39,6 +39,7 @@
|
||||||
+ The configuration variable 'json.array' determines whether 'query' command
|
+ The configuration variable 'json.array' determines whether 'query' command
|
||||||
output is enclosed by '[...]'.
|
output is enclosed by '[...]'.
|
||||||
+ The duration 'm' is now interpreted as 'months', not 'minutes'.
|
+ The duration 'm' is now interpreted as 'months', not 'minutes'.
|
||||||
|
+ Urgency now has an 'age' component.
|
||||||
|
|
||||||
|
|
||||||
# Tracked Features, sorted by ID.
|
# Tracked Features, sorted by ID.
|
||||||
|
|
5
NEWS
5
NEWS
|
@ -27,6 +27,7 @@ New Features in taskwarrior 2.0.0
|
||||||
task and annotations.
|
task and annotations.
|
||||||
- New 'columns' command to list the supported columns and formats.
|
- New 'columns' command to list the supported columns and formats.
|
||||||
- New 'eoq' and 'soq' dates to refer to the end and start of the quarter.
|
- New 'eoq' and 'soq' dates to refer to the end and start of the quarter.
|
||||||
|
- Urgency now has an 'age' component.
|
||||||
|
|
||||||
Please refer to the ChangeLog file for full details. There are too many to
|
Please refer to the ChangeLog file for full details. There are too many to
|
||||||
list here.
|
list here.
|
||||||
|
@ -66,6 +67,8 @@ New configuration options in taskwarrior 2.0.0
|
||||||
broken during text-wrapping.
|
broken during text-wrapping.
|
||||||
- New 'defaultheight' setting overrides the assumed 24 lines when 'detection'
|
- New 'defaultheight' setting overrides the assumed 24 lines when 'detection'
|
||||||
is disabled. This setting only affects charts.
|
is disabled. This setting only affects charts.
|
||||||
|
- New 'urgency.age.coefficient' and 'urgency.age.max' settings control the new
|
||||||
|
age component to the urgency value.
|
||||||
|
|
||||||
Newly deprecated features in taskwarrior 2.0.0
|
Newly deprecated features in taskwarrior 2.0.0
|
||||||
|
|
||||||
|
@ -84,7 +87,7 @@ Newly deprecated features in taskwarrior 2.0.0
|
||||||
|
|
||||||
Taskwarrior has been built and tested on the following configurations:
|
Taskwarrior has been built and tested on the following configurations:
|
||||||
|
|
||||||
* OS X 10.6 Snow Leopard and 10.5 Leopard
|
* OS X 10.7 Lion, 10.6 Snow Leopard and 10.5 Leopard
|
||||||
* Fedora 14 Laughlin, 13 Goddard
|
* Fedora 14 Laughlin, 13 Goddard
|
||||||
* Ubuntu 10.10 Maverick Meerkat, 10.04 Lucid Lynx
|
* Ubuntu 10.10 Maverick Meerkat, 10.04 Lucid Lynx
|
||||||
* Debian Sid
|
* Debian Sid
|
||||||
|
|
|
@ -957,7 +957,7 @@ Urgency coefficients for tags
|
||||||
.RS
|
.RS
|
||||||
Urgency coefficients for annotations
|
Urgency coefficients for annotations
|
||||||
.RE
|
.RE
|
||||||
.B urgency.age.coefficient=0.0
|
.B urgency.age.coefficient=5.0
|
||||||
.RS
|
.RS
|
||||||
Urgency coefficients for the age of tasks
|
Urgency coefficients for the age of tasks
|
||||||
.RE
|
.RE
|
||||||
|
|
|
@ -147,7 +147,7 @@ std::string Config::_defaults =
|
||||||
"urgency.project.coefficient=3.0 # Urgency coefficients for projects\n"
|
"urgency.project.coefficient=3.0 # Urgency coefficients for projects\n"
|
||||||
"urgency.tags.coefficient=2.0 # Urgency coefficients for tags\n"
|
"urgency.tags.coefficient=2.0 # Urgency coefficients for tags\n"
|
||||||
"urgency.annotations.coefficient=1.0 # Urgency coefficients for annotations\n"
|
"urgency.annotations.coefficient=1.0 # Urgency coefficients for annotations\n"
|
||||||
"urgency.age.coefficient=0 # Urgency coefficients for age\n"
|
"urgency.age.coefficient=5.0 # Urgency coefficients for age\n"
|
||||||
"urgency.age.max=365 # Maximum age in days\n"
|
"urgency.age.max=365 # Maximum age in days\n"
|
||||||
"\n"
|
"\n"
|
||||||
"#urgency.user.project.foo.coefficient=5.0 # Urgency coefficients for 'foo' project\n"
|
"#urgency.user.project.foo.coefficient=5.0 # Urgency coefficients for 'foo' project\n"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue