This repository has been archived on 2025-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
trafficcue-client/src-tauri/capabilities/default.json
Cfp 8fe6c87714
Some checks failed
TrafficCue CI / check (push) Failing after 1m4s
TrafficCue CI / build (push) Successful in 48s
fix: add keep-screen-on permission in tauri
2025-08-10 13:39:44 +02:00

40 lines
745 B
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "enables the default permissions",
"windows": [
"main"
],
"permissions": [
"core:default",
"keep-screen-on:allow-keep-screen-on",
"upload:default",
"fs:allow-app-read",
"fs:allow-app-write",
{
"identifier": "fs:allow-write-file",
"allow": [
{
"path": "$APPDATA/**/*"
}
]
},
"fs:read-files",
"fs:read-dirs",
{
"identifier": "fs:scope",
"allow": [
{
"path": "**"
},
{
"path": "$APPDATA/**/*"
},
{
"path": "$APPDATA/**/.*"
}
]
},
"upload:allow-download"
]
}