Skip to content

Commit 84d5e9d

Browse files
committed
refactor: update references from TBB to GitHub Usage Report Viewer
1 parent 8eaea58 commit 84d5e9d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/instructions/ai-model-brands.instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ applyTo: "**/chart-theme.ts"
55

66
# AI Model Provider Brand Reference
77

8-
When rendering model names, charts, badges, or avatars in TBB, use these official brand colors and assets.
8+
When rendering model names, charts, badges, or avatars in the GitHub Usage Report Viewer, use these official brand colors and assets.
99

1010
## Brand Colors
1111

PERFORMANCE_AUDIT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TBB Performance Audit
1+
# Performance Audit
22

33
**Date:** March 28, 2026
44
**Tool:** Chrome DevTools MCP (Lighthouse + Performance Trace)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Supported Reports
88

9-
TBB auto-detects the report type from CSV headers. Drop one file or a whole zip.
9+
Auto-detects the report type from CSV headers. Drop one file or a whole zip.
1010

1111
| Report | What you get |
1212
|---|---|

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<meta property="og:image" content="https://austenstone.github.io/github-actions-usage-report/og-image.png" />
2222
<meta property="og:image:width" content="1200" />
2323
<meta property="og:image:height" content="630" />
24-
<meta property="og:site_name" content="TBB" />
24+
<meta property="og:site_name" content="GitHub Usage Report Viewer" />
2525
<meta property="og:locale" content="en_US" />
2626

2727
<!-- Twitter -->
@@ -127,9 +127,9 @@
127127
<body>
128128
<noscript>
129129
<div style="padding: 2rem; text-align: center; font-family: system-ui, sans-serif;">
130-
<h1>TBB — GitHub Copilot Billing Dashboard</h1>
130+
<h1>GitHub Usage Report Viewer</h1>
131131
<p>This application requires JavaScript to run. Please enable JavaScript in your browser settings.</p>
132-
<p>TBB lets you drag-and-drop GitHub billing CSVs to visualize Copilot spend, premium request usage, token consumption, and model breakdowns all client-side with zero data leaving your browser.</p>
132+
<p>Drag-and-drop GitHub billing CSVs to visualize Copilot spend, premium request usage, token consumption, and model breakdowns, all client-side with zero data leaving your browser.</p>
133133
</div>
134134
</noscript>
135135
<div id="root"></div>

src/hooks/useBrowserTitle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import { formatDateRangeCompact } from '../lib/formatters';
77
export function useBrowserTitle(activeReport: ParsedReport | null): void {
88
useEffect(() => {
99
if (!activeReport) {
10-
document.title = 'TBB — GitHub Billing Dashboard';
10+
document.title = 'GitHub Usage Report Viewer';
1111
return;
1212
}
1313
const schema = getReportSchema(activeReport.type);
1414
const dateLabel = formatDateRangeCompact(activeReport.dateRange.start, activeReport.dateRange.end);
1515
const label = dateLabel ? `${schema.label} (${dateLabel})` : schema.label;
16-
document.title = `${label} — TBB | GitHub Billing Dashboard`;
16+
document.title = `${label} | GitHub Usage Report Viewer`;
1717
}, [activeReport]);
1818
}

0 commit comments

Comments
 (0)