Merge branch '2.1.2' of tasktools.org:task into 2.1.2

This commit is contained in:
Johannes Schlatow 2012-09-10 23:42:30 +02:00
commit bbd8a9556e
11 changed files with 21 additions and 32 deletions

View file

@ -1,5 +1,4 @@
cmake_minimum_required (VERSION 2.8) cmake_minimum_required (VERSION 2.8)
set(CMAKE_LEGACY_CYGWIN_WIN32 0) # Remove when CMake >= 2.8.4 is required
include (CheckFunctionExists) include (CheckFunctionExists)
include (CheckStructHasMember) include (CheckStructHasMember)

View file

@ -2,6 +2,10 @@
2.1.2 () 2.1.2 ()
Bugs
+ Bug fix release regarding #1104, which causes duplicate UUIDs during
the merge command.
------ old releases ------------------------------ ------ old releases ------------------------------
2.1.1 (2012-07-24) 46c5f8b826838ce96d9df7fcd3039de3c43483dd 2.1.1 (2012-07-24) 46c5f8b826838ce96d9df7fcd3039de3c43483dd

33
NEWS
View file

@ -1,34 +1,21 @@
New Features in taskwarrior 2.1.0 New bug fixes in taskwarrior 2.1.2
- The new 'project.indented' format is available and used in the 'projects' - Important bug fix release regarding duplicate UUIDs during the merge command.
and 'summary' commands.
- Support for the 'scheduled' date for a task, which represent the earliest
opportunity to work on a task.
- All tasks may now be given an 'until' date, after which they will expire
and are deleted.
- Improved UTF8 handling for wide characters.
- User defined attributes.
- Partial UUIDs must now be at least 14 characters, up from 9. This
disambiguates a commonly date format.
Please refer to the ChangeLog file for full details. There are too many to New features in taskwarrior 2.1.2
list here.
New commands in taskwarrior 2.1.0 - None
- New 'ready' report that lists tasks ready for work, sorted by urgency. New commands in taskwarrior 2.1.2
- New 'udas' command shows UDA details and warnings.
- New '_udas' helper command lists UDA names for completion purposes.
New configuration options in taskwarrior 2.1.0 - None
- urgency.scheduled.coefficient New configuration options in taskwarrior 2.1.2
- urgency.uda.<name>.coefficient
- color.scheduled
- color.blocking
Newly deprecated features in taskwarrior 2.1.0 - None
Newly deprecated features in taskwarrior 2.1.2
- None - None

View file

@ -39,7 +39,6 @@ Override PACKAGE_LANGUAGE, then
#cmakedefine NETBSD #cmakedefine NETBSD
#cmakedefine HAIKU #cmakedefine HAIKU
#cmakedefine SOLARIS #cmakedefine SOLARIS
#cmakedefine WIN32
#cmakedefine UNKNOWN #cmakedefine UNKNOWN
/* Found the lua library */ /* Found the lua library */

View file

@ -1,4 +1,4 @@
.TH task-color 5 2012-07-24 "${PACKAGE_STRING}" "User Manuals" .TH task-color 5 2012-09-10 "${PACKAGE_STRING}" "User Manuals"
.SH NAME .SH NAME
task-color \- A color tutorial for the taskwarrior command line todo manager. task-color \- A color tutorial for the taskwarrior command line todo manager.

View file

@ -1,4 +1,4 @@
.TH task-faq 5 2012-07-24 "${PACKAGE_STRING}" "User Manuals" .TH task-faq 5 2012-09-10 "${PACKAGE_STRING}" "User Manuals"
.SH NAME .SH NAME
task-faq \- A FAQ for the task(1) command line todo manager. task-faq \- A FAQ for the task(1) command line todo manager.

View file

@ -1,4 +1,4 @@
.TH task-sync 5 2012-07-24 "${PACKAGE_STRING}" "User Manuals" .TH task-sync 5 2012-09-10 "${PACKAGE_STRING}" "User Manuals"
.SH NAME .SH NAME
task-sync \- A tutorial for the task(1) data synchronization capabilities. task-sync \- A tutorial for the task(1) data synchronization capabilities.

View file

@ -1,4 +1,4 @@
.TH task-tutorial 5 2012-07-24 "${PACKAGE_STRING}" "User Manuals" .TH task-tutorial 5 2012-09-10 "${PACKAGE_STRING}" "User Manuals"
.SH NAME .SH NAME
task-tutorial \- A tutorial for the task(1) command line todo manager. task-tutorial \- A tutorial for the task(1) command line todo manager.

View file

@ -1,4 +1,4 @@
.TH task 1 2012-07-24 "${PACKAGE_STRING}" "User Manuals" .TH task 1 2012-09-10 "${PACKAGE_STRING}" "User Manuals"
.SH NAME .SH NAME
task \- A command line todo manager. task \- A command line todo manager.

View file

@ -1,4 +1,4 @@
.TH taskrc 5 2012-07-24 "${PACKAGE_STRING}" "User Manuals" .TH taskrc 5 2012-09-10 "${PACKAGE_STRING}" "User Manuals"
.SH NAME .SH NAME
taskrc \- Configuration file for the task(1) command taskrc \- Configuration file for the task(1) command

View file

@ -88,7 +88,7 @@ int main (int argc, char** argv)
ut.ok (r9.match (start, end, text), "e there are matches"); ut.ok (r9.match (start, end, text), "e there are matches");
ut.is (start.size (), (size_t) 6, "e == 6 matches"); ut.is (start.size (), (size_t) 6, "e == 6 matches");
#ifdef DARWIN #if defined(DARWIN) || defined(CYGWIN) || defined(FREEBSD)
text = "this is the end."; text = "this is the end.";
ut.pass (text + " =~ /\\bthe/"); ut.pass (text + " =~ /\\bthe/");
ut.pass (text + " =~ /the\\b/"); ut.pass (text + " =~ /the\\b/");