Files
autoclip/src-tauri/tauri.conf.json
周小舟 ea8245462d release: v1.1.0 — first genuinely working desktop release
- Bump version 1.0.0 → 1.1.0 (tauri.conf.json, Cargo.toml, Cargo.lock); the
  build script now derives the DMG name from tauri.conf.json so it won't drift.
- RELEASE_NOTES.md + CHANGELOG.md: document v1.1.0 (zero-dependency desktop
  install, end-to-end clip pipeline, black-screen / stuck-list / retry-spam /
  stuck-pipeline fixes, opt-in faster-whisper, Gemini→google-genai, CI unify +
  repo cleanup).
- Drop two stale doc links to files removed in the cleanup
  (QUICK_START_GUIDE, SYSTEM_REBUILD_GUIDE).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-31 13:01:06 +08:00

94 lines
2.1 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "AutoClip Desktop",
"version": "1.1.0",
"identifier": "com.autoclip.desktop",
"build": {
"beforeDevCommand": "cd ../frontend && npm run dev",
"devUrl": "http://localhost:3000",
"beforeBuildCommand": "",
"frontendDist": "../frontend/dist"
},
"app": {
"windows": [
{
"title": "AutoClip Desktop",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"center": true,
"decorations": true,
"alwaysOnTop": false,
"skipTaskbar": false
}
],
"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"
],
"category": "DeveloperTool",
"shortDescription": "AI视频切片工具桌面版",
"longDescription": "AutoClip是一款基于AI的智能视频切片工具支持自动识别精彩片段并生成合集。",
"copyright": "© 2024 AutoClip Team",
"resources": [],
"externalBin": [],
"macOS": {
"frameworks": [],
"minimumSystemVersion": "10.13",
"exceptionDomain": "",
"signingIdentity": null,
"providerShortName": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"plugins": {
"dialog": {
"all": true,
"ask": true,
"confirm": true,
"message": true,
"open": true,
"save": true
},
"fs": {
"all": true,
"readFile": true,
"writeFile": true,
"readDir": true,
"copyFile": true,
"createDir": true,
"removeDir": true,
"removeFile": true,
"renameFile": true,
"exists": true
},
"os": {
"all": true
},
"process": {
"all": true
},
"shell": {
"open": true
}
}
}