36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
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>
|
||
|
|
<!--
|
||
|
|
Intentionally NOT sandboxed. This app is distributed outside the Mac App Store.
|
||
|
|
Do not add com.apple.security.app-sandbox.
|
||
|
|
|
||
|
|
These entitlements are commonly required for Electron/Chromium JIT behavior
|
||
|
|
under hardened runtime, plus access the app already relies on (microphone for
|
||
|
|
voice notes / dictation, network client for sidecar + remote hosts, shell
|
||
|
|
probing for PATH inheritance).
|
||
|
|
-->
|
||
|
|
<key>com.apple.security.cs.allow-jit</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.cs.disable-executable-page-protection</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.cs.disable-library-validation</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.device.audio-input</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.network.client</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.network.server</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.files.user-selected.read-write</key>
|
||
|
|
<true/>
|
||
|
|
<key>com.apple.security.inherit</key>
|
||
|
|
<true/>
|
||
|
|
</dict>
|
||
|
|
</plist>
|