Skip to content

Commit

Permalink
Merge pull request #26 from stephenmckinney/tmux-fix
Browse files Browse the repository at this point in the history
Minor fix bug release for tmux status bar coloring
  • Loading branch information
stephenmckinney committed Dec 16, 2012
2 parents 0e4c45f + c4c4992 commit 8cc4223
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
@@ -1,3 +1,8 @@
2.0.1 / 2012-12-16
==================

* Minor fix bug release for tmux status bar coloring.

2.0.0 / 2012-12-16
==================

Expand Down
23 changes: 13 additions & 10 deletions README.md
Expand Up @@ -45,34 +45,37 @@ Taken from `pomo help`:

* Get started by adding a task:

$ pomo add "Fix IE stying issues"
$ pomo add "Fix IE6 stying issues"

And another:

$ pomo add "Destroy IE" --description "because IE is terrible"
$ pomo add "Destroy IE6" --description "because IE6 is terrible"

* List your tasks (or use `pomo` which defaults to `pomo list`):

$ pomo list
0. Fix IE stying issues : 25 minutes
1. Destroy IE : 25 minutes
0. Fix IE6 stying issues : 25 minutes
1. Destroy IE6 : 25 minutes

* Start the first incomplete task:

$ pomo start
Started Fix IE stying issues, you have 25 minutes :)

A notification window will display:

![Pomo OS X Notification](http://i.imgur.com/iEfdZ.png)

* Alternatively, you can start the first incomplete task with a progress bar:

$ pomo start -p
Started Fix IE stying issues, you have 25 minutes :)
Started Fix IE6 stying issues, you have 25 minutes :)
(=........................) 24 minutes remaining

* Once you have completed the task, list again (alternatively `pomo ls`):

$ pomo ls
✓ 0. Fix IE stying issues : 25 minutes
1. Destroy IE : 25 minutes
✓ 0. Fix IE6 stying issues : 25 minutes
1. Destroy IE6 : 25 minutes
* Or take a break:

Expand All @@ -83,12 +86,12 @@ Taken from `pomo help`:
* List only remaining tasks:

$ pomo ls --incomplete
1. Destroy IE : 25 minutes
1. Destroy IE6 : 25 minutes
* List only completed tasks:

$ pomo ls --complete
✓ 0. Fix IE stying issues : 25 minutes
✓ 0. Fix IE6 stying issues : 25 minutes

* At any time mid-task you may terminate pomo via CTRL + C, at which
time you may manually complete the task:
Expand Down
2 changes: 1 addition & 1 deletion lib/pomo/task.rb
Expand Up @@ -147,7 +147,7 @@ def tmux_time(time)
"#{time}:00"
when 1..5
"#[default]#[fg=red]#{time}:00#[default]"
when 6..00
when 6..100
"#[default]#[fg=green]#{time}:00#[default]"
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/pomo/version.rb
@@ -1,4 +1,4 @@

module Pomo
VERSION = '2.0.0'
VERSION = '2.0.1'
end

0 comments on commit 8cc4223

Please sign in to comment.