talkis/src-tauri/tauri.conf.json
David Perov 7f7d85f3f3
Some checks failed
CI / cargo check (linux) (push) Has been cancelled
CI / cargo check (macos) (push) Has been cancelled
CI / cargo check (windows) (push) Has been cancelled
CI / tsc + hotkey smoke (push) Has been cancelled
Release v0.3.7
2026-07-03 17:36:34 +03:00

75 lines
1.9 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Talkis",
"mainBinaryName": "Talkis",
"version": "0.3.7",
"identifier": "com.trixter.talkis",
"build": {
"beforeDevCommand": "bun run prepare:sidecars && bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun scripts/before-tauri-build.mjs",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "widget",
"title": "Talkis",
"url": "index.html?window=widget",
"width": 78,
"height": 32,
"minWidth": 18,
"minHeight": 18,
"resizable": false,
"decorations": false,
"transparent": true,
"alwaysOnTop": true,
"skipTaskbar": true,
"acceptFirstMouse": true,
"shadow": false,
"x": 682,
"y": 800
}
],
"macOSPrivateApi": true,
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"createUpdaterArtifacts": true,
"externalBin": [
"binaries/talkis-ffmpeg",
"binaries/talkis-stt",
"binaries/talkis-diarize",
"binaries/talkis-llm"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"macOS": {
"entitlements": "entitlements.plist",
"infoPlist": "Info.plist",
"minimumSystemVersion": "11.0"
}
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDYyRUE3RkQwRjhFODM0QjMKUldTek5PajQwSC9xWXNVUjQ4T1U0RHNJVEhRUTJWNDFTYTJjNmg0eU5PMFdieDhnTHE3Z2EwN1YK",
"endpoints": [
"https://github.com/SerTimBerrners-Lee/talkis/releases/latest/download/latest.json"
]
},
"deep-link": {
"desktop": {
"schemes": ["talkis"]
}
}
}
}