559e224301
- 去掉 16px CSS 阴影边距方案(窗口比观感大、外圈灰影、点击区域错位):
transparent 窗口开 macOS 原生阴影,阴影贴合内容圆角,窗口 440x560
即卡片本体
- trafficLightPosition {16,12}:红绿灯垂直居中于 36px 自绘顶条,与
「dudu 设置」标题对齐
- capabilities 显式加 core:window:allow-start-dragging,保证
data-tauri-drag-region 拖拽可用
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
106 lines
2.3 KiB
JSON
106 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "dudu",
|
|
"version": "0.1.0",
|
|
"identifier": "app.dudu.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:5181",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "settings",
|
|
"title": "dudu 设置",
|
|
"url": "index.html",
|
|
"width": 440,
|
|
"height": 560,
|
|
"resizable": false,
|
|
"visible": false,
|
|
"titleBarStyle": "Overlay",
|
|
"hiddenTitle": true,
|
|
"transparent": true,
|
|
"shadow": true,
|
|
"trafficLightPosition": {
|
|
"x": 16,
|
|
"y": 12
|
|
}
|
|
},
|
|
{
|
|
"label": "overlay",
|
|
"title": "dudu",
|
|
"url": "overlay.html",
|
|
"width": 360,
|
|
"height": 140,
|
|
"visible": false,
|
|
"transparent": true,
|
|
"decorations": false,
|
|
"alwaysOnTop": true,
|
|
"focus": false,
|
|
"skipTaskbar": true,
|
|
"shadow": false
|
|
},
|
|
{
|
|
"label": "login",
|
|
"title": "dudu — 登录",
|
|
"url": "login.html",
|
|
"width": 400,
|
|
"height": 520,
|
|
"resizable": false,
|
|
"visible": false
|
|
},
|
|
{
|
|
"label": "tray",
|
|
"title": "dudu",
|
|
"url": "tray.html",
|
|
"width": 248,
|
|
"height": 300,
|
|
"resizable": false,
|
|
"visible": false,
|
|
"transparent": true,
|
|
"decorations": false,
|
|
"alwaysOnTop": true,
|
|
"skipTaskbar": true,
|
|
"shadow": false
|
|
},
|
|
{
|
|
"label": "feedback",
|
|
"title": "反馈问题",
|
|
"url": "feedback.html",
|
|
"width": 460,
|
|
"height": 560,
|
|
"resizable": false,
|
|
"center": true,
|
|
"visible": false
|
|
},
|
|
{
|
|
"label": "onboarding",
|
|
"title": "欢迎使用 dudu",
|
|
"url": "onboarding.html",
|
|
"width": 560,
|
|
"height": 480,
|
|
"resizable": false,
|
|
"center": true,
|
|
"visible": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"macOSPrivateApi": true
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|