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.
27 lines
696 B
JSON
27 lines
696 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-utils/schema.json",
|
|
"identifier": "default",
|
|
"description": "Default permissions for Agent UI",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
{
|
|
"identifier": "http:default",
|
|
"allow": [
|
|
{ "url": "http://**" },
|
|
{ "url": "https://**" }
|
|
]
|
|
},
|
|
"store:default",
|
|
"notification:default",
|
|
"clipboard-manager:default",
|
|
"dialog:default",
|
|
"core:window:default",
|
|
"core:window:allow-minimize",
|
|
"core:window:allow-maximize",
|
|
"core:window:allow-unmaximize",
|
|
"core:window:allow-toggle-maximize",
|
|
"core:window:allow-close"
|
|
]
|
|
}
|