Add Samsung proprietary Face Widget (lock screen/AOD) with terminal status display. Add voice interaction services (AgentVoiceInteractionService, RecognitionService) for digital assistant registration. Add PiP mode with voice/expand actions. Add session-state proxy, voice transcript routes, window controls component. Ignore installers/ directory.
40 lines
877 B
JSON
40 lines
877 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
|
|
"productName": "Agent UI",
|
|
"version": "0.1.0",
|
|
"identifier": "com.agentui.desktop",
|
|
"build": {
|
|
"frontendDist": "../frontend/dist",
|
|
"devUrl": "http://localhost:4100",
|
|
"beforeDevCommand": "",
|
|
"beforeBuildCommand": "cd frontend && npx vite build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Agent UI",
|
|
"width": 1280,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"decorations": false,
|
|
"resizable": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|