## Summary - restore the GitHub and Discord links on the folder picker in the Tauri app - open those links through the desktop opener bridge instead of relying on browser-only navigation behavior - include the capability/schema updates needed for the opener path ## Testing - npm run typecheck --workspace @codenomad/ui - cargo check --manifest-path packages/tauri-app/src-tauri/Cargo.toml
22 lines
722 B
JSON
22 lines
722 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/capabilities.json",
|
|
"identifier": "main-window-native-dialogs",
|
|
"description": "Grant the main window access to required core features and native dialog commands.",
|
|
"remote": {
|
|
"urls": ["http://127.0.0.1:*", "http://localhost:*", "http://tauri.localhost/*", "https://tauri.localhost/*"]
|
|
},
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"core:menu:default",
|
|
"dialog:allow-open",
|
|
"opener:allow-default-urls",
|
|
"opener:allow-open-url",
|
|
"notification:allow-is-permission-granted",
|
|
"notification:allow-request-permission",
|
|
"notification:allow-notify",
|
|
"notification:allow-show",
|
|
"core:webview:allow-set-webview-zoom"
|
|
]
|
|
}
|