mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-05-17 12:20:43 +00:00
Some checks are pending
CI / semgrep (push) Waiting to run
* Rewrite GNOME extension UI with branded popover matching macOS menubar Combines PR #212's modular architecture (DataClient, GSettings, Libadwaita prefs) with the custom St widget UI from feat/tauri-menubar-win-linux. Adds: branded header, horizontal agent tabs, hero typography, period/insight pills, 19-day token histogram, 6 content views (Activity, Trend, Forecast, Pulse, Stats, Plan), currency switcher with FX conversion, findings CTA, budget alerts, theme detection, payload caching with TTL. * Add Main.panel.addToStatusArea call to extension entry point * Align activity/model rows as table with separators, gear icon for prefs * Add table column headers, oneshot placeholder, currency picker dropdown * Enhance GNOME extension with scrollable UI, dark mode, charts, and performance fixes - Add vertical scroll for popup content and horizontal scroll for 6+ provider tabs - Add token histogram chart with hover tooltips showing date, in/out tokens, cost - Add skeleton loading animation with stale-while-revalidate caching (5min TTL) - Add dark/light theme support with force-dark-mode setting - Add exact costs toggle for full decimal values - Add right-aligned columns for cost, turns, oneshot, and model data - Remove unsupported St CSS properties (text-align, letter-spacing) - Fix post-destroy crash: guard async callbacks, abort Soup session on teardown - Fix dataClient double-resolve race with settled guard - Expand PATH resolution for volta, bun, cargo, asdf, fnm, pnpm - Reduce CLI timeout from 45s to 15s and cache augmented PATH - Remove unused imports (Pango, Main) and dead constants - Show 10 top activities, remove Plan pill
68 lines
2.4 KiB
XML
68 lines
2.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<schemalist gettext-domain="codeburn">
|
|
<schema id="org.gnome.shell.extensions.codeburn"
|
|
path="/org/gnome/shell/extensions/codeburn/">
|
|
|
|
<key name="refresh-interval" type="u">
|
|
<default>30</default>
|
|
<summary>Refresh interval</summary>
|
|
<description>Seconds between automatic data refreshes</description>
|
|
<range min="5" max="300"/>
|
|
</key>
|
|
|
|
<key name="default-period" type="s">
|
|
<default>'today'</default>
|
|
<summary>Default time period</summary>
|
|
<description>Period shown when extension opens (today, week, 30days, month, all)</description>
|
|
</key>
|
|
|
|
<key name="budget-threshold" type="d">
|
|
<default>0.0</default>
|
|
<summary>Budget threshold</summary>
|
|
<description>Daily budget threshold in USD. Set to 0 to disable.</description>
|
|
</key>
|
|
|
|
<key name="budget-alert-enabled" type="b">
|
|
<default>false</default>
|
|
<summary>Enable budget alerts</summary>
|
|
<description>Show warning when spending exceeds budget threshold</description>
|
|
</key>
|
|
|
|
<key name="compact-mode" type="b">
|
|
<default>false</default>
|
|
<summary>Compact mode</summary>
|
|
<description>Show only icon in panel, hide cost label</description>
|
|
</key>
|
|
|
|
<key name="force-dark-mode" type="b">
|
|
<default>false</default>
|
|
<summary>Force dark mode</summary>
|
|
<description>Always use dark theme for the popup, regardless of system theme</description>
|
|
</key>
|
|
|
|
<key name="show-exact-costs" type="b">
|
|
<default>false</default>
|
|
<summary>Show exact costs</summary>
|
|
<description>Show full decimal values instead of compact notation (e.g. $2,655.23 instead of $2.7k)</description>
|
|
</key>
|
|
|
|
<key name="codeburn-path" type="s">
|
|
<default>''</default>
|
|
<summary>CodeBurn CLI path</summary>
|
|
<description>Custom path to the codeburn executable. Leave empty to use PATH.</description>
|
|
</key>
|
|
|
|
<key name="provider-filter" type="s">
|
|
<default>'all'</default>
|
|
<summary>Default provider filter</summary>
|
|
<description>Default provider to filter by (all shows everything)</description>
|
|
</key>
|
|
|
|
<key name="disabled-providers" type="as">
|
|
<default>[]</default>
|
|
<summary>Disabled providers</summary>
|
|
<description>Providers excluded from cost accounting and display</description>
|
|
</key>
|
|
|
|
</schema>
|
|
</schemalist>
|