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 3e5737b039
Some checks failed
TrafficCue CI / check (push) Failing after 54s
TrafficCue CI / build (push) Successful in 49s
feat: add tts
2025-08-11 14:01:32 +02:00

41 lines
768 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",
"tts:allow-speak"
]
}