Files
fourdst/electron/entitlements.mac.plist

46 lines
1.5 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>
<!-- Allow JIT compilation for V8 JavaScript engine -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<!-- Allow unsigned executable memory for native modules -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- Disable library validation to allow loading of bundled libraries -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Allow arbitrary loads for network requests -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Allow outgoing network connections -->
<key>com.apple.security.network.server</key>
<true/>
<!-- Allow file system access -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<!-- Allow access to Downloads folder -->
<key>com.apple.security.files.downloads.read-write</key>
<true/>
<!-- Allow subprocess execution for Python backend -->
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<!-- Allow camera access (if needed for future features) -->
<key>com.apple.security.device.camera</key>
<false/>
<!-- Allow microphone access (if needed for future features) -->
<key>com.apple.security.device.microphone</key>
<false/>
</dict>
</plist>