diff --git a/README b/README index 943283ac4..09a3e1ddd 100644 --- a/README +++ b/README @@ -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 diff --git a/announcement.txt b/announcement.txt index 8e23c00a6..e1cf2fbea 100644 --- a/announcement.txt +++ b/announcement.txt @@ -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 diff --git a/script.txt b/script.txt index ce03a8966..e94233329 100644 --- a/script.txt +++ b/script.txt @@ -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 diff --git a/src/task.cpp b/src/task.cpp index fbdeb0e67..b8f03aa87 100644 --- a/src/task.cpp +++ b/src/task.cpp @@ -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); } }