mirror of
https://github.com/zhouxiaoka/autoclip.git
synced 2026-09-03 06:24:14 +08:00
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>
94 lines
2.1 KiB
JSON
94 lines
2.1 KiB
JSON
{
|
||
"$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
|
||
}
|
||
}
|
||
}
|