mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
8cd4cdcd64
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
944 B
Plaintext
21 lines
944 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>
|
|
<!-- Psysonic is a music player only — it does not record audio.
|
|
This description is shown if macOS prompts for microphone access
|
|
(triggered by CoreAudio enumerating input devices during init). -->
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>Psysonic does not use the microphone. This prompt is triggered by the audio subsystem initializing output devices.</string>
|
|
|
|
<!-- Allow HTTP (non-TLS) connections so that internet radio streams and
|
|
Navidrome servers running without HTTPS can load media in WKWebView.
|
|
Without this, macOS App Transport Security blocks HTTP audio src. -->
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|