11fbe20102
- 新增 decode_qr Tauri command(接收图片字节,返回解码文本) - ExportPanel 新增「选择图片解码」按钮 + 解码结果展示 - fs:allow-read-file 权限,支持 /c/Users/33644 和 C:\Users\33644\AppData\Local\Temp 路径
21 lines
477 B
JSON
21 lines
477 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "QRGen 默认权限",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"store:default",
|
|
"dialog:default",
|
|
"clipboard-manager:default",
|
|
{
|
|
"identifier": "fs:allow-write-file",
|
|
"allow": [{ "path": "$HOME/**" }]
|
|
},
|
|
{
|
|
"identifier": "fs:allow-read-file",
|
|
"allow": [{ "path": "$HOME/**" }, { "path": "$TEMP/**" }]
|
|
}
|
|
]
|
|
}
|