Files
HuLa/src-tauri/tauri.windows.conf.json
Dawn 9192125154
Some checks failed
Release CI / prepare-frontend (push) Has been cancelled
Release CI / publish-tauri (, ubuntu-22.04) (push) Has been cancelled
Release CI / publish-tauri (, windows-latest) (push) Has been cancelled
Release CI / publish-tauri (--target aarch64-apple-darwin, macos-latest) (push) Has been cancelled
Release CI / publish-tauri (--target x86_64-apple-darwin, macos-latest) (push) Has been cancelled
chore: release v3.0.6
2025-12-07 16:32:28 +08:00

131 lines
2.9 KiB
JSON
Vendored

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "HuLa",
"version": "3.0.6",
"identifier": "com.hula.pc",
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist",
"devUrl": "http://127.0.0.1:6130"
},
"bundle": {
"resources": [
"tray",
"configuration",
"draco",
"docs"
],
"active": true,
"targets": [
"msi",
"nsis"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico",
"icons/icon.png",
"icons/Square30x30Logo.png",
"icons/Square44x44Logo.png",
"icons/Square71x71Logo.png",
"icons/Square89x89Logo.png",
"icons/Square107x107Logo.png",
"icons/Square142x142Logo.png",
"icons/Square150x150Logo.png",
"icons/Square284x284Logo.png",
"icons/Square310x310Logo.png",
"icons/StoreLogo.png"
],
"windows": {
"wix": {
"language": "zh-CN"
},
"nsis": {
"installMode": "perMachine",
"installerIcon": "./icons/icon.ico",
"displayLanguageSelector": true,
"languages": [
"SimpChinese"
],
"template": "template/installer.nsi"
}
}
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "登录",
"label": "login",
"url": "/login",
"fullscreen": false,
"resizable": false,
"center": true,
"width": 320,
"height": 448,
"skipTaskbar": false,
"transparent": true,
"visible": false,
"decorations": false
},
{
"label": "tray",
"url": "/tray",
"resizable": false,
"center": false,
"visible": false,
"width": 130,
"height": 44,
"alwaysOnTop": true,
"skipTaskbar": true,
"decorations": false,
"transparent": true
},
{
"label": "notify",
"url": "/notify",
"resizable": false,
"center": false,
"visible": false,
"width": 280,
"height": 140,
"alwaysOnTop": true,
"skipTaskbar": true,
"decorations": false,
"transparent": true
},
{
"label": "capture",
"url": "/capture",
"fullscreen": true,
"transparent": true,
"resizable": false,
"skipTaskbar": true,
"decorations": false,
"visible": false,
"hiddenTitle": true
},
{
"label": "checkupdate",
"url": "/checkupdate",
"resizable": false,
"width": 500,
"height": 150,
"alwaysOnTop": true,
"focus": true,
"skipTaskbar": true,
"visible": false,
"decorations": false,
"hiddenTitle": true
}
],
"security": {
"csp": null
},
"macOSPrivateApi": true
}
}