From 1772d5c4b65087832524274961b1f308b85b5a52 Mon Sep 17 00:00:00 2001 From: Dogtiti <499960698@qq.com> Date: Fri, 26 Jul 2024 16:00:25 +0800 Subject: [PATCH 1/3] chore: update owner --- app/components/exporter.tsx | 2 +- app/constant.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/exporter.tsx b/app/components/exporter.tsx index 948807d4c..8210f61fb 100644 --- a/app/components/exporter.tsx +++ b/app/components/exporter.tsx @@ -541,7 +541,7 @@ export function ImagePreviewer(props: {
NextChat
- github.com/Yidadaa/ChatGPT-Next-Web + github.com/ChatGPTNextWeb/ChatGPT-Next-Web
diff --git a/app/constant.ts b/app/constant.ts index 0eb3f41e9..ec8a13874 100644 --- a/app/constant.ts +++ b/app/constant.ts @@ -1,4 +1,4 @@ -export const OWNER = "Yidadaa"; +export const OWNER = "ChatGPTNextWeb"; export const REPO = "ChatGPT-Next-Web"; export const REPO_URL = `https://github.com/${OWNER}/${REPO}`; export const ISSUE_URL = `https://github.com/${OWNER}/${REPO}/issues`; From 8b513537b7e9755ec3ede1de30a791fd579ecedc Mon Sep 17 00:00:00 2001 From: lloydzhou Date: Fri, 26 Jul 2024 19:24:16 +0800 Subject: [PATCH 2/3] release v2.14.0 --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 86faf4c3c..feef57d16 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -9,7 +9,7 @@ }, "package": { "productName": "NextChat", - "version": "2.13.1" + "version": "2.14.0" }, "tauri": { "allowlist": { From 3e0b191491f822a1ef09cb16059bb27699d3f0ed Mon Sep 17 00:00:00 2001 From: sijinhui Date: Sat, 27 Jul 2024 21:57:21 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/app/(auth)/login/user-login-core.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/app/(auth)/login/user-login-core.tsx b/app/app/(auth)/login/user-login-core.tsx index a14d615a0..8ba0cb50e 100644 --- a/app/app/(auth)/login/user-login-core.tsx +++ b/app/app/(auth)/login/user-login-core.tsx @@ -21,6 +21,7 @@ import { import type { FormProps, TabsProps } from "antd"; import { SignInOptions } from "next-auth/react"; import { getSession } from "next-auth/react"; +import { FieldData } from "rc-field-form/es/interface"; export default function UserLoginCore() { const [loading, setLoading] = useState(false); @@ -153,7 +154,7 @@ export default function UserLoginCore() { 无权限,请确认用户名正确并等待审批
- 或联系管理员 + 或联系管理员 小司
), }); @@ -172,7 +173,7 @@ export default function UserLoginCore() { name: "password", errors: [result.error], }, - ]); + ] as FieldData[]); } if (loginProvider === "email") { loginForm.setFields([ @@ -180,7 +181,7 @@ export default function UserLoginCore() { name: "email", errors: [result.error], }, - ]); + ] as FieldData[]); } } console.log("response,", result);