diff --git a/CHANGELOG.md b/CHANGELOG.md index 59a58fee..7f4374b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 1.0.54 + +#### FIXED + +- Bugfix for `finish --tag=TAG` + ### 1.0.53 #### NEW diff --git a/README.md b/README.md index b2215a2c..860c9c85 100644 --- a/README.md +++ b/README.md @@ -579,11 +579,16 @@ __Fish:__ See the file [`doing.fish`](https://github.com/ttscoff/doing/blob/mast The LaunchBar action requires that `doing` be available in `/usr/local/bin/doing`. If it's not (because you're using RVM or similar), you'll need to symlink it there. Running the action with Return will show the latest 9 items from Currently, along with any time intervals recorded, and includes a submenu of Timers for each tag. -Pressing Spacebar and typing allows you to add a new entry to currently. You an also trigger a custom show command by typing "show [section/tag]" and hitting return. +Pressing Spacebar and typing allows you to add a new entry to currently. You an also trigger a custom show command by typing "show [section/tag]" and hitting return. Include any command line flags at the end of the string, and if you add text in parenthesis, it will be processed as a note on the entry. Point of interest, the LaunchBar Action makes use of the `-o json` flag for outputting JSON to the action's script for parsing. + See for the download. + + Evan Lovely has [created an Alfred workflow as well](http://www.evanlovely.com/blog/technology/alfred-for-terpstras-doing/). diff --git a/lib/doing/version.rb b/lib/doing/version.rb index 19775784..68262688 100644 --- a/lib/doing/version.rb +++ b/lib/doing/version.rb @@ -1,3 +1,3 @@ module Doing - VERSION = '1.0.53' + VERSION = '1.0.54' end diff --git a/lib/doing/wwid.rb b/lib/doing/wwid.rb index f1b3b8ea..61cb81b8 100755 --- a/lib/doing/wwid.rb +++ b/lib/doing/wwid.rb @@ -8,6 +8,7 @@ ## class Hash def has_tags?(tags, bool = 'AND') + tags = tags.split(/ *, */) if tags.is_a? String item = self case bool when 'AND'