mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 13:37:20 +02:00
Renamed 2.4.5 to 2.5.0
This commit is contained in:
parent
7a0927effe
commit
06c6b94fd4
5 changed files with 11 additions and 11 deletions
|
@ -7,7 +7,7 @@ include (CheckStructHasMember)
|
||||||
set (HAVE_CMAKE true)
|
set (HAVE_CMAKE true)
|
||||||
|
|
||||||
project (task)
|
project (task)
|
||||||
set (PROJECT_VERSION "2.4.5")
|
set (PROJECT_VERSION "2.5.0.beta1")
|
||||||
|
|
||||||
OPTION (ENABLE_SYNC "Enable 'task sync' support" ON)
|
OPTION (ENABLE_SYNC "Enable 'task sync' support" ON)
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
2.4.5 () -
|
2.5.0 () -
|
||||||
|
|
||||||
- TW-20 Task edit loses annotation precision, causing journal updating code
|
- TW-20 Task edit loses annotation precision, causing journal updating code
|
||||||
to incorrectly indicate annotions are deleted and recreated (thanks
|
to incorrectly indicate annotions are deleted and recreated (thanks
|
||||||
|
|
|
@ -10,7 +10,7 @@ How to Build Taskwarrior
|
||||||
Obtain and build code:
|
Obtain and build code:
|
||||||
$ git clone https://git.tasktools.org/scm/tm/task.git task.git
|
$ git clone https://git.tasktools.org/scm/tm/task.git task.git
|
||||||
$ cd task.git
|
$ cd task.git
|
||||||
$ git checkout 2.4.5 # Latest dev branch
|
$ git checkout 2.5.0 # Latest dev branch
|
||||||
$ cmake -DCMAKE_BUILD_TYPE=debug . # debug or release. Default: neither.
|
$ cmake -DCMAKE_BUILD_TYPE=debug . # debug or release. Default: neither.
|
||||||
$ make VERBOSE=1 # Shows details
|
$ make VERBOSE=1 # Shows details
|
||||||
|
|
||||||
|
@ -160,9 +160,9 @@ Current Codebase Condition
|
||||||
'master' branch:
|
'master' branch:
|
||||||
- 2.4.4 Current release, locked.
|
- 2.4.4 Current release, locked.
|
||||||
|
|
||||||
'2.4.5' branch:
|
'2.5.0' branch:
|
||||||
- Current development branch no plans yet.
|
- Current development branch no plans yet.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
2015-08-14 Updated for 2.4.5
|
2015-09-07 Updated for 2.5.0
|
||||||
|
|
10
NEWS
10
NEWS
|
@ -1,18 +1,18 @@
|
||||||
|
|
||||||
New Features in Taskwarrior 2.4.5
|
New Features in Taskwarrior 2.5.0
|
||||||
|
|
||||||
- The active context, if one is set, is now identified in "task context list"
|
- The active context, if one is set, is now identified in "task context list"
|
||||||
- It is an error to attempt adding or removing a virtual tag.
|
- It is an error to attempt adding or removing a virtual tag.
|
||||||
- New 'UDA', 'ORPHAN', 'PROJECT', 'PRIORITY' and 'LATEST' virtual tags.
|
- New 'UDA', 'ORPHAN', 'PROJECT', 'PRIORITY' and 'LATEST' virtual tags.
|
||||||
|
|
||||||
New commands in Taskwarrior 2.4.5
|
New commands in Taskwarrior 2.5.0
|
||||||
|
|
||||||
- The '_unique' command shows a set of unique values for the specified
|
- The '_unique' command shows a set of unique values for the specified
|
||||||
attribute
|
attribute
|
||||||
- The 'commands' command shows the supported commands, with additional
|
- The 'commands' command shows the supported commands, with additional
|
||||||
details that determine some of their behavior.
|
details that determine some of their behavior.
|
||||||
|
|
||||||
New configuration options in Taskwarrior 2.4.5
|
New configuration options in Taskwarrior 2.5.0
|
||||||
|
|
||||||
- The 'json.depends.array' setting controls whether dependencies are exported
|
- The 'json.depends.array' setting controls whether dependencies are exported
|
||||||
as a JSON array, of a comma-separated string. Default is 'on'.
|
as a JSON array, of a comma-separated string. Default is 'on'.
|
||||||
|
@ -29,13 +29,13 @@ New configuration options in Taskwarrior 2.4.5
|
||||||
produced by different color rules. Use if your color scheme produces
|
produced by different color rules. Use if your color scheme produces
|
||||||
unpleasing foreground and background combinations.
|
unpleasing foreground and background combinations.
|
||||||
|
|
||||||
Newly deprecated features in Taskwarrior 2.4.5
|
Newly deprecated features in Taskwarrior 2.5.0
|
||||||
|
|
||||||
- The '_ids', '_projects', '_tags', '_uuids' helper commands are deprecated,
|
- The '_ids', '_projects', '_tags', '_uuids' helper commands are deprecated,
|
||||||
and replaced by the new '_unique' helper command.
|
and replaced by the new '_unique' helper command.
|
||||||
- Comma-separated ID lists are deprecated.
|
- Comma-separated ID lists are deprecated.
|
||||||
|
|
||||||
Removed features in 2.4.5
|
Removed features in 2.5.0
|
||||||
|
|
||||||
- The script 'context' was removed, now that context is a core feature.
|
- The script 'context' was removed, now that context is a core feature.
|
||||||
- Nonextended forms of ISO-8601 date/time support is removed. This means
|
- Nonextended forms of ISO-8601 date/time support is removed. This means
|
||||||
|
|
|
@ -126,7 +126,7 @@ std::string legacyCheckForDeprecatedVariables ()
|
||||||
if (it.first == "alias._query")
|
if (it.first == "alias._query")
|
||||||
deprecated.push_back (it.first);
|
deprecated.push_back (it.first);
|
||||||
|
|
||||||
// Deprecated in 2.4.5.
|
// Deprecated in 2.5.0.
|
||||||
if (it.first == "urgency.inherit.coefficient")
|
if (it.first == "urgency.inherit.coefficient")
|
||||||
deprecated.push_back (it.first);
|
deprecated.push_back (it.first);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue