docs: link install to releases page, add release-process guide

Replaces the "build from source only" Install section with a
Releases-page download path plus a SmartScreen note, and adds
docs/release-process.md so the tag-bump-build flow is captured for
future maintainers.
This commit is contained in:
2026-05-16 12:34:38 +07:00
parent 60cde291bd
commit 5fc9d18c67
6 changed files with 590 additions and 2 deletions
+13 -2
View File
@@ -55,10 +55,21 @@ environment.
## Install
Until packaged binaries are published, build from source:
### Download the latest release
Grab `claude-code-usage-bubble.exe` from the
[Releases page](https://github.com/tiennm99/claude-code-usage-bubble/releases/latest).
Put it anywhere on disk (e.g. `%LOCALAPPDATA%\ClaudeCodeUsageBubble\`) and
run it. The app self-updates from the same Releases feed.
**First-run note:** the binary is unsigned, so SmartScreen will show
"Windows protected your PC". Click **More info****Run anyway**. Code
signing is on the roadmap.
### Build from source
```powershell
git clone https://github.com/<your-fork>/claude-code-usage-bubble
git clone https://github.com/tiennm99/claude-code-usage-bubble
cd claude-code-usage-bubble
cargo build --release
```