- Changed permission identifiers from `shell` to `opener` for clarity. - Updated descriptions to reflect new functionality for opening URLs and revealing items in directories. - Removed deprecated permissions and added new autostart permissions in the schema. - Adjusted the structure of allowed and denied entries for better organization. feat: implement system tray functionality in lib.rs - Added system tray support with show and quit options. - Implemented event handling for tray icon clicks and menu interactions. - Modified application run logic to minimize to tray on window close. - Updated plugins to use `tauri_plugin_opener` instead of `tauri_plugin_shell`.
13 lines
274 B
JSON
13 lines
274 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Default capability for all windows",
|
|
"windows": ["*"],
|
|
"permissions": [
|
|
"core:default",
|
|
"opener:default",
|
|
"notification:default",
|
|
"autostart:default"
|
|
]
|
|
}
|