mirror of
https://github.com/zhukunpenglinyutong/jetbrains-cc-gui.git
synced 2026-08-29 00:41:38 +08:00
c1c302785b
- Embed tokentracker-dashboard (usage overview, trends, activity heatmap, model breakdown) into the usage statistics section behind a server gate - Add TokenTrackerHandler: detect/install pinned tokentracker-cli, ensure local server (serialized against concurrent spawns), whitelist-proxied requests to 127.0.0.1 with auth-token retry on 401/403 - Remove self-built aggregators (ClaudeUsageAggregator, CodexUsageAggregator) and legacy usage tabs/hooks/types - Bridge locale/theme from host app into the vendored dashboard and remount on change - Harden transport: dev-fetch timeout, in-flight GET dedup, LRU-bounded localStorage caches, unmount cleanups for timers and window listeners
13 lines
323 B
HTML
13 lines
323 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>TokenTracker Dashboard Preview</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/tt-preview.tsx"></script>
|
|
</body>
|
|
</html>
|