Skip to content

Commit

Permalink
Bugfix for finish --tag=
Browse files Browse the repository at this point in the history
  • Loading branch information
ttscoff committed Jul 3, 2021
1 parent d745bb8 commit 4b15619
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 1.0.54

#### FIXED

- Bugfix for `finish --tag=TAG`

### 1.0.53

#### NEW
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<!--GITHUB-->
See <https://brettterpstra.com/projects/doing/> for the download.
<!--JEKYLL
{% download 117 %}
-->
<!--END GITHUB-->

Evan Lovely has [created an Alfred workflow as well](http://www.evanlovely.com/blog/technology/alfred-for-terpstras-doing/).

Expand Down
2 changes: 1 addition & 1 deletion lib/doing/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Doing
VERSION = '1.0.53'
VERSION = '1.0.54'
end
1 change: 1 addition & 0 deletions lib/doing/wwid.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 4b15619

Please sign in to comment.