mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
- Added YouTube reference to new movie.
- Corrected coloration in "task calendar" command.
This commit is contained in:
parent
74e77e4dc5
commit
787b3b4a51
4 changed files with 5 additions and 6 deletions
2
README
2
README
|
@ -22,7 +22,7 @@ task movie on YouTube:
|
||||||
|
|
||||||
or the new improved one:
|
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
|
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
|
it fits in to your way of working. As a command line application, task is not
|
||||||
|
|
|
@ -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,
|
thanks to feedback from some early testers, and continuous use by me. Today,
|
||||||
I have uploaded a new movie:
|
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
|
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
|
the scenes are the biggest changes. There was a rewrite of the underlying
|
||||||
|
|
|
@ -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
|
task add do laundry Let's add some tasks
|
||||||
I need to do laundry
|
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
|
of what you are supposed to be doing
|
||||||
|
|
||||||
task active They show up as active
|
task active They show up as active
|
||||||
task done 1
|
task done 1 Let's clear out a couple
|
||||||
task li
|
task li
|
||||||
task done 3
|
task done 3
|
||||||
task done 1
|
|
||||||
task active
|
task active
|
||||||
|
|
||||||
task summary Summary shows progress on all projects
|
task summary Summary shows progress on all projects
|
||||||
|
|
|
@ -1856,7 +1856,7 @@ std::string renderMonth (
|
||||||
due.year () == year)
|
due.year () == year)
|
||||||
{
|
{
|
||||||
table.setCellFg (row, dow + 1, Text::black);
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue