mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-16 05:10:42 -07:00
- Implemented API endpoints for exporting and importing voice profiles as ZIP archives. - Enhanced the frontend with new hooks and components for profile export and import, including file handling and user dialogs. - Integrated Tauri plugins for file system access and dialog interactions to facilitate seamless user experience. - Updated ProfileCard and ProfileList components to support new export and import features, improving overall functionality. - Added necessary error handling and validation for file operations to ensure robustness.
27 lines
633 B
JSON
27 lines
633 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:webview:default",
|
|
"core:webview:allow-internal-toggle-devtools",
|
|
"shell:allow-open",
|
|
"shell:allow-execute",
|
|
"shell:allow-spawn",
|
|
"updater:default",
|
|
"dialog:default",
|
|
"dialog:allow-save",
|
|
"dialog:allow-open",
|
|
"fs:default",
|
|
"fs:read-all",
|
|
"fs:write-all"
|
|
]
|
|
}
|