Release 0.1.1 - 项目管理功能完整版 新功能: - 完整的项目管理系统(创建、查看、编辑、删除) - 项目路径选择和验证功能 - 无效项目记录自动清理功能 - 性能监控和事件总线系统 问题修复: - 修复项目数据持久化问题 - 修复 UNIQUE 约束冲突错误 - 修复应用启动时卡住的问题 - 修复 TypeScript 构建错误 架构完善: - 遵循 Tauri 开发规范的四层架构设计 - 集成性能监控系统 - 实现事件驱动架构 - 完善错误处理和用户反馈 UI/UX 改进: - 简洁大方的项目卡片设计 - 流畅的动画效果和交互反馈 - 完整的加载状态和错误提示 - 响应式布局适配 构建产物: - MixVideo Desktop_0.1.1_x64_en-US.msi - MixVideo Desktop_0.1.1_x64-setup.exe 技术栈: - 后端: Rust + Tauri + SQLite + 四层架构 - 前端: React + TypeScript + Tailwind CSS + Zustand - 测试: Rust 单元测试 + Vitest 前端测试 - 工具: pnpm 包管理 + 类型安全保证
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "MixVideo Desktop",
|
|
"version": "0.1.1",
|
|
"identifier": "com.mixvideo.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "vite",
|
|
"devUrl": "http://localhost:5173",
|
|
"beforeBuildCommand": "pnpm build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "MixVideo Desktop",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"center": true,
|
|
"resizable": true,
|
|
"maximizable": true,
|
|
"minimizable": true,
|
|
"closable": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"publisher": "imeepos",
|
|
"copyright": "Copyright © 2024 imeepos. All rights reserved.",
|
|
"category": "Productivity",
|
|
"shortDescription": "MixVideo Desktop - 多媒体处理桌面应用",
|
|
"longDescription": "MixVideo Desktop 是一个基于 Tauri 构建的跨平台桌面应用,提供强大的多媒体处理功能。",
|
|
"externalBin": [],
|
|
"windows": {
|
|
"certificateThumbprint": null,
|
|
"digestAlgorithm": "sha256",
|
|
"timestampUrl": ""
|
|
},
|
|
"macOS": {
|
|
"frameworks": [],
|
|
"minimumSystemVersion": "10.13",
|
|
"exceptionDomain": ""
|
|
}
|
|
}
|
|
}
|