Files
autoclip/src-tauri/capabilities/default.json
Kris K 593cc62bd5 fix: desktop client, CI fixes, and backend (#61)
Squashed merge of fix/problem-fixes-from-main.

- Desktop client (Tauri v2) wiring + packaging
- CI workflow updates (Python 3.11, Rust toolchain, Tauri CLI, WebKit deps)
- Backend test fix (test_missing_api_key respects CI-injected env var)
- build_backend.py: support CI without venv + Windows-safe ASCII output

Desktop build workflows (Linux/Windows/macOS) still failing — tracked in #65.
2026-05-28 15:48:49 +08:00

71 lines
1.1 KiB
JSON

{
"identifier": "default",
"description": "Default capabilities for AutoClip Desktop",
"windows": ["main"],
"permissions": [
{
"identifier": "core:default",
"allow": [
{
"cmd": "default"
}
]
},
{
"identifier": "core:app:default",
"allow": [
{
"cmd": "default"
}
]
},
{
"identifier": "core:window:default",
"allow": [
{
"cmd": "default"
}
]
},
{
"identifier": "core:webview:default",
"allow": [
{
"cmd": "default"
}
]
},
{
"identifier": "core:tray:default",
"allow": [
{
"cmd": "default"
}
]
},
{
"identifier": "core:path:default",
"allow": [
{
"cmd": "default"
}
]
},
{
"identifier": "core:resources:default",
"allow": [
{
"cmd": "default"
}
]
},
{
"identifier": "shell:default",
"allow": [
{
"cmd": "open"
}
]
}
]
}