mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
50ac1b8284
Co-authored-by: kilyabin <kilyabin@users.noreply.github.com> Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
980 B
Plaintext
23 lines
980 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>
|
|
<!-- Sandbox disabled: app is unsigned/ad-hoc signed, so an active sandbox
|
|
would restrict network access more than without it. macOS users bypass
|
|
Gatekeeper via: xattr -cr /Applications/Psysonic.app -->
|
|
<key>com.apple.security.app-sandbox</key>
|
|
<false/>
|
|
|
|
<!-- Allow outbound TCP connections to the Navidrome server (reqwest in audio.rs).
|
|
Respected by ad-hoc signatures on some macOS versions. -->
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
|
|
<!-- Psysonic is a music PLAYER only — no microphone access needed.
|
|
This suppresses the macOS microphone permission prompt triggered
|
|
by cpal/CoreAudio enumerating input devices during audio init. -->
|
|
<key>com.apple.security.device.audio-input</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|