Files
koring-launcher/src-tauri/tauri.conf.json
T
dream_pep 2fa9d7041b feat: 个性化设置页面重构与辅助功能
- 重构主题与背景页面:一选项一卡片布局,深色模式可视化预览卡片
- 新增强内容模式:设置页面自动显示 80px 模糊背景遮罩,自适应亮/暗色
- 新增辅助功能:减少动画、减少透明度、高对比度三项开关
- 新增开发者选项:即时打开/关闭启动画面、强制关闭强内容模式
- 磨砂卡片样式:降低透明度提升可读性,圆角 16px
- 启动画面显示时间调整为 4 秒
- CSS 新增 .glass-card、.content-blur-overlay、辅助功能类
- 新增 a11yStore、devStore、themeStore 状态管理
2026-06-20 03:49:58 +08:00

58 lines
1.2 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "koring-launcher",
"version": "0.1.0",
"identifier": "com.lingke.koring.launcher",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "splashscreen",
"title": "Koring Launcher",
"url": "/splash.html",
"width": 480,
"height": 320,
"decorations": false,
"transparent": true,
"center": true,
"visible": true,
"resizable": false,
"minWidth": 480,
"maxWidth": 480,
"minHeight": 320,
"maxHeight": 320
},
{
"label": "main",
"title": "Koring Launcher",
"width": 900,
"height": 600,
"minWidth": 800,
"minHeight": 600,
"decorations": false,
"transparent": true,
"center": true,
"visible": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon.png"
],
"externalBin": [
"binaries/koring-sidecar"
]
}
}