vibetunnel/tauri/src-tauri/capabilities/settings.json
Peter Steinberger 47320c2151 feat(tauri): Redesign settings window with Electron-style layout
- Implement left sidebar navigation matching Electron app design
- Add dark/light theme support with CSS variables
- Increase default window size to 950x720 for better layout
- Remove duplicate "Preferences" title, keep only macOS native title
- Add glassmorphism effects and smooth animations
- Update color scheme to use VibeTunnel green (#10b981)
- Add team credits in About section
- Improve responsive design for settings cards
- Add theme-aware styling for all UI elements
2025-06-23 04:07:16 +02:00

49 lines
No EOL
1.3 KiB
JSON

{
"$schema": "../gen/schemas/capabilities.json",
"identifier": "settings",
"description": "Capability for the settings window",
"local": true,
"windows": ["settings"],
"permissions": [
"core:default",
"core:window:default",
"core:window:allow-close",
"core:window:allow-minimize",
"core:window:allow-maximize",
"core:window:allow-start-dragging",
"core:window:allow-set-title",
"core:app:default",
"core:path:default",
"core:event:default",
"core:webview:default",
"shell:default",
"shell:allow-open",
"dialog:default",
"fs:default",
"fs:allow-read-file",
"fs:allow-write-file",
"fs:allow-read-dir",
"fs:allow-copy-file",
"fs:allow-mkdir",
"fs:allow-remove",
"fs:allow-rename",
"fs:allow-exists",
"fs:scope-appdata-recursive",
"fs:scope-resource-recursive",
"fs:scope-temp-recursive",
"fs:allow-home-read-recursive",
"fs:allow-home-write-recursive",
"process:default",
"process:allow-exit",
"process:allow-restart",
"http:default",
"http:allow-fetch",
"notification:default",
"notification:allow-is-permission-granted",
"notification:allow-request-permission",
"notification:allow-notify",
"window-state:allow-restore-state",
"window-state:allow-save-window-state",
"updater:default"
]
}