feat(tauri): 添加新功能并优化应用配置

- 新增 @solid-primitives/filesystem、@solid-primitives/scheduled 和 @solid-primitives/storage 依赖
- 添加 @tauri-apps/plugin-dialog、@tauri-apps/plugin-fs 和 @tauri-apps/plugin-store 插件
- 更新应用窗口配置,移除 titleBarStyle 设置
- 修改应用名称为 "Comfy Resource Downloader"
- 更新 ESLint 配置,移除 Solid 相关规则
This commit is contained in:
Vixalie
2025-07-28 08:34:00 +08:00
parent 081cd9c307
commit 911c17f52d
7 changed files with 84 additions and 7 deletions

View File

@@ -12,14 +12,13 @@
"app": {
"windows": [
{
"title": "comfy-downloader",
"title": "Comfy Resource Downloader",
"width": 1200,
"height": 800,
"minWidth": 1200,
"minHeight": 800,
"resizable": true,
"hiddenTitle": true,
"titleBarStyle": "Overlay",
"hiddenTitle": false,
"theme": "Dark"
}
],