a7e810b999
实现 AGC 启动版本检测与 OSS 安装包下载。 - 每次客户端打开时从 OSS latest.json 检查新版本 - 新版本提示支持 releaseNotes,并通过 Tauri 命令下载到系统下载目录 - 下载地址限制受信任 OSS、HTTPS、大小与可选 SHA-256 校验 - 补充 Tauri capability/CSP、单测和发布文档 Closes #224 Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/230
27 lines
844 B
JSON
27 lines
844 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "main",
|
|
"description": "AI 游戏创作主窗口允许读取系统剪贴板图片,用于粘贴素材附件。",
|
|
"windows": ["client"],
|
|
"permissions": [
|
|
"clipboard-manager:allow-read-image",
|
|
"clipboard-manager:allow-read-text",
|
|
"core:image:allow-rgba",
|
|
"core:image:allow-size",
|
|
"core:resources:allow-close",
|
|
{
|
|
"identifier": "http:default",
|
|
"allow": [
|
|
{ "url": "https://dev.genarrative.world/api/*" },
|
|
{ "url": "https://www.genarrative.world/api/*" },
|
|
{ "url": "https://agc-dev.oss-rg-china-mainland.aliyuncs.com/*" },
|
|
{ "url": "https://*/api/*" },
|
|
{ "url": "http://localhost:*/*" },
|
|
{ "url": "http://127.0.0.1:*/*" }
|
|
]
|
|
},
|
|
"opener:default",
|
|
"dialog:allow-open"
|
|
]
|
|
}
|