@lightharu/krouter 1.8.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable Krouter changes are tracked here.
|
|
4
|
+
|
|
5
|
+
## 1.8.1 - 2026-06-06
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed account usage cards showing inflated quota percentages such as `300%` or `690%` while the raw quota was still low, for example `1/50` or `3/50`.
|
|
10
|
+
- Normalized `percentUsed` to the internal `0..1` ratio across backend refresh, frontend storage load, direct account updates, and registration/import flows.
|
|
11
|
+
- Existing saved accounts with stale percentage values are corrected automatically when the dashboard loads or when backend auto refresh updates account quota.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Added this changelog and included it in the npm package so every git/version update has an audit trail.
|
|
16
|
+
|
|
17
|
+
## 1.8.0 - 2026-06-06
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- Published Krouter as the public npm package `@lightharu/krouter`.
|
|
22
|
+
- Added the `krouter` CLI entry for dashboard startup, service status, tunnel management, and OpenClaw import.
|
|
23
|
+
- Added backend auto refresh for logged-in accounts so tokens and quota can be refreshed while the web dashboard is not open.
|
|
24
|
+
- Updated README and project metadata for the Krouter web dashboard, CLI, tunnel, API proxy, and OpenClaw workflow.
|
package/README.md
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
|
|
8
8
|
**Run the dashboard on localhost, publish it through a tunnel when needed, and let the backend/CLI keep the proxy service alive.**
|
|
9
9
|
|
|
10
|
-
[](./package.json)
|
|
11
11
|
[](./LICENSE)
|
|
12
12
|
[](#openclaw-and-client-tools)
|
|
13
13
|
[](#quick-start)
|
|
14
14
|
|
|
15
|
-
[Quick Start](#quick-start) - [How It Works](#how-it-works) - [Features](#key-features) - [OpenClaw](#openclaw-and-client-tools) - [Deploy](#server-deployment)
|
|
15
|
+
[Quick Start](#quick-start) - [How It Works](#how-it-works) - [Features](#key-features) - [OpenClaw](#openclaw-and-client-tools) - [Deploy](#server-deployment) - [Changelog](./CHANGELOG.md)
|
|
16
16
|
</div>
|
|
17
17
|
|
|
18
18
|
---
|