* feat: enable local-origin desktop features and copy in terminal support - Enable arbitrary web loads in desktop web content for TAURI apps. - Guard directory dialog access behind local-origin origin check. - Add copy-to-clipboard support for terminal selections via common shortcuts. * fix: improve initial directory resolution and persistence in directory store
28 lines
1.1 KiB
Plaintext
28 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>
|
|
<key>NSSupportsAutomaticTermination</key>
|
|
<false/>
|
|
<key>NSSupportsSuddenTermination</key>
|
|
<false/>
|
|
<key>NSAppleEventsUsageDescription</key>
|
|
<string>OpenChamber needs to run the OpenCode CLI to provide AI coding assistance.</string>
|
|
<key>NSDesktopFolderUsageDescription</key>
|
|
<string>OpenChamber needs access to work with your projects.</string>
|
|
<key>NSDocumentsFolderUsageDescription</key>
|
|
<string>OpenChamber needs access to work with your projects.</string>
|
|
<key>NSDownloadsFolderUsageDescription</key>
|
|
<string>OpenChamber needs access to work with your projects.</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>OpenChamber needs microphone access for voice input.</string>
|
|
<key>NSSpeechRecognitionUsageDescription</key>
|
|
<string>OpenChamber needs speech recognition to transcribe voice input.</string>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoadsInWebContent</key>
|
|
<true/>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|