Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Xcode Extension #14

Merged
merged 39 commits into from
Oct 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
bebb9f1
Added xcode-projects Extension
SvenTiigi Oct 13, 2021
a1d6ec5
Updated command name to xcode projects
SvenTiigi Oct 13, 2021
863a08f
Refactored command-icon to icon
SvenTiigi Oct 13, 2021
feeccbb
Updated wording
SvenTiigi Oct 13, 2021
1ab15c3
Updated SearchBar Placeholder
SvenTiigi Oct 13, 2021
6d7d0bc
Added support for Swift Playgrounds
SvenTiigi Oct 14, 2021
a20cde1
Added accessory title to List Item
SvenTiigi Oct 14, 2021
f6334d6
Merged XcodeProjects loading in just one useEffect execution
SvenTiigi Oct 14, 2021
8514f92
Renamed xcode-projects extension to xcode and added releases command
SvenTiigi Oct 14, 2021
4ee74b6
Added async version of exec
SvenTiigi Oct 14, 2021
05ca202
Added Simulators command
SvenTiigi Oct 14, 2021
8298845
Wrap XcodeSimulatorService in state instead of global const
SvenTiigi Oct 14, 2021
08ef0f5
Added documentation
SvenTiigi Oct 14, 2021
656d472
Added Xcode Simulator Icon
SvenTiigi Oct 14, 2021
c3c143d
Addded Apps command
SvenTiigi Oct 15, 2021
75ddb51
Added check if Cache is not empty
SvenTiigi Oct 15, 2021
eca9350
On error set empty applications
SvenTiigi Oct 15, 2021
71e3af0
Retrieve Bundle Identifier from Info.plist instead of retrieving it a…
SvenTiigi Oct 15, 2021
8ba0d67
Refactored push action to initialize component only when needed
SvenTiigi Oct 15, 2021
b586334
Fixed Navigation bug
SvenTiigi Oct 15, 2021
0294233
Added main extension icon
SvenTiigi Oct 15, 2021
269e625
Added keywords
SvenTiigi Oct 15, 2021
37cd20f
Updated icon to proper size 512x512 according to review guidelines
SvenTiigi Oct 15, 2021
5dfc6f8
Added Create Swift Package Command
SvenTiigi Oct 15, 2021
653cbd8
Set empty XcodeReleases on error in case no previous releases are ava…
SvenTiigi Oct 15, 2021
b9f1853
Set empty XcodeProjects in case of an error if no previous projects a…
SvenTiigi Oct 15, 2021
7a03cd1
Send empty array of XcodeSimulators in case of an error
SvenTiigi Oct 15, 2021
0eef610
Added Clear Derived Data command
SvenTiigi Oct 15, 2021
253ca3d
Updated command order
SvenTiigi Oct 15, 2021
2ae9bde
Removed trailing slash
SvenTiigi Oct 15, 2021
41f72e8
Log error
SvenTiigi Oct 15, 2021
3ae32d2
Added Clear SPM cache command
SvenTiigi Oct 15, 2021
04095f9
Updated naming convention for commands
SvenTiigi Oct 15, 2021
2bc84d7
Moved models in distinct child directories and updated import paths
SvenTiigi Oct 15, 2021
5ed8666
Added tildify dependency
SvenTiigi Oct 15, 2021
7c5bab0
tildify Xcode project path
SvenTiigi Oct 15, 2021
9a8e1d8
Updated title and subtitle of commands according to suggestions and g…
SvenTiigi Oct 15, 2021
41b5ba5
Fixed author name with raycast username
SvenTiigi Oct 15, 2021
cc51290
Updated description
SvenTiigi Oct 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions extensions/xcode/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"root": true,
"env": {
"es2020": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"rules": {
"no-case-declarations": "off"
}
}
4 changes: 4 additions & 0 deletions extensions/xcode/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
Binary file added extensions/xcode/assets/app-icon-placeholder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/swift-package.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/swift-playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/xcode-12-beta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/xcode-12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/xcode-13-beta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/xcode-13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/xcode-project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/xcode-simulator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/xcode/assets/xcode-workspace.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading