feat(install): 实现带进度条的游戏安装功能

- 添加进度条组件和相关状态管理
- 实现 Rust 后端解压过程的实时进度上报
- 增加安装路径中文字符校验
-优化日志显示支持时间戳开关- 引入 zip 解压库及异步运行时依赖
- 修复安装流程中的事件通信机制
- 调整 UI 布局适配新增进度条显示
This commit is contained in:
Chaos
2025-11-12 17:23:53 +08:00
parent 4773d3615b
commit 2cb5c42957
5 changed files with 515 additions and 47 deletions

View File

@@ -26,3 +26,7 @@ tauri-plugin-log = "2"
network-interface = "2.0.3"
tauri-plugin-fs = "2"
tauri-plugin-dialog = "2"
thiserror = "2.0.17"
zip = "4.2.0"
async-runtime = "0.0.0"
tokio = { version = "1.48.0", features = ["time"] }