mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-08-21 06:24:32 +00:00
Brings the Tauri 2.x tray popover from #1022 onto main as windows/, mirroring mac/. Product name, bundle identifier, and version line up with the macOS menubar (org.agentseal.codeburn-menubar, 0.9.20); the crate is renamed off "desktop" so it no longer collides with the Electron app in app/. Linux (ksni) stays compiled and dev-usable but is documented as experimental: gnome/ is the shipping Linux surface. The five src/ CLI commits on that branch are dropped - they re-implement a daily-bucketing fix main already carries.
20 lines
549 B
JSON
20 lines
549 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Default permissions for the CodeBurn tray app window",
|
|
"windows": ["popover"],
|
|
"permissions": [
|
|
"core:default",
|
|
"core:window:allow-close",
|
|
"core:window:allow-hide",
|
|
"core:window:allow-show",
|
|
"core:window:allow-set-focus",
|
|
"core:window:allow-set-position",
|
|
"core:window:allow-set-size",
|
|
"core:tray:default",
|
|
"core:event:allow-listen",
|
|
"core:event:allow-emit",
|
|
"opener:default",
|
|
"shell:default"
|
|
]
|
|
}
|