mirror of
https://github.com/webadderallorg/Recordly.git
synced 2026-09-24 14:55:37 +00:00
- Add CGPreflightScreenCaptureAccess pre-check in Swift helper - Add microphone TCC pre-flight when mic capture is requested - Warm up TCC via desktopCapturer.getSources before spawning helper - Request mic access from Electron before helper spawn - Remove unreliable systemPreferences.getMediaAccessStatus pre-checks - Add camera entitlements to plist files for webcam support - Guard getScreen() calls behind app.isReady() - Make tray icons lazy to avoid early screen access - Suppress duplicate permission error alerts in renderer
16 lines
499 B
Plaintext
16 lines
499 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>
|
|
<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/>
|
|
<key>com.apple.security.device.camera</key>
|
|
<true/>
|
|
<key>com.apple.security.device.audio-input</key>
|
|
<true/>
|
|
</dict>
|
|
</plist> |