@lobehub/chat 1.97.4 → 1.97.5
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
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.97.5](https://github.com/lobehub/lobe-chat/compare/v1.97.4...v1.97.5)
|
6
|
+
|
7
|
+
<sup>Released on **2025-07-10**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Fix: solve the loading was strange spin when switch show.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Fix: solve the loading was strange spin when switch show, closes [#8333](https://github.com/lobehub/lobe-chat/issues/8333) ([07197e7](https://github.com/lobehub/lobe-chat/commit/07197e7))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.97.4](https://github.com/lobehub/lobe-chat/compare/v1.97.3...v1.97.4)
|
6
31
|
|
7
32
|
<sup>Released on **2025-07-10**</sup>
|
package/README.zh-CN.md
CHANGED
@@ -598,9 +598,9 @@ LobeChat 提供了 Vercel 的 自托管版本 和 [Docker 镜像][docker-release
|
|
598
598
|
[![][docker-size-shield]][docker-size-link]
|
599
599
|
[![][docker-pulls-shield]][docker-pulls-link]
|
600
600
|
|
601
|
-
|
601
|
+
我们提供了一个用于在您自己的私有设备上部署 LobeChat 服务的 Docker 镜像。请使用以下命令启动 LobeChat 服务:
|
602
602
|
|
603
|
-
1.
|
603
|
+
1. 创建一个用于存储文件的文件夹
|
604
604
|
|
605
605
|
```fish
|
606
606
|
$ mkdir lobe-chat-db && cd lobe-chat-db
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.97.
|
3
|
+
"version": "1.97.5",
|
4
4
|
"description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
5
5
|
"keywords": [
|
6
6
|
"framework",
|
@@ -86,7 +86,7 @@ const SystemAgentForm = memo(
|
|
86
86
|
}) as FormItemProps,
|
87
87
|
].filter(Boolean),
|
88
88
|
extra: (
|
89
|
-
<Flexbox>
|
89
|
+
<Flexbox direction="horizontal" gap={8}>
|
90
90
|
{loading && <Icon icon={Loader2Icon} size={16} spin style={{ opacity: 0.5 }} />}
|
91
91
|
{allowDisable && (
|
92
92
|
<Switch
|