@lobehub/chat 1.83.0 → 1.83.2
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.
@@ -1,4 +1,4 @@
|
|
1
|
-
name: Release Desktop
|
1
|
+
name: Release Desktop Beta
|
2
2
|
|
3
3
|
on:
|
4
4
|
release:
|
@@ -67,14 +67,12 @@ jobs:
|
|
67
67
|
version="${{ github.event.release.tag_name }}"
|
68
68
|
version="${version#v}"
|
69
69
|
echo "version=${version}" >> $GITHUB_OUTPUT
|
70
|
-
echo "is_pr_build=false" >> $GITHUB_OUTPUT
|
71
70
|
echo "📦 Release Version: ${version}"
|
72
71
|
|
73
72
|
# 输出版本信息总结,方便在 GitHub Actions 界面查看
|
74
73
|
- name: Version Summary
|
75
74
|
run: |
|
76
75
|
echo "🚦 Release Version: ${{ steps.set_version.outputs.version }}"
|
77
|
-
echo "🔄 Is PR Build: ${{ steps.set_version.outputs.is_pr_build }}"
|
78
76
|
|
79
77
|
build:
|
80
78
|
needs: [version, test]
|
@@ -114,7 +112,7 @@ jobs:
|
|
114
112
|
# macOS 构建处理
|
115
113
|
- name: Build artifact on macOS
|
116
114
|
if: runner.os == 'macOS'
|
117
|
-
run: npm run desktop:build
|
115
|
+
run: npm run desktop:build -- --publish never
|
118
116
|
env:
|
119
117
|
UPDATE_CHANNEL: 'stable'
|
120
118
|
APP_URL: http://localhost:3015
|
@@ -136,7 +134,7 @@ jobs:
|
|
136
134
|
# 非 macOS 平台构建处理
|
137
135
|
- name: Build artifact on other platforms
|
138
136
|
if: runner.os != 'macOS'
|
139
|
-
run: npm run desktop:build
|
137
|
+
run: npm run desktop:build -- --publish never
|
140
138
|
env:
|
141
139
|
UPDATE_CHANNEL: 'stable'
|
142
140
|
APP_URL: http://localhost:3015
|
@@ -161,7 +159,7 @@ jobs:
|
|
161
159
|
# 正式版发布 job
|
162
160
|
publish-release:
|
163
161
|
needs: [build, version]
|
164
|
-
name:
|
162
|
+
name: Publish Beta Release
|
165
163
|
runs-on: ubuntu-latest
|
166
164
|
# Grant write permission to contents for uploading release assets
|
167
165
|
permissions:
|
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,40 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.83.2](https://github.com/lobehub/lobe-chat/compare/v1.83.1...v1.83.2)
|
6
|
+
|
7
|
+
<sup>Released on **2025-04-27**</sup>
|
8
|
+
|
9
|
+
<br/>
|
10
|
+
|
11
|
+
<details>
|
12
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
13
|
+
|
14
|
+
</details>
|
15
|
+
|
16
|
+
<div align="right">
|
17
|
+
|
18
|
+
[](#readme-top)
|
19
|
+
|
20
|
+
</div>
|
21
|
+
|
22
|
+
### [Version 1.83.1](https://github.com/lobehub/lobe-chat/compare/v1.83.0...v1.83.1)
|
23
|
+
|
24
|
+
<sup>Released on **2025-04-27**</sup>
|
25
|
+
|
26
|
+
<br/>
|
27
|
+
|
28
|
+
<details>
|
29
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
30
|
+
|
31
|
+
</details>
|
32
|
+
|
33
|
+
<div align="right">
|
34
|
+
|
35
|
+
[](#readme-top)
|
36
|
+
|
37
|
+
</div>
|
38
|
+
|
5
39
|
## [Version 1.83.0](https://github.com/lobehub/lobe-chat/compare/v1.82.10...v1.83.0)
|
6
40
|
|
7
41
|
<sup>Released on **2025-04-27**</sup>
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"build": "npm run typecheck && electron-vite build",
|
14
14
|
"build-local": "npm run build && electron-builder --dir --config electron-builder.js --c.mac.notarize=false -c.mac.identity=null --c.asar=false",
|
15
15
|
"build:linux": "npm run build && electron-builder --linux --config electron-builder.js",
|
16
|
-
"build:mac": "npm run build && electron-builder --mac --config electron-builder.js",
|
16
|
+
"build:mac": "npm run build && electron-builder --mac --config electron-builder.js --publish never",
|
17
17
|
"build:win": "npm run build && electron-builder --win --config electron-builder.js",
|
18
18
|
"electron:dev": "electron-vite dev",
|
19
19
|
"electron:run-unpack": "electron .",
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.83.
|
3
|
+
"version": "1.83.2",
|
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",
|