Skip to content

Commit

Permalink
Fix issue with not being able to open in browser
Browse files Browse the repository at this point in the history
  • Loading branch information
billrobclark committed Nov 12, 2018
1 parent 2c4f780 commit 52d5924
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ can just use your hotkey for [Alfred](https://www.alfredapp.com/) and quick look

## Installation

1. [Download the latest version](https://github.com/billrobclark/alfred-novadoc-search/releases/download/v1.0/Nova.Docs.alfredworkflow)
1. [Download the latest version](https://github.com/billrobclark/alfred-novadoc-search/releases/download/v1.0.1/Nova.Docs.alfredworkflow)
2. Install the workflow by double-clicking and opening the `.alfredworkflow` file that you just downloaded.
3. You can add the workflow to a category, then click "Import" to finish importing.
4. You'll now see the workflow listed there on the left sidebar of your Alfred Workflows preferences.
Expand All @@ -24,4 +24,4 @@ nova resource
```

You can press `⌘Y` to Quick Look the result, or you can press `<enter>` to open the
Nova documentation page in your default web browser.
Nova documentation page in your default web browser.
5 changes: 0 additions & 5 deletions info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,6 @@ Either press `⌘Y` to Quick Look the result, or you can press enter to open it
<integer>90</integer>
</dict>
</dict>
<key>variables</key>
<dict>
<key>branch</key>
<string>master</string>
</dict>
<key>version</key>
<string>1.0.1</string>
<key>webaddress</key>
Expand Down
5 changes: 3 additions & 2 deletions nova-search.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
->uid($hit['objectID'])
->title($title)
->autocomplete($title)
->arg($hit ['url'])
->subtitle($hit['subtext'])
->arg($hit['url'])
->quicklookurl($hit['url'])
->valid(true);
}

echo $workflow->output();
echo $workflow->output();

0 comments on commit 52d5924

Please sign in to comment.