Files
xianyan/macos/Runner/Release.entitlements
Developer 88a3f6d65f feat: 新增仪表盘页面与macOS多项优化
1. 新增TDashboard翻译类型与多语言文案
2. 完善macOS权限管理与Impeller渲染适配
3. 更新服务器部署配置与协议文件上传脚本
4. 修复翻译导入服务与根类型编译问题
2026-06-26 06:34:05 +08:00

29 lines
1.1 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>
<true/>
<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/>
<!-- 相机:扫码 / 拍照生成卡片 / OCRAVCaptureDevice 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>