fix: add camera entitlement to macOS signing

This commit is contained in:
Peter Steinberger
2026-01-02 17:31:59 +01:00
parent 8b27c03472
commit 2a6248dad6
2 changed files with 7 additions and 0 deletions

View File

@@ -75,6 +75,7 @@
- macOS menu: show multi-line gateway error details, add an always-visible gateway row, avoid duplicate gateway status rows, suppress transient `cancelled` device refresh errors, and auto-recover the control channel on disconnect.
- macOS: log health refresh failures and recovery to make gateway issues easier to diagnose.
- macOS codesign: skip hardened runtime for ad-hoc signing and avoid empty options args (#70) — thanks @petter-b
- macOS codesign: include camera entitlement so permission prompts work in the menu bar app.
- macOS packaging: move rpath config into swift build for reliability (#69) — thanks @petter-b
- macOS: prioritize main bundle for device resources to prevent crash (#73) — thanks @petter-b
- macOS remote: route settings through gateway config and avoid local config reads in remote mode.

View File

@@ -98,6 +98,8 @@ cat > "$ENT_TMP_BASE" <<'PLIST'
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
</dict>
</plist>
PLIST
@@ -111,6 +113,8 @@ cat > "$ENT_TMP_APP_BASE" <<'PLIST'
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
</dict>
</plist>
PLIST
@@ -139,6 +143,8 @@ cat > "$ENT_TMP_APP" <<'PLIST'
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
</dict>
</plist>
PLIST