mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Merge branch '1.9.0' of tasktools.org:task into 1.9.0
This commit is contained in:
commit
6fc34eef42
3 changed files with 7 additions and 4 deletions
|
@ -5,6 +5,11 @@
|
||||||
+ Added feature #292 that permits alternate line coloration in reports
|
+ Added feature #292 that permits alternate line coloration in reports
|
||||||
(thanks to Richard Querin).
|
(thanks to Richard Querin).
|
||||||
+ The 'delete' command is now aliased to 'rm' (thanks to Ivo Jimenez).
|
+ The 'delete' command is now aliased to 'rm' (thanks to Ivo Jimenez).
|
||||||
|
+ Added feature #336 which gives task a 'prepend' command for symmetry
|
||||||
|
with the 'append' command.
|
||||||
|
+ 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).
|
||||||
+ Fixed bug that showed a calendar for the year 2037 when 'task calendar due'
|
+ Fixed bug that showed a calendar for the year 2037 when 'task calendar due'
|
||||||
was run, and there are no tasks with due dates.
|
was run, and there are no tasks with due dates.
|
||||||
+ Fixed bug #316 which caused the timesheet report to display an oddly sorted
|
+ Fixed bug #316 which caused the timesheet report to display an oddly sorted
|
||||||
|
@ -13,8 +18,6 @@
|
||||||
due dates, which are no longer relevant to a completed task (thanks to
|
due dates, which are no longer relevant to a completed task (thanks to
|
||||||
Cory Donnelly).
|
Cory Donnelly).
|
||||||
+ Fixed bug that was causing the 'completed' report to sort incorrectly.
|
+ Fixed bug that was causing the 'completed' report to sort incorrectly.
|
||||||
+ Added feature #336 which gives task a 'prepend' command for symmetry
|
|
||||||
with the 'append' command.
|
|
||||||
|
|
||||||
------ old releases ------------------------------
|
------ old releases ------------------------------
|
||||||
|
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue