All checks were successful
- Updated capabilities.json to include new permissions for dialog and process features. - Expanded desktop-schema.json and windows-schema.json with detailed dialog and process permissions, including allow/deny options for various commands. - Integrated dialog and process plugins in lib.rs to enable new functionalities in the application.
19 lines
456 B
JSON
19 lines
456 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Default capability for all windows",
|
|
"windows": ["*"],
|
|
"platforms": ["linux", "windows", "macOS"],
|
|
"permissions": [
|
|
"core:default",
|
|
"opener:default",
|
|
"opener:allow-open-url",
|
|
"opener:allow-default-urls",
|
|
"notification:default",
|
|
"autostart:default",
|
|
"updater:default",
|
|
"dialog:default",
|
|
"process:allow-restart"
|
|
]
|
|
}
|