Files
autoclip/src-tauri/tauri.conf.json
周小舟 6280d23555 chore: release v1.2.0
Bump desktop app version 1.1.0 -> 1.2.0 and cut CHANGELOG [未发布] into
[1.2.0]. First release carrying PostHog analytics.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-03 20:04:53 +08:00

94 lines
2.1 KiB
JSON
Raw Permalink 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.2.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
}
}
}