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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Display: add optional workday markers for weekly progress bars (#1102). Thanks @Yuxin-Qiao!

### Fixed
- Groq: show a distinct Groq provider icon instead of reusing the Grok glyph (#1112). Thanks @kiankyars!
- Claude: normalize OAuth extra-usage spend limits from minor units so Enterprise spend displays as currency instead of 100x too high (#1114, fixes #1111). Thanks @Yuxin-Qiao!
- OpenCode Go: read local usage history before falling back to browser-cookie dashboard fetches (#1021). Thanks @sopenlaz0!
- Menu bar: show extra-usage spend as currency text for Claude and Cursor when that metric is selected (#1107). Thanks @Yuxin-Qiao!
Expand Down
2 changes: 1 addition & 1 deletion Sources/CodexBar/Resources/ProviderIcon-groq.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions Tests/CodexBarTests/ProviderIconResourcesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ struct ProviderIconResourcesTests {
}
}

@Test
func `groq and grok provider icons are distinct`() throws {
let root = try Self.repoRoot()
let resources = root.appending(path: "Sources/CodexBar/Resources", directoryHint: .isDirectory)
let groq = try String(contentsOf: resources.appending(path: "ProviderIcon-groq.svg"), encoding: .utf8)
let grok = try String(contentsOf: resources.appending(path: "ProviderIcon-grok.svg"), encoding: .utf8)

#expect(groq != grok)
}

private static func repoRoot() throws -> URL {
var dir = URL(filePath: #filePath).deletingLastPathComponent()
for _ in 0..<12 {
Expand Down