Skip to content

Commit a432004

Browse files
committed
v1.0.0
Add taskbar widget for monitoring Claude Code API usage
0 parents  commit a432004

File tree

15 files changed

+2925
-0
lines changed

15 files changed

+2925
-0
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: CodeZeno

.github/screenshot.png

12 KB
Loading

.github/workflows/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
build:
13+
runs-on: windows-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- uses: dtolnay/rust-toolchain@stable
18+
19+
- name: Build release binary
20+
run: cargo build --release
21+
22+
- name: Create GitHub Release
23+
uses: softprops/action-gh-release@v2
24+
with:
25+
files: target/release/claude-code-usage-monitor.exe
26+
generate_release_notes: true

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Rust build artifacts
2+
/target/
3+
4+
# Cargo lock (optional for binaries, included by default)
5+
# Cargo.lock
6+
7+
# Debug/log files
8+
*.log
9+
10+
# IDE
11+
.idea/
12+
.vscode/
13+
*.swp
14+
*.swo
15+
*~
16+
17+
# OS
18+
Thumbs.db
19+
Desktop.ini
20+
.DS_Store

0 commit comments

Comments
 (0)