- Added YouTube reference to new movie.

- Corrected coloration in "task calendar" command.
This commit is contained in:
Paul Beckingham 2008-06-03 23:16:40 -04:00
parent 74e77e4dc5
commit 787b3b4a51
4 changed files with 5 additions and 6 deletions

2
README
View file

@ -22,7 +22,7 @@ task movie on YouTube:
or the new improved one:
http:/www.youtube.com/watch?v=????????????
http://www.youtube.com/watch?v=D2Kn4DMOVSw
Either will give you a fairly good idea of what task is capable of, and whether
it fits in to your way of working. As a command line application, task is not

View file

@ -8,7 +8,7 @@ A lot has happened since then, and the task program has been slowly improving
thanks to feedback from some early testers, and continuous use by me. Today,
I have uploaded a new movie:
http:/www.youtube.com/watch?v=????????????
http://www.youtube.com/watch?v=D2Kn4DMOVSw
This movie includes most of the changes and improvements to task, but behind
the scenes are the biggest changes. There was a rewrite of the underlying

View file

@ -1,4 +1,4 @@
# Welcome to "task". Hello, and welcome to this quick demo of the task program.
Hello, and welcome to this quick demo of the task program.
task add do laundry Let's add some tasks
I need to do laundry
@ -87,10 +87,9 @@ task start 1 Started tasks can be used as reminde
of what you are supposed to be doing
task active They show up as active
task done 1
task done 1 Let's clear out a couple
task li
task done 3
task done 1
task active
task summary Summary shows progress on all projects

View file

@ -1856,7 +1856,7 @@ std::string renderMonth (
due.year () == year)
{
table.setCellFg (row, dow + 1, Text::black);
table.setCellBg (row, dow + 1, d < today.day () ? Text::on_red : Text::on_yellow);
table.setCellBg (row, dow + 1, due < today ? Text::on_red : Text::on_yellow);
}
}