Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ Progress bars, badges, clear labels. No mental math required.
* **One glance.** All your AI tools in one panel.
* **Always up to date.** Refreshes automatically on a schedule you pick.
* **Global shortcut.** Toggle the panel from anywhere with a customizable keyboard shortcut.
* **Usage export.** Download locally collected usage history as CSV or Excel.
* **Lightweight.** Opens quickly and stays out of your way.
* **Plugin-based.** New providers can be added without changing the whole app.
* **[Local HTTP API](docs/local-http-api.md).** Other apps can read your usage data from `127.0.0.1:6736`.
Expand Down
3 changes: 3 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-global-shortcut": "^2",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "^2",
Expand Down
184 changes: 168 additions & 16 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
regex-lite = "0.1.9"
aes-gcm = "0.10.3"
sha2 = "0.11"
rust_xlsxwriter = "0.95.0"
tauri-plugin-dialog = "2.7.1"

[target.'cfg(target_os = "linux")'.dependencies]
x11rb = "0.13.2"
Expand All @@ -55,3 +57,4 @@ objc2-web-kit = { version = "0.3", features = ["WKPreferences", "WKWebView", "WK

[dev-dependencies]
serial_test = "3.4.0"
zip = { version = "8.6.0", default-features = false, features = ["deflate"] }
1 change: 1 addition & 0 deletions src-tauri/capabilities/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"core:window:allow-inner-size",
"core:window:allow-scale-factor",
"opener:default",
"dialog:default",
"store:default",
"aptabase:allow-track-event",
"updater:default",
Expand Down
Loading
Loading