Files
voicebox/tauri/src-tauri/capabilities/default.json
T
Jamie Pine f1be633dca Implement FloatingGenerateBox component and update App layout
- Introduced the FloatingGenerateBox component for audio generation, enhancing user interaction with voice profiles.
- Updated App component to integrate FloatingGenerateBox and removed the GenerationForm component.
- Enhanced the layout for better responsiveness and added functionality to manage audio playback state.
- Updated UpdateStatus component to include new update handling logic and improved UI feedback for update readiness.
2026-01-27 13:18:12 -08:00

29 lines
696 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"identifier": "default",
"description": "Default permissions for voicebox",
"platforms": ["linux", "macOS", "windows"],
"windows": ["main"],
"remote": {
"urls": ["http://localhost:*"]
},
"permissions": [
"core:default",
"core:window:default",
"core:window:allow-start-dragging",
"core:webview:default",
"core:webview:allow-internal-toggle-devtools",
"shell:allow-open",
"shell:allow-execute",
"shell:allow-spawn",
"updater:default",
"process:default",
"dialog:default",
"dialog:allow-save",
"dialog:allow-open",
"fs:default",
"fs:read-all",
"fs:write-all"
]
}