92341be32c
- voice.ts: startMic 前探测 navigator.mediaDevices?.getUserMedia——WKWebView(原生壳)非安全 上下文里它可能未暴露,直接调会抛 "undefined is not an object" 崩掉;改为给可读提示 - build/darwin/Info.plist + Info.dev.plist: 加 NSMicrophoneUsageDescription,否则 macOS 不会授权麦克风(package 后的 .app 才能弹权限) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
37 lines
1.1 KiB
Plaintext
37 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>CFBundleExecutable</key>
|
|
<string>sundynix_desktop</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>sundynix-agentix desktop</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>icons</string>
|
|
<key>CFBundleIconName</key>
|
|
<string>appicon</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.sundynix.agentix</string>
|
|
<key>CFBundleName</key>
|
|
<string>sundynix-agentix</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>0.1.1</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>0.1.1</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>12.0.0</string>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsLocalNetworking</key>
|
|
<true/>
|
|
</dict>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>JARVIS 语音助手需要麦克风来听你说话。</string>
|
|
<key>NSHighResolutionCapable</key>
|
|
<string>true</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>(c) 2026, sundynix</string>
|
|
</dict>
|
|
</plist> |