Files
spacedrive/apps/tauri/src-tauri/capabilities/default.json
Jamie Pine b555156fa7 Update TODO list and enhance job logging configuration
- Added critical tasks for remote file access and updater functionality to the TODO list.
- Updated job logging configuration to include an option for logging ephemeral jobs, improving logging flexibility.
- Enhanced the job manager to conditionally log job events based on persistence settings, ensuring better tracking of job statuses.
- Refactored the inspector component to remove unnecessary console logs, streamlining the codebase.
- Improved the selection context to eliminate redundant logging during file synchronization, enhancing performance.
2025-12-24 08:04:57 -08:00

24 lines
699 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"
]
}