1. 新增TDashboard翻译类型与多语言文案 2. 完善macOS权限管理与Impeller渲染适配 3. 更新服务器部署配置与协议文件上传脚本 4. 修复翻译导入服务与根类型编译问题
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?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.app-sandbox</key>
|
||
<false/>
|
||
<key>com.apple.security.cs.allow-jit</key>
|
||
<true/>
|
||
<key>com.apple.security.network.client</key>
|
||
<true/>
|
||
<!-- LocalSend 局域网文件传输:HttpServer.bindSecure / ServerSocket.bind 需要 -->
|
||
<key>com.apple.security.network.server</key>
|
||
<true/>
|
||
<key>com.apple.security.files.user-selected.read-only</key>
|
||
<true/>
|
||
<key>com.apple.security.files.user-selected.read-write</key>
|
||
<true/>
|
||
<!-- 相机:扫码 / 拍照生成卡片 / OCR(AVCaptureDevice via PermissionManager.swift) -->
|
||
<key>com.apple.security.device.camera</key>
|
||
<true/>
|
||
<!-- 麦克风:语音录制 / 转文字(AVCaptureDevice via PermissionManager.swift) -->
|
||
<key>com.apple.security.device.microphone</key>
|
||
<true/>
|
||
<!-- 定位:permission_handler 依赖链引用 CoreLocation 符号,沙盒需此 entitlement -->
|
||
<key>com.apple.security.personal-information.location</key>
|
||
<true/>
|
||
</dict>
|
||
</plist>
|