Files
le-mystere-professeur-zacus/desktop/resources/entitlements.plist
T
L'électron rare 2f78fab2b6 feat: Zacus Studio macOS app
Electron + Swift scaffold, 4 tabs, OTA manager,
7 Dev Tools components, ESP32 ota_server component.
Phases 1,5,6,7,9 implemented.
2026-04-03 10:19:33 +02:00

42 lines
1.1 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>
<!-- Required for Electron -->
<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-library-validation</key>
<true/>
<!-- Hardened runtime -->
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<!-- Network (WiFi OTA, mDNS) -->
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<!-- Bluetooth (BLE DFU) -->
<key>com.apple.security.device.bluetooth</key>
<true/>
<!-- USB Serial (IOKit) -->
<key>com.apple.security.device.usb</key>
<true/>
<!-- File access for scenario files and firmware cache -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.files.downloads.read-write</key>
<true/>
<!-- For esptool.py subprocess -->
<key>com.apple.security.cs.allow-execution</key>
<true/>
</dict>
</plist>