generated from nhcarrigan/template
73d66e9ae4
- Add 1920x1080 HD canvas with trans-pride themed design - Include profile avatar, name, bio, and lifetime stats - Show achievement progress with visual progress bar - Use Tauri fs plugin for cross-platform file reading - Add scoped file permissions for read/write access
36 lines
949 B
JSON
36 lines
949 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Capability for the main window",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"dialog:default",
|
|
"opener:default",
|
|
"shell:allow-spawn",
|
|
"shell:allow-stdin-write",
|
|
"shell:allow-kill",
|
|
"notification:default",
|
|
"notification:allow-is-permission-granted",
|
|
"notification:allow-request-permission",
|
|
"notification:allow-notify",
|
|
"clipboard-manager:default",
|
|
"clipboard-manager:allow-read-image",
|
|
"core:tray:default",
|
|
"fs:default",
|
|
"fs:allow-read-text-file",
|
|
"fs:allow-write-text-file",
|
|
{
|
|
"identifier": "fs:allow-read-file",
|
|
"allow": [{ "path": "**" }]
|
|
},
|
|
{
|
|
"identifier": "fs:allow-write-file",
|
|
"allow": [{ "path": "**" }]
|
|
},
|
|
"core:window:allow-set-size",
|
|
"core:window:allow-set-always-on-top",
|
|
"core:window:allow-inner-size"
|
|
]
|
|
}
|