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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,12 @@

All notable changes are recorded here. Versions follow [SemVer](https://semver.org/).

## v0.7.15 (2026-08-24)

- **趋势图渐变修复(rant 2026-08-24T12:32:18,PR #138)** — 交易趋势图填充面积不再显示黑色实心:`<stop>` 的 stop-color/stop-opacity 改为内联属性(复用仪表盘 sparkline 写法)+ 每实例唯一渐变 id,删除不可靠的 CSS class 方案;4 个指标切换均显示对应色 0.35→0 渐变面积
- **交易列表时间精确显示(rant 2026-08-24T12:38:44,PR #139)** — 交易记录列表时间列由相对时间("3 小时前")改为精确本地时间(`2026-08-24 12:36:12`),相对时间移入悬停提示
- **API Key 最近使用真实数据(rant 2026-08-24T12:41:25,PR #140)** — 设置页 API Key「最近使用」不再硬编码"从未":api_keys 表新增 last_used 字段,网关计费时更新,list 接口返回真实时间;未使用过的 key 才显示"从未"

## v0.7.14 (2026-08-24)

- **交易记录页真分页(rant 2026-08-24T10:51:57,PR #135)** — 修复假分页:改为后端翻页,`/api/transactions` 支持 `page`/`pageSize`,前端按表格分页参数拉取并显示真实总数(7320 条全部可达),紧凑省略号分页器 + 翻页滚动回顶部
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[package]
name = "aitokenpool"
version = "0.7.14"
version = "0.7.15"
edition = "2021"
description = "AI Token 共享池 — 企业 key 池 + 公共共享市场"
license = "MIT"
Expand Down
10 changes: 5 additions & 5 deletions ui/index.html
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AITokenPool</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%234ecdc4'/%3E%3Cstop offset='1' stop-color='%232a9d8f'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='64' height='64' rx='14' fill='url(%23g)'/%3E%3Ctext x='32' y='43' font-family='-apple-system,Segoe UI,Arial,sans-serif' font-size='30' font-weight='800' text-anchor='middle' fill='%23062021'%3EAT%3C/text%3E%3C/svg%3E">
<link rel="stylesheet" href="css/style.css?v=20260824-8">
<link rel="stylesheet" href="css/style.css?v=20260824-9">
</head>
<body>

Expand DownExpand Up@@ -683,9 +683,9 @@ <h3 id="chat-title">使用模型</h3>
</div>
</div>

<script src="js/api.js?v=20260824-8"></script>
<script src="js/data.js?v=20260824-8"></script>
<script src="js/i18n.js?v=20260824-8"></script>
<script src="js/app.js?v=20260824-8"></script>
<script src="js/api.js?v=20260824-9"></script>
<script src="js/data.js?v=20260824-9"></script>
<script src="js/i18n.js?v=20260824-9"></script>
<script src="js/app.js?v=20260824-9"></script>
</body>
</html>
Loading