@liguoshuai/pi-web-chat 1.9.0 → 1.9.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/docs/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/public/index.html +5 -1
- package/public/style.css +14 -0
package/docs/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [1.9.1] - 2026-08-29
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **侧边栏底部开源项目跳转链接 (Repository Link in Sidebar Bottom)**:
|
|
14
|
+
- 在侧边栏底部元信息区域增加 `pi-web-chat` 项目开源仓库链接(`https://github.com/liguoshuai-1990/pi-web-chat`),方便用户快速跳转与查阅源码。
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
10
18
|
## [1.9.0] - 2026-08-29
|
|
11
19
|
|
|
12
20
|
### Added
|
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -24,7 +24,11 @@
|
|
|
24
24
|
<div class="sidebar-bottom">
|
|
25
25
|
<div id="connStatus" class="conn-status" title="点击可重新连接"><span id="connDot" style="color: var(--danger);">●</span> <span id="connLabel">连接中…</span></div>
|
|
26
26
|
<div class="sidebar-bottom-meta">
|
|
27
|
-
<
|
|
27
|
+
<div class="sidebar-bottom-links">
|
|
28
|
+
<a href="https://pi.dev" target="_blank" rel="noopener">pi.dev</a>
|
|
29
|
+
<span class="sidebar-link-sep">·</span>
|
|
30
|
+
<a href="https://github.com/liguoshuai-1990/pi-web-chat" target="_blank" rel="noopener">pi-web-chat</a>
|
|
31
|
+
</div>
|
|
28
32
|
<span id="appVersion" class="app-version" title="pi-web-chat 版本"></span>
|
|
29
33
|
</div>
|
|
30
34
|
</div>
|
package/public/style.css
CHANGED
|
@@ -235,6 +235,20 @@ body {
|
|
|
235
235
|
display: flex;
|
|
236
236
|
align-items: center;
|
|
237
237
|
justify-content: space-between;
|
|
238
|
+
gap: 8px;
|
|
239
|
+
}
|
|
240
|
+
.sidebar-bottom-links {
|
|
241
|
+
display: inline-flex;
|
|
242
|
+
align-items: center;
|
|
243
|
+
gap: 5px;
|
|
244
|
+
min-width: 0;
|
|
245
|
+
overflow: hidden;
|
|
246
|
+
text-overflow: ellipsis;
|
|
247
|
+
white-space: nowrap;
|
|
248
|
+
}
|
|
249
|
+
.sidebar-link-sep {
|
|
250
|
+
color: var(--text-dim);
|
|
251
|
+
font-size: 11px;
|
|
238
252
|
}
|
|
239
253
|
.app-version {
|
|
240
254
|
font-size: 11px;
|