Files
spaceshell/app/src-tauri/Entitlements.plist
T
vasyansk ee845e15b3 Add full disk access checks and settings
Add background themes and custom images

Add shell command logging toggle

Add UTF-8 locale guarantee for PTY

Add Claude hook settings injection

Add hotkey system for GUI

Add glass panel styling

Add search disabled state for agent panels

Add zoom toggle command

Add device report filtering

Add entitlements for notarization

Update version to 0.1.27
2026-06-15 22:26:06 +07:00

17 lines
707 B
Plaintext

<?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>
<!-- WKWebView's JavaScriptCore needs JIT + writable/executable memory under the
hardened runtime required for notarization. -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- The bundle embeds the spaceshd sidecar (same Team) and loads system/webview
components; relax library validation so loading never trips the hardened runtime. -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
</dict>
</plist>