Feature - #341 man pages

- Added feature #341 that makes explicit references to the task and taskrc
  man pages, both in the auto-generated .taskrc file and the version command
  output (thanks to Cory Donnelly).

Signed-off-by: Federico Hernandez <ultrafredde@gmail.com>
This commit is contained in:
Paul Beckingham 2009-12-05 11:24:05 -05:00 committed by Federico Hernandez
parent b3e3c36d50
commit 204d287b20
3 changed files with 12 additions and 9 deletions

View file

@ -2,16 +2,22 @@
------ current release --------------------------- ------ current release ---------------------------
1.8.5 () 1.8.5 ()
+ Fixed bug that was causing the 'completed' report to sort incorrectly.
+ Added feature to allow the user to quit when asked to confirm multiple + Added feature to allow the user to quit when asked to confirm multiple
changes. Now task asks "Proceed with change? (Yes/no/all/quit)". changes. Now task asks "Proceed with change? (Yes/no/all/quit)".
+ Added feature #341 that makes explicit references to the task and taskrc
man pages, both in the auto-generated .taskrc file and the version command
output (thanks to Cory Donnelly).
+ Added feature - #310 that simplified and make clearer an error message
that complained about things that were beyond user control (thanks to
John Florian).
+ Fixed bug that was causing the 'completed' report to sort incorrectly.
+ Fixed bug #321 where all shell input was converted to lower case (thanks + Fixed bug #321 where all shell input was converted to lower case (thanks
to Juergen Daubert). to Juergen Daubert).
+ Fixed bug #327 that allowed the removal of a due date from a recurring + Fixed bug #327 that allowed the removal of a due date from a recurring
task. task.
+ Fixed bug #317 which colored tasks in the 'completed' report according to + Fixed bug #317 which colored tasks in the 'completed' report according
due dates, which are no longer relevant to a completed task (thanks to to due dates, which are no longer relevant to a completed task (thanks
Cory Donnelly). to Cory Donnelly).
+ Fixed bug that was causing the 'completed' report to sort incorrectly. + Fixed bug that was causing the 'completed' report to sort incorrectly.
+ Fixed bug #322 which failed to propagate rc overrides to shell commands. + Fixed bug #322 which failed to propagate rc overrides to shell commands.
+ Fixed redundant messages when exiting shell mode. + Fixed redundant messages when exiting shell mode.
@ -24,9 +30,6 @@
+ Fixed bug #319 that caused task to not properly detect the removal of a + Fixed bug #319 that caused task to not properly detect the removal of a
tag when obtaining confirmation from the user fora bulk modification tag when obtaining confirmation from the user fora bulk modification
(thanks to Cory Donnelly). (thanks to Cory Donnelly).
+ Added feature - #310 that simplified and make clearer an error message
that complained about things that were beyond user control (thanks to
John Florian).
------ old releases ------------------------------ ------ old releases ------------------------------

View file

@ -100,7 +100,7 @@ void Config::createDefaultRC (const std::string& rc, const std::string& data)
// Create a sample .taskrc file. // Create a sample .taskrc file.
std::stringstream contents; std::stringstream contents;
contents << "# Task program configuration file.\n" contents << "# Task program configuration file.\n"
<< "# For more documentation, see http://taskwarrior.org\n" << "# For more documentation, see http://taskwarrior.org or try 'man task' and 'man taskrc'\n"
<< "\n" << "\n"
<< "# Files\n" << "# Files\n"
<< "data.location=" << data << "\n" << "data.location=" << data << "\n"

View file

@ -436,7 +436,7 @@ int handleVersion (std::string &outs)
link.addCell (link.addRow (), 0, link.addCell (link.addRow (), 0,
"See http://taskwarrior.org for the latest releases, online documentation " "See http://taskwarrior.org for the latest releases, online documentation "
"and lively discussion. New releases containing fixes and enhancements " "and lively discussion. New releases containing fixes and enhancements "
"are made frequently."); "are made frequently. Don't forget the man pages 'man task' and 'man taskrc'.");
std::vector <std::string> all; std::vector <std::string> all;
context.config.all (all); context.config.all (all);