@lobehub/lobehub 2.0.0-next.283 → 2.0.0-next.284
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,39 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.284](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.283...v2.0.0-next.284)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2026-01-14**</sup>
|
|
8
|
+
|
|
9
|
+
#### ♻ Code Refactoring
|
|
10
|
+
|
|
11
|
+
- **misc**: Remove the old lobehub plugins.
|
|
12
|
+
|
|
13
|
+
#### 🐛 Bug Fixes
|
|
14
|
+
|
|
15
|
+
- **misc**: Slove the settings/profile change but not refresh the profiles.
|
|
16
|
+
|
|
17
|
+
<br/>
|
|
18
|
+
|
|
19
|
+
<details>
|
|
20
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
21
|
+
|
|
22
|
+
#### Code refactoring
|
|
23
|
+
|
|
24
|
+
- **misc**: Remove the old lobehub plugins, closes [#11498](https://github.com/lobehub/lobe-chat/issues/11498) ([e5b47df](https://github.com/lobehub/lobe-chat/commit/e5b47df))
|
|
25
|
+
|
|
26
|
+
#### What's fixed
|
|
27
|
+
|
|
28
|
+
- **misc**: Slove the settings/profile change but not refresh the profiles, closes [#11497](https://github.com/lobehub/lobe-chat/issues/11497) ([f1e2111](https://github.com/lobehub/lobe-chat/commit/f1e2111))
|
|
29
|
+
|
|
30
|
+
</details>
|
|
31
|
+
|
|
32
|
+
<div align="right">
|
|
33
|
+
|
|
34
|
+
[](#readme-top)
|
|
35
|
+
|
|
36
|
+
</div>
|
|
37
|
+
|
|
5
38
|
## [Version 2.0.0-next.283](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.282...v2.0.0-next.283)
|
|
6
39
|
|
|
7
40
|
<sup>Released on **2026-01-14**</sup>
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {
|
|
4
|
+
"improvements": [
|
|
5
|
+
"Remove the old lobehub plugins."
|
|
6
|
+
],
|
|
7
|
+
"fixes": [
|
|
8
|
+
"Slove the settings/profile change but not refresh the profiles."
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"date": "2026-01-14",
|
|
12
|
+
"version": "2.0.0-next.284"
|
|
13
|
+
},
|
|
2
14
|
{
|
|
3
15
|
"children": {
|
|
4
16
|
"improvements": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/lobehub",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.284",
|
|
4
4
|
"description": "LobeHub - an open-source,comprehensive AI Agent 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",
|
|
@@ -10,7 +10,6 @@ import { PluginStoreTabs } from '@/store/tool/slices/oldStore';
|
|
|
10
10
|
import AddPluginButton from './AddPluginButton';
|
|
11
11
|
import InstalledList from './InstalledList';
|
|
12
12
|
import McpList from './McpList';
|
|
13
|
-
import PluginList from './PluginList';
|
|
14
13
|
import Search from './Search';
|
|
15
14
|
|
|
16
15
|
export const Content = memo(() => {
|
|
@@ -21,9 +20,8 @@ export const Content = memo(() => {
|
|
|
21
20
|
|
|
22
21
|
const options = [
|
|
23
22
|
{ label: t('store.tabs.mcp'), value: PluginStoreTabs.MCP },
|
|
24
|
-
{ label: t('store.tabs.old'), value: PluginStoreTabs.Plugin },
|
|
25
23
|
{ label: t('store.tabs.installed'), value: PluginStoreTabs.Installed },
|
|
26
|
-
]
|
|
24
|
+
] as SegmentedOptions;
|
|
27
25
|
|
|
28
26
|
return (
|
|
29
27
|
<Flexbox
|
|
@@ -48,7 +46,6 @@ export const Content = memo(() => {
|
|
|
48
46
|
<Search />
|
|
49
47
|
</Flexbox>
|
|
50
48
|
{listType === PluginStoreTabs.MCP && <McpList />}
|
|
51
|
-
{listType === PluginStoreTabs.Plugin && <PluginList />}
|
|
52
49
|
{listType === PluginStoreTabs.Installed && <InstalledList keywords={keywords} />}
|
|
53
50
|
</Flexbox>
|
|
54
51
|
);
|
|
@@ -64,6 +64,7 @@ const GlobalLayout = async ({
|
|
|
64
64
|
serverConfig={serverConfig}
|
|
65
65
|
>
|
|
66
66
|
<QueryProvider>
|
|
67
|
+
<StoreInitialization />
|
|
67
68
|
<GroupWizardProvider>
|
|
68
69
|
<DragUploadProvider>
|
|
69
70
|
<LazyMotion features={domMax}>
|
|
@@ -76,7 +77,6 @@ const GlobalLayout = async ({
|
|
|
76
77
|
</DragUploadProvider>
|
|
77
78
|
</GroupWizardProvider>
|
|
78
79
|
</QueryProvider>
|
|
79
|
-
<StoreInitialization />
|
|
80
80
|
<Suspense>
|
|
81
81
|
{ENABLE_BUSINESS_FEATURES ? <ReferralProvider /> : null}
|
|
82
82
|
<ImportSettings />
|