-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use separate bundle identifier in dev
- Loading branch information
1 parent
bccbfa2
commit 9012e6c
Showing
5 changed files
with
65 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDocumentTypes</key> | ||
<array> | ||
<dict> | ||
<key>CFBundleTypeExtensions</key> | ||
<array> | ||
<string>cap</string> | ||
</array> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>icon.icns</string> | ||
<key>CFBundleTypeName</key> | ||
<string>Cap Recording</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
<key>LSHandlerRank</key> | ||
<string>Default</string> | ||
<key>LSTypeIsPackage</key> | ||
<true/> | ||
</dict> | ||
</array> | ||
<key>NSCameraUsageDescription</key> | ||
<string>Request camera access for WebRTC</string> | ||
<key>NSMicrophoneUsageDescription</key> | ||
<string>Request microphone access for WebRTC</string> | ||
<key>NSScreenCaptureUsageDescription</key> | ||
<string>Request screen capture access</string> | ||
<key>CFBundleURLTypes</key> | ||
<array> | ||
<dict> | ||
<key>CFBundleURLName</key> | ||
<string>so.cap.desktop</string> | ||
<key>CFBundleURLSchemes</key> | ||
<array> | ||
<string>caprecorder</string> | ||
</array> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"$schema": "../node_modules/@tauri-apps/cli/schema.json", | ||
"productName": "Cap", | ||
"identifier": "so.cap.desktop", | ||
"plugins": { | ||
"updater": { | ||
"endpoints": [ | ||
"https://cdn.crabnebula.app/update/cap/cap/{{target}}-{{arch}}/{{current_version}}" | ||
], | ||
"dialog": true, | ||
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEUyOTAzOTdFNzJFQkRFOTMKUldTVDN1dHlmam1RNHFXb1VYTXlrQk1iMFFkcjN0YitqZlA5WnZNY0ZtQ1dvM1dxK211M3VIYUQK" | ||
} | ||
}, | ||
"bundle": { | ||
"macOS": { | ||
"entitlements": "Info.prod.plist" | ||
} | ||
} | ||
} |