Skip to content

Commit ab429ab

Browse files
committed
tag v0.2.2
1 parent 5022f20 commit ab429ab

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ An ultra-fast Lorem Ipsum workflow for Alfred 4.
1010

1111
## Installation
1212

13-
1. [Download the latest version](https://github.com/tillkruss/alfred-lorem-ipsum/releases/download/v0.2.1/Lorem.Ipsum.alfredworkflow)
13+
1. [Download the latest version](https://github.com/tillkruss/alfred-lorem-ipsum/releases/download/v0.2.2/Lorem.Ipsum.alfredworkflow)
1414
2. Install the workflow by double-clicking the `.alfredworkflow` file
1515
3. You can add the workflow to a category, then click "Import" to finish importing. You'll now see the workflow listed in the left sidebar of your Workflows preferences pane.
1616

info.plist

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,13 @@
111111
<key>runningsubtext</key>
112112
<string>Loading...</string>
113113
<key>script</key>
114-
<string>if [ -f "/opt/homebrew/bin/php" ]; then
114+
<string>if [ -x "/opt/homebrew/bin/php" ]; then
115115
/opt/homebrew/bin/php loremipsum.php "words" "{query}"
116-
elif [ -f "/usr/local/bin/php" ]; then
116+
elif [ -x "/usr/local/bin/php" ]; then
117117
/usr/local/bin/php loremipsum.php "words" "{query}"
118-
elif [ -f "/usr/bin/php" ]; then
118+
elif [ -x "/usr/bin/php" ]; then
119119
/usr/bin/php loremipsum.php "words" "{query}"
120-
elif [ -f "$(which php)" ]; then
120+
elif [ -x "$(which php)" ]; then
121121
$(which php) loremipsum.php "words" "{query}"
122122
else
123123
php loremipsum.php "words" "{query}"
@@ -189,13 +189,13 @@ fi</string>
189189
<key>runningsubtext</key>
190190
<string>Loading...</string>
191191
<key>script</key>
192-
<string>if [ -f "/opt/homebrew/bin/php" ]; then
192+
<string>if [ -x "/opt/homebrew/bin/php" ]; then
193193
/opt/homebrew/bin/php loremipsum.php "sentences" "{query}"
194-
elif [ -f "/usr/local/bin/php" ]; then
194+
elif [ -x "/usr/local/bin/php" ]; then
195195
/usr/local/bin/php loremipsum.php "sentences" "{query}"
196-
elif [ -f "/usr/bin/php" ]; then
196+
elif [ -x "/usr/bin/php" ]; then
197197
/usr/bin/php loremipsum.php "sentences" "{query}"
198-
elif [ -f "$(which php)" ]; then
198+
elif [ -x "$(which php)" ]; then
199199
$(which php) loremipsum.php "sentences" "{query}"
200200
else
201201
php loremipsum.php "sentences" "{query}"
@@ -277,13 +277,13 @@ fi</string>
277277
<key>runningsubtext</key>
278278
<string>Loading...</string>
279279
<key>script</key>
280-
<string>if [ -f "/opt/homebrew/bin/php" ]; then
280+
<string>if [ -x "/opt/homebrew/bin/php" ]; then
281281
/opt/homebrew/bin/php loremipsum.php "paragraphs" "{query}"
282-
elif [ -f "/usr/local/bin/php" ]; then
282+
elif [ -x "/usr/local/bin/php" ]; then
283283
/usr/local/bin/php loremipsum.php "paragraphs" "{query}"
284-
elif [ -f "/usr/bin/php" ]; then
284+
elif [ -x "/usr/bin/php" ]; then
285285
/usr/bin/php loremipsum.php "paragraphs" "{query}"
286-
elif [ -f "$(which php)" ]; then
286+
elif [ -x "$(which php)" ]; then
287287
$(which php) loremipsum.php "paragraphs" "{query}"
288288
else
289289
php loremipsum.php "paragraphs" "{query}"
@@ -367,7 +367,7 @@ Instead of typing you may of course use Alfred's hotkeys to navigate faster.</st
367367
<key>variablesdontexport</key>
368368
<array/>
369369
<key>version</key>
370-
<string>0.2.1</string>
370+
<string>0.2.2</string>
371371
<key>webaddress</key>
372372
<string>https://till.im</string>
373373
</dict>

0 commit comments

Comments
 (0)