diff --git a/ChangeLog b/ChangeLog index ab7f02b8e..e589d9243 100644 --- a/ChangeLog +++ b/ChangeLog @@ -39,6 +39,7 @@ + The configuration variable 'json.array' determines whether 'query' command output is enclosed by '[...]'. + The duration 'm' is now interpreted as 'months', not 'minutes'. + + Urgency now has an 'age' component. # Tracked Features, sorted by ID. diff --git a/NEWS b/NEWS index 88f474f55..0d8d8e4da 100644 --- a/NEWS +++ b/NEWS @@ -27,6 +27,7 @@ New Features in taskwarrior 2.0.0 task and annotations. - 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. + - Urgency now has an 'age' component. Please refer to the ChangeLog file for full details. There are too many to list here. @@ -66,6 +67,8 @@ New configuration options in taskwarrior 2.0.0 broken during text-wrapping. - New 'defaultheight' setting overrides the assumed 24 lines when 'detection' 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 @@ -84,7 +87,7 @@ Newly deprecated features in taskwarrior 2.0.0 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 * Ubuntu 10.10 Maverick Meerkat, 10.04 Lucid Lynx * Debian Sid diff --git a/doc/man/taskrc.5.in b/doc/man/taskrc.5.in index fa0d8fa92..2c7e8714a 100644 --- a/doc/man/taskrc.5.in +++ b/doc/man/taskrc.5.in @@ -957,7 +957,7 @@ Urgency coefficients for tags .RS Urgency coefficients for annotations .RE -.B urgency.age.coefficient=0.0 +.B urgency.age.coefficient=5.0 .RS Urgency coefficients for the age of tasks .RE diff --git a/src/Config.cpp b/src/Config.cpp index f497623b8..64cb10556 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -147,7 +147,7 @@ std::string Config::_defaults = "urgency.project.coefficient=3.0 # Urgency coefficients for projects\n" "urgency.tags.coefficient=2.0 # Urgency coefficients for tags\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" "\n" "#urgency.user.project.foo.coefficient=5.0 # Urgency coefficients for 'foo' project\n"