Initial commit: MixVideo Desktop v0.1.0
Features: - Cross-platform Tauri desktop application - React + TypeScript + Vite frontend - Rust backend with Tauri 2.0 - Multi-package management (PNPM + Cargo workspaces) - GitHub Actions CI/CD pipeline - Modern project structure and configuration Build artifacts: - Windows MSI and NSIS installers - Cross-platform executable - Automated release workflow Tech stack: - Frontend: React 18 + TypeScript + Vite - Backend: Rust + Tauri 2.0 - Package management: PNPM Workspace + Cargo Workspace - CI/CD: GitHub Actions
This commit is contained in:
58
apps/desktop/src-tauri/tauri.conf.json
Normal file
58
apps/desktop/src-tauri/tauri.conf.json
Normal file
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"$schema": "https://schema.tauri.app/config/2",
|
||||
"productName": "MixVideo Desktop",
|
||||
"version": "0.1.0",
|
||||
"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": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user