Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
Minor update; no new features

+ Updated Homebrew search paths
+ Fixed an updated URL for documentation
  • Loading branch information
HilbertGilbertson committed Jan 30, 2022
1 parent f9cffbe commit a339a2d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
10 changes: 8 additions & 2 deletions info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,13 @@
<string>Enter Date/Time</string>
<key>script</key>
<string>#!/bin/bash
eval "$(/opt/homebrew/bin/brew shellenv)"
if [ -f "/opt/homebrew/bin/brew" ]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
elif [ -f "/usr/local/bin/brew" ]; then
eval "$(/usr/local/bin/brew shellenv)"
elif [ -f "/opt/local/bin/brew" ]; then
eval "$(/opt/local/bin/brew shellenv)"
fi
php whencord.php $1</string>
<key>scriptargtype</key>
<integer>1</integer>
Expand Down Expand Up @@ -406,7 +412,7 @@ Also don't forget to set a quick hotkey (e.g. ⌘T) in the workflow settings!</s
<string></string>
</dict>
<key>version</key>
<string>1.0.1</string>
<string>1.0.2</string>
<key>webaddress</key>
<string>https://github.com/HilbertGilbertson/alfred-whencord</string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alfred-whencord",
"version": "1.0.1",
"version": "1.0.2",
"author": "HilbertGilbertson",
"homepage": "https://github.com/HilbertGilbertson/alfred-whencord",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion whencord.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
listItem("NodeJS could not be located", "Please set the path to node in the workflow config.",
false, false),
listItem("Installing NodeJS", null,
"https://github.com/HilbertGilbertson/alfred-whencord#install-nodejs-if-you-dont-already-have-it",
"https://github.com/HilbertGilbertson/alfred-whencord#install-nodejs-with-homebrew-if-you-dont-already-have-it",
true, "url", "url"),
listItem("Configuring Whencord", null,
"https://github.com/HilbertGilbertson/alfred-whencord#configuration", true, "url",
Expand Down

0 comments on commit a339a2d

Please sign in to comment.