@lobehub/chat 1.12.2 → 1.12.3

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.12.3](https://github.com/lobehub/lobe-chat/compare/v1.12.2...v1.12.3)
6
+
7
+ <sup>Released on **2024-08-22**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Hide settings in repo.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Hide settings in repo, closes [#3540](https://github.com/lobehub/lobe-chat/issues/3540) ([86c1165](https://github.com/lobehub/lobe-chat/commit/86c1165))
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
+
5
30
  ### [Version 1.12.2](https://github.com/lobehub/lobe-chat/compare/v1.12.1...v1.12.2)
6
31
 
7
32
  <sup>Released on **2024-08-22**</sup>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.12.2",
3
+ "version": "1.12.3",
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",
@@ -164,7 +164,7 @@
164
164
  "mammoth": "^1.8.0",
165
165
  "modern-screenshot": "^4.4.39",
166
166
  "nanoid": "^5.0.7",
167
- "next": "^14.2.4",
167
+ "next": "14.2.5",
168
168
  "next-auth": "5.0.0-beta.15",
169
169
  "next-sitemap": "^4.2.3",
170
170
  "numeral": "^2.0.6",
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
 
3
3
  import { Icon } from '@lobehub/ui';
4
- import { FileText, Settings2Icon } from 'lucide-react';
4
+ import { FileText } from 'lucide-react';
5
5
  import Link from 'next/link';
6
6
  import { usePathname } from 'next/navigation';
7
7
  import { memo, useMemo, useState } from 'react';
@@ -29,11 +29,11 @@ const FileMenu = memo<{ id: string }>(({ id }) => {
29
29
  // key: `/repos/${id}/testing`,
30
30
  // label: <Link href={`/repos/${id}/testing`}>{t('tab.testing')}</Link>,
31
31
  // },
32
- {
33
- icon: <Icon icon={Settings2Icon} />,
34
- key: `/repos/${id}/settings`,
35
- label: <Link href={`/repos/${id}/settings`}>{t('tab.settings')}</Link>,
36
- },
32
+ // {
33
+ // icon: <Icon icon={Settings2Icon} />,
34
+ // key: `/repos/${id}/settings`,
35
+ // label: <Link href={`/repos/${id}/settings`}>{t('tab.settings')}</Link>,
36
+ // },
37
37
  ],
38
38
  [t],
39
39
  );