Files
Jamie Pine 991956b8cd Enhance Tauri application with updater functionality
- Integrated the tauri-plugin-updater to enable automatic updates for the application.
- Updated tauri configuration to include updater artifacts and defined permissions for the updater in the capabilities schema.
- Refactored the main.rs file to initialize the updater plugin during application startup.
- Improved the handling of file sources in the mobile explorer, simplifying the logic for fetching files.
- Cleaned up unused search functionality in the mobile search screen, ensuring a more streamlined user experience.
2026-01-28 16:38:40 -08:00

25 lines
720 B
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Default permissions for Spacedrive",
"windows": ["main", "inspector-*", "quick-preview-*", "settings-*", "job-manager"],
"permissions": [
"core:default",
"core:event:allow-listen",
"core:event:allow-emit",
"core:window:allow-create",
"core:window:allow-close",
"core:window:allow-get-all-windows",
"core:window:allow-start-dragging",
"core:webview:allow-create-webview-window",
"core:path:default",
"dialog:allow-open",
"dialog:allow-save",
"shell:allow-open",
"fs:allow-home-read-recursive",
"clipboard-manager:allow-read-text",
"clipboard-manager:allow-write-text",
"updater:default"
]
}