Integrate Aptabase analytics via a Tauri plugin and add a privacy notice flow plus a settings dialog to control whether anonymous usage events are sent. The app now tracks key user actions while ensuring analytics never blocks core Git operations. - Add analytics tracking helper and Aptabase plugin wiring - Persist analytics consent in localStorage and gate tracking - Introduce notice and settings dialogs, plus new event calls
18 lines
489 B
JSON
18 lines
489 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Default permissions for the desktop window",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default",
|
|
"core:window:allow-minimize",
|
|
"core:window:allow-toggle-maximize",
|
|
"core:window:allow-unminimize",
|
|
"core:window:allow-close",
|
|
"core:window:allow-is-maximized",
|
|
"core:window:allow-start-dragging",
|
|
"dialog:allow-open",
|
|
"aptabase:allow-track-event"
|
|
]
|
|
}
|