Skip to content

Commit

Permalink
Merge pull request #19 from stuartcryan/hotfix/connect-free-hanging-item
Browse files Browse the repository at this point in the history
Hotfix/connect free hanging item
  • Loading branch information
stuartcryan authored Jan 12, 2018
2 parents 4d8d7b7 + a8740ea commit aeccbf8
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 17 deletions.
Binary file modified Advanced_Google_Maps_Search.alfredworkflow
Binary file not shown.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ Please review the workflow for each of the hooks available.
5. Submit a pull request :D

## History
Version 2.0.1
* Fixed dirtw bike command... it hadn't been connected... after all the testing! #oops

Version 2.0.0
* Renamed workflow to 'Advanced Google and Apple Maps Workflow for Alfred'. Left bundleID intact deliberately
Expand Down
40 changes: 23 additions & 17 deletions workflow/info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,19 @@
<false/>
</dict>
</array>
<key>536F9893-8043-4B58-B9FA-8853E4ECFFB7</key>
<array>
<dict>
<key>destinationuid</key>
<string>3D01087F-724D-44AA-87E3-BDB3635FA044</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>5684FF40-40FC-4803-B5D4-51B9FFB6170E</key>
<array>
<dict>
Expand Down Expand Up @@ -2155,7 +2168,7 @@ print $output;</string>
<key>config</key>
<dict>
<key>argument</key>
<string>'{query}','from','here'</string>
<string>{query},from,here</string>
<key>variables</key>
<dict/>
</dict>
Expand Down Expand Up @@ -2376,7 +2389,7 @@ print $output;</string>
<key>config</key>
<dict>
<key>argument</key>
<string>'{query}','to','here'</string>
<string>{query},to,here</string>
<key>variables</key>
<dict/>
</dict>
Expand Down Expand Up @@ -2589,7 +2602,7 @@ print $output;</string>
<key>config</key>
<dict>
<key>argument</key>
<string>'{query}','from','work'</string>
<string>{query},from,work</string>
<key>variables</key>
<dict/>
</dict>
Expand Down Expand Up @@ -2812,14 +2825,7 @@ require "./granularDirModifier.pl";
my $output;
my $query = "{query}";
my @splitQuery = split("','", $query);
for (@splitQuery) {
#strip out any remaining ' characters
s/'//g;
}
my @splitQuery = split(',', $query);
$output=granularDir(@splitQuery);
print $output;</string>
Expand Down Expand Up @@ -2849,7 +2855,7 @@ print $output;</string>
<key>config</key>
<dict>
<key>argument</key>
<string>'{query}','to','work'</string>
<string>{query},to,work</string>
<key>variables</key>
<dict/>
</dict>
Expand Down Expand Up @@ -3062,7 +3068,7 @@ print $output;</string>
<key>config</key>
<dict>
<key>argument</key>
<string>'{query}','from','home'</string>
<string>{query},from,home</string>
<key>variables</key>
<dict/>
</dict>
Expand Down Expand Up @@ -3275,7 +3281,7 @@ print $output;</string>
<key>config</key>
<dict>
<key>argument</key>
<string>'{query}','to','home'</string>
<string>{query},to,home</string>
<key>variables</key>
<dict/>
</dict>
Expand Down Expand Up @@ -3361,7 +3367,7 @@ print $output;</string>
<key>config</key>
<dict>
<key>argument</key>
<string>'home','to','work'</string>
<string>home,to,work</string>
<key>variables</key>
<dict/>
</dict>
Expand Down Expand Up @@ -3439,7 +3445,7 @@ print $output;</string>
<key>config</key>
<dict>
<key>argument</key>
<string>'work','to','home'</string>
<string>work,to,home</string>
<key>variables</key>
<dict/>
</dict>
Expand Down Expand Up @@ -4842,7 +4848,7 @@ Please review the workflow for each of the hooks available.</string>
<string>googleLocal</string>
</array>
<key>version</key>
<string>2.0.0</string>
<string>2.0.1</string>
<key>webaddress</key>
<string>http://technicalnotebook.com</string>
</dict>
Expand Down

0 comments on commit aeccbf8

Please sign in to comment.