Skip to content

Commit

Permalink
tag v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkruss committed Jan 24, 2022
1 parent 5022f20 commit ab429ab
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ An ultra-fast Lorem Ipsum workflow for Alfred 4.

## Installation

1. [Download the latest version](https://github.com/tillkruss/alfred-lorem-ipsum/releases/download/v0.2.1/Lorem.Ipsum.alfredworkflow)
1. [Download the latest version](https://github.com/tillkruss/alfred-lorem-ipsum/releases/download/v0.2.2/Lorem.Ipsum.alfredworkflow)
2. Install the workflow by double-clicking the `.alfredworkflow` file
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.

Expand Down
26 changes: 13 additions & 13 deletions info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@
<key>runningsubtext</key>
<string>Loading...</string>
<key>script</key>
<string>if [ -f "/opt/homebrew/bin/php" ]; then
<string>if [ -x "/opt/homebrew/bin/php" ]; then
/opt/homebrew/bin/php loremipsum.php "words" "{query}"
elif [ -f "/usr/local/bin/php" ]; then
elif [ -x "/usr/local/bin/php" ]; then
/usr/local/bin/php loremipsum.php "words" "{query}"
elif [ -f "/usr/bin/php" ]; then
elif [ -x "/usr/bin/php" ]; then
/usr/bin/php loremipsum.php "words" "{query}"
elif [ -f "$(which php)" ]; then
elif [ -x "$(which php)" ]; then
$(which php) loremipsum.php "words" "{query}"
else
php loremipsum.php "words" "{query}"
Expand Down Expand Up @@ -189,13 +189,13 @@ fi</string>
<key>runningsubtext</key>
<string>Loading...</string>
<key>script</key>
<string>if [ -f "/opt/homebrew/bin/php" ]; then
<string>if [ -x "/opt/homebrew/bin/php" ]; then
/opt/homebrew/bin/php loremipsum.php "sentences" "{query}"
elif [ -f "/usr/local/bin/php" ]; then
elif [ -x "/usr/local/bin/php" ]; then
/usr/local/bin/php loremipsum.php "sentences" "{query}"
elif [ -f "/usr/bin/php" ]; then
elif [ -x "/usr/bin/php" ]; then
/usr/bin/php loremipsum.php "sentences" "{query}"
elif [ -f "$(which php)" ]; then
elif [ -x "$(which php)" ]; then
$(which php) loremipsum.php "sentences" "{query}"
else
php loremipsum.php "sentences" "{query}"
Expand Down Expand Up @@ -277,13 +277,13 @@ fi</string>
<key>runningsubtext</key>
<string>Loading...</string>
<key>script</key>
<string>if [ -f "/opt/homebrew/bin/php" ]; then
<string>if [ -x "/opt/homebrew/bin/php" ]; then
/opt/homebrew/bin/php loremipsum.php "paragraphs" "{query}"
elif [ -f "/usr/local/bin/php" ]; then
elif [ -x "/usr/local/bin/php" ]; then
/usr/local/bin/php loremipsum.php "paragraphs" "{query}"
elif [ -f "/usr/bin/php" ]; then
elif [ -x "/usr/bin/php" ]; then
/usr/bin/php loremipsum.php "paragraphs" "{query}"
elif [ -f "$(which php)" ]; then
elif [ -x "$(which php)" ]; then
$(which php) loremipsum.php "paragraphs" "{query}"
else
php loremipsum.php "paragraphs" "{query}"
Expand Down Expand Up @@ -367,7 +367,7 @@ Instead of typing you may of course use Alfred's hotkeys to navigate faster.</st
<key>variablesdontexport</key>
<array/>
<key>version</key>
<string>0.2.1</string>
<string>0.2.2</string>
<key>webaddress</key>
<string>https://till.im</string>
</dict>
Expand Down

0 comments on commit ab429ab

Please sign in to comment.