You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add spring-physics value animation for smooth throughput transitions
- Make ping target configurable via --ping flag and ping_target config (default 1.1.1.1)
- Add --json-stream continuous JSON Lines output for real-time pipelines
- Persist daily traffic totals to ~/.config/flow/stats.json across restarts
- Support custom theme .toml files in ~/.config/flow/themes/
- Add make check target (fmt, vet, lint, test)
- Add ROADMAP.md and expand test coverage (animate, history persist, ping)
- Bump VERSION to 0.2.0 and update CHANGELOG/README
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,18 @@
1
+
## [0.2.0] - 2026-07-15
2
+
3
+
### Added
4
+
- Spring-smoothed value animation — Throughput values now glide smoothly toward their targets using spring physics instead of snapping, matching the architecture documented in README.
5
+
- Configurable ping target — Customize the latency check host via `ping_target` in config or `--ping` CLI flag (default: 1.1.1.1).
6
+
- Streaming JSON output (`--json-stream`) — Continuous JSON Lines output to stdout for piping into other tools, one sample per line.
7
+
- Daily totals persistence — Today's traffic totals are saved to `~/.config/flow/stats.json` on quit and restored on next launch, so totals survive process restarts.
8
+
- Custom theme files — Place `.toml` files in `~/.config/flow/themes/` to define user themes with custom colors and gradients, automatically picked up at startup.
9
+
- ROADWAY.md — Published project roadmap covering v0.2.x through v0.5.x.
10
+
- Expanded test coverage — New test suites for animate package (spring physics, easing) and history persistence (save/load round-trip).
11
+
12
+
### Changed
13
+
- VERSION bumped to 0.2.0.
14
+
- Makefile — Added `make check` target for format, vet, lint, and test in one command.
0 commit comments