Files
OwnCord/Client/tauri-client/src-tauri/tauri.conf.json
T
jevb 3f642a77e0 fix: speaking ring, devtools, CSP, and connection fixes
Speaking detection:
- Replace unreliable ActiveSpeakersChanged with per-participant
  IsSpeakingChanged events (fires locally, more responsive)
- Wire speaking detection on local + remote participants
- setSpeakers updates all users including local (LiveKit is sole
  authority, no local VAD)

DevTools:
- Add F12/Ctrl+Shift+I shortcut to open WebView2 DevTools
- Enable devtools feature in Tauri release builds
- Add open_devtools Rust command

CSP:
- Allow http://ipc.localhost for Tauri IPC protocol
- Allow http/ws://localhost:* for LiveKit signal connection

Connection:
- Fix LiveKit API secret minimum 32 chars
- Remove TURN TLS config that crashed LiveKit server
- Add reverse proxy at /livekit/* (kept for future use)
2026-03-20 07:11:45 +01:00

59 lines
1.6 KiB
JSON

{
"productName": "OwnCord",
"version": "1.2.0",
"identifier": "com.owncord.client",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "OwnCord",
"width": 1280,
"height": 720,
"minWidth": 940,
"minHeight": 500,
"decorations": true,
"resizable": true,
"center": true
}
],
"withGlobalTauri": true,
"security": {
"csp": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; connect-src 'self' http://ipc.localhost https: wss: http://localhost:* ws://localhost:* http://127.0.0.1:* ws://127.0.0.1:*; img-src 'self' https: data:; frame-src https://www.youtube.com https://youtube.com"
}
},
"bundle": {
"active": true,
"createUpdaterArtifacts": "v1Compatible",
"targets": [
"nsis"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/icon.ico"
],
"windows": {
"nsis": {
"displayLanguageSelector": false,
"installerIcon": "icons/icon.ico"
}
}
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEJCQkQ0NzM1MjkxRTlGQTIKUldTaW54NHBOVWU5dTRqYW0yalI5VTJBd0NXOUZwM2UrcDM4YkhCSmlMZWJKWWVXaGJWdHBaSHgK",
"endpoints": [],
"dangerousAcceptInvalidCerts": true,
"dangerousAcceptInvalidHostnames": true,
"windows": {
"installMode": "passive"
}
}
}
}