@lobehub/chat 1.83.2 → 1.83.4

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.
@@ -112,7 +112,7 @@ jobs:
112
112
  # macOS 构建处理
113
113
  - name: Build artifact on macOS
114
114
  if: runner.os == 'macOS'
115
- run: npm run desktop:build -- --publish never
115
+ run: npm run desktop:build
116
116
  env:
117
117
  UPDATE_CHANNEL: 'stable'
118
118
  APP_URL: http://localhost:3015
@@ -134,7 +134,7 @@ jobs:
134
134
  # 非 macOS 平台构建处理
135
135
  - name: Build artifact on other platforms
136
136
  if: runner.os != 'macOS'
137
- run: npm run desktop:build -- --publish never
137
+ run: npm run desktop:build
138
138
  env:
139
139
  UPDATE_CHANNEL: 'stable'
140
140
  APP_URL: http://localhost:3015
@@ -185,10 +185,10 @@ jobs:
185
185
  with:
186
186
  tag_name: ${{ github.event.release.tag_name }}
187
187
  files: |
188
- ${{ needs.prepare-artifacts.outputs.artifact_path }}/latest*
189
- ${{ needs.prepare-artifacts.outputs.artifact_path }}/*.dmg*
190
- ${{ needs.prepare-artifacts.outputs.artifact_path }}/*.zip*
191
- ${{ needs.prepare-artifacts.outputs.artifact_path }}/*.exe*
192
- ${{ needs.prepare-artifacts.outputs.artifact_path }}/*.AppImage
188
+ release/latest*
189
+ release/*.dmg*
190
+ release/*.zip*
191
+ release/*.exe*
192
+ release/*.AppImage
193
193
  env:
194
194
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -2,6 +2,48 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.83.4](https://github.com/lobehub/lobe-chat/compare/v1.83.3...v1.83.4)
6
+
7
+ <sup>Released on **2025-04-27**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix cloud connection issue.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Fix cloud connection issue, closes [#7588](https://github.com/lobehub/lobe-chat/issues/7588) ([f572f57](https://github.com/lobehub/lobe-chat/commit/f572f57))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ### [Version 1.83.3](https://github.com/lobehub/lobe-chat/compare/v1.83.2...v1.83.3)
31
+
32
+ <sup>Released on **2025-04-27**</sup>
33
+
34
+ <br/>
35
+
36
+ <details>
37
+ <summary><kbd>Improvements and Fixes</kbd></summary>
38
+
39
+ </details>
40
+
41
+ <div align="right">
42
+
43
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
44
+
45
+ </div>
46
+
5
47
  ### [Version 1.83.2](https://github.com/lobehub/lobe-chat/compare/v1.83.1...v1.83.2)
6
48
 
7
49
  <sup>Released on **2025-04-27**</sup>
@@ -12,9 +12,9 @@
12
12
  "scripts": {
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
- "build:linux": "npm run build && electron-builder --linux --config electron-builder.js",
15
+ "build:linux": "npm run build && electron-builder --linux --config electron-builder.js --publish never",
16
16
  "build:mac": "npm run build && electron-builder --mac --config electron-builder.js --publish never",
17
- "build:win": "npm run build && electron-builder --win --config electron-builder.js",
17
+ "build:win": "npm run build && electron-builder --win --config electron-builder.js --publish never",
18
18
  "electron:dev": "electron-vite dev",
19
19
  "electron:run-unpack": "electron .",
20
20
  "format": "prettier --write ",
package/changelog/v1.json CHANGED
@@ -1,4 +1,18 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "fixes": [
5
+ "Fix cloud connection issue."
6
+ ]
7
+ },
8
+ "date": "2025-04-27",
9
+ "version": "1.83.4"
10
+ },
11
+ {
12
+ "children": {},
13
+ "date": "2025-04-27",
14
+ "version": "1.83.3"
15
+ },
2
16
  {
3
17
  "children": {},
4
18
  "date": "2025-04-27",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.83.2",
3
+ "version": "1.83.4",
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",
@@ -131,7 +131,6 @@ const ConnectionMode = memo<ConnectionModeProps>(({ setIsOpen, setWaiting }) =>
131
131
 
132
132
  // try to connect
133
133
  setWaiting(true);
134
- console.log('selectedOption:', selectedOption);
135
134
  await connect({ remoteServerUrl: selfHostedUrl, storageMode: selectedOption });
136
135
  };
137
136
 
@@ -29,7 +29,7 @@ export const remoteSyncSlice: StateCreator<
29
29
  ElectronRemoteServerAction
30
30
  > = (set, get) => ({
31
31
  connectRemoteServer: async (values) => {
32
- if (!values.remoteServerUrl) return;
32
+ if (values.storageMode === 'selfHost' && !values.remoteServerUrl) return;
33
33
 
34
34
  set({ isConnectingServer: true });
35
35
  try {