Skip to content

Commit

Permalink
🐛 Fix #2 Make app run on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Dec 22, 2022
1 parent edf59a3 commit e7bd146
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_VERSION=2.1.9
APP_VERSION=2.1.10
GITHUB_REPOSITORY_URL=https://github.com/techouse/alfred-tailwindcss-docs
SUPPORTED_VERSIONS=v0,v1,v2,v3
ALGOLIA_SEARCH_INDEX=
Expand Down
32 changes: 19 additions & 13 deletions info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>./docs -u</string>
<string>arch -x86_64 ./docs -u</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
Expand Down Expand Up @@ -108,7 +108,7 @@
<key>runningsubtext</key>
<string>Fetching the documentation ...</string>
<key>script</key>
<string>./docs -q "{query}"</string>
<string>arch -x86_64 ./docs -q "{query}"</string>
<key>scriptargtype</key>
<integer>0</integer>
<key>scriptfile</key>
Expand Down Expand Up @@ -151,6 +151,8 @@
</array>
<key>elselabel</key>
<string>Open URL</string>
<key>hideelse</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.utility.conditional</string>
Expand All @@ -164,12 +166,14 @@
<dict>
<key>browser</key>
<string></string>
<key>skipqueryencode</key>
<false/>
<key>skipvarencode</key>
<false/>
<key>spaces</key>
<string></string>
<key>url</key>
<string>{query}</string>
<key>utf8</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.action.openurl</string>
Expand All @@ -186,36 +190,38 @@
<key>32B3C427-9180-4209-9432-B2890069F63E</key>
<dict>
<key>xpos</key>
<integer>640</integer>
<real>640</real>
<key>ypos</key>
<integer>115</integer>
<real>115</real>
</dict>
<key>54CB9D8A-3FC3-4570-9CDC-CBE9197102B7</key>
<dict>
<key>xpos</key>
<integer>430</integer>
<real>430</real>
<key>ypos</key>
<integer>280</integer>
<real>280</real>
</dict>
<key>709668B9-4793-4106-9DFE-A58EF9BFA3EE</key>
<dict>
<key>xpos</key>
<integer>640</integer>
<real>640</real>
<key>ypos</key>
<integer>410</integer>
<real>410</real>
</dict>
<key>A6C3EF08-1D63-4571-9A71-253A36551FB4</key>
<dict>
<key>xpos</key>
<integer>210</integer>
<real>210</real>
<key>ypos</key>
<integer>260</integer>
<real>260</real>
</dict>
</dict>
<key>userconfigurationconfig</key>
<array/>
<key>variablesdontexport</key>
<array/>
<key>version</key>
<string>2.1.9</string>
<string>2.1.10</string>
<key>webaddress</key>
<string>https://github.com/techouse</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Search the Tailwind CSS documentation using Alfred
# Prevent accidental publishing to pub.dev.
publish_to: 'none'

version: 2.1.9
version: 2.1.10

environment:
sdk: '>=2.17.0 <3.0.0'
Expand Down

0 comments on commit e7bd146

Please sign in to comment.