diff options
| author | Saeed Vaziry <[email protected]> | 2026-01-07 10:56:46 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-07 17:56:46 +0800 |
| commit | 24c933ae605b8637482b0f63b8a2555954c9a86a (patch) | |
| tree | 084d58d2740e68c87afe227af7b2ea0a9d8a44d8 | |
| parent | 2b7a021ba3015e4b2e7467874aa60cfd159e553e (diff) | |
| download | opencode-24c933ae605b8637482b0f63b8a2555954c9a86a.tar.gz opencode-24c933ae605b8637482b0f63b8a2555954c9a86a.zip | |
Add audio input and camera permissions to entitlements (#7117)
Co-authored-by: Brendan Allan <[email protected]>
| -rw-r--r-- | packages/desktop/src-tauri/entitlements.plist | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/desktop/src-tauri/entitlements.plist b/packages/desktop/src-tauri/entitlements.plist index afa54db33..6b2c42e0d 100644 --- a/packages/desktop/src-tauri/entitlements.plist +++ b/packages/desktop/src-tauri/entitlements.plist @@ -12,5 +12,18 @@ <true/> <key>com.apple.security.cs.disable-library-validation</key> <true/> + <key>com.apple.security.automation.apple-events</key> + <true/> + <key>com.apple.security.device.audio-input</key> + <true/> + <key>com.apple.security.device.camera</key> + <true/> + <key>com.apple.security.personal-information.addressbook</key> + <true/> + <key>com.apple.security.personal-information.calendars</key> + <true/> + <key>com.apple.security.personal-information.location</key> + <true/> + <key>com.apple.security.personal-information.photos-library</key> </dict> </plist> |
