From c9099ca0a5c86ccdcbfd7134daca62f067ca95aa Mon Sep 17 00:00:00 2001 From: lyf <1910527151@qq.com> Date: Wed, 7 Aug 2024 10:55:02 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E6=97=A0=E9=9A=9C=E7=A2=8D=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E5=92=8C=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/button.tsx | 10 +++++++++- app/components/chat.tsx | 5 +++++ app/components/sidebar.tsx | 12 ++++++++++-- app/locales/cn.ts | 1 + 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/app/components/button.tsx b/app/components/button.tsx index c6039acc292..87b4abd30f9 100644 --- a/app/components/button.tsx +++ b/app/components/button.tsx @@ -18,6 +18,7 @@ export function IconButton(props: { tabIndex?: number; autoFocus?: boolean; style?: CSSProperties; + aria?: string; }) { return ( ); diff --git a/app/components/chat.tsx b/app/components/chat.tsx index e4ba869c3bf..b18c86708a7 100644 --- a/app/components/chat.tsx +++ b/app/components/chat.tsx @@ -1337,6 +1337,8 @@ function _Chat() { } bordered + title={Locale.Chat.EditMessage.Title} + aria={Locale.Chat.EditMessage.Title} onClick={() => setIsEditingMessage(true)} /> @@ -1356,6 +1358,8 @@ function _Chat() { : } bordered + title={Locale.Chat.Actions.FullScreen} + aria={Locale.Chat.Actions.FullScreen} onClick={() => { config.update( (config) => (config.tightBorder = !config.tightBorder), @@ -1407,6 +1411,7 @@ function _Chat() {
} + aria={Locale.Chat.Actions.Edit} onClick={async () => { const newMessage = await showPrompt( Locale.Chat.Actions.Edit, diff --git a/app/components/sidebar.tsx b/app/components/sidebar.tsx index d8def056e52..4ec0f8c84f5 100644 --- a/app/components/sidebar.tsx +++ b/app/components/sidebar.tsx @@ -297,12 +297,20 @@ export function SideBar(props: { className?: string }) {
- } shadow /> + } + shadow + />
- } shadow /> + } + shadow + />
diff --git a/app/locales/cn.ts b/app/locales/cn.ts index 4f47403abe2..4db555422c9 100644 --- a/app/locales/cn.ts +++ b/app/locales/cn.ts @@ -42,6 +42,7 @@ const cn = { PinToastAction: "查看", Delete: "删除", Edit: "编辑", + FullScreen: "全屏", }, Commands: { new: "新建聊天", From 14ff46b5cd4b2b80b41a0305952410c308353f5a Mon Sep 17 00:00:00 2001 From: lyf <1910527151@qq.com> Date: Wed, 7 Aug 2024 13:01:08 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E6=97=A0=E9=9A=9C=E7=A2=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/input-range.tsx | 3 ++ app/components/mask.tsx | 6 ++++ app/components/model-config.tsx | 11 +++++++ app/components/sd/sd-panel.tsx | 3 ++ app/components/settings.tsx | 52 +++++++++++++++++++++++++++++++++ app/components/ui-lib.tsx | 13 +++++++-- app/locales/cn.ts | 1 + app/locales/en.ts | 2 ++ 8 files changed, 89 insertions(+), 2 deletions(-) diff --git a/app/components/input-range.tsx b/app/components/input-range.tsx index a8ee9532b38..08756e2c8d8 100644 --- a/app/components/input-range.tsx +++ b/app/components/input-range.tsx @@ -9,6 +9,7 @@ interface InputRangeProps { min: string; max: string; step: string; + aria: string; } export function InputRange({ @@ -19,11 +20,13 @@ export function InputRange({ min, max, step, + aria, }: InputRangeProps) { return (
{title || value} setShowPicker(false)} >
setShowPicker(true)} style={{ cursor: "pointer" }} > @@ -139,6 +141,7 @@ export function MaskConfig(props: { @@ -153,6 +156,7 @@ export function MaskConfig(props: { subTitle={Locale.Mask.Config.HideContext.SubTitle} > { @@ -169,6 +173,7 @@ export function MaskConfig(props: { subTitle={Locale.Mask.Config.Share.SubTitle} > } text={Locale.Mask.Config.Share.Action} onClick={copyMaskLink} @@ -182,6 +187,7 @@ export function MaskConfig(props: { subTitle={Locale.Mask.Config.Sync.SubTitle} > { diff --git a/app/components/model-config.tsx b/app/components/model-config.tsx index 346fd3a7129..6ce25f6642c 100644 --- a/app/components/model-config.tsx +++ b/app/components/model-config.tsx @@ -17,6 +17,7 @@ export function ModelConfigList(props: { <> @@ -159,6 +166,7 @@ export function ModelConfigList(props: { subTitle={Locale.Settings.InputTemplate.SubTitle} > @@ -175,6 +183,7 @@ export function ModelConfigList(props: { subTitle={Locale.Settings.HistoryCount.SubTitle} > diff --git a/app/components/sd/sd-panel.tsx b/app/components/sd/sd-panel.tsx index c27fbd54e2c..a71e560ddef 100644 --- a/app/components/sd/sd-panel.tsx +++ b/app/components/sd/sd-panel.tsx @@ -192,6 +192,7 @@ export function ControlParam(props: { required={item.required} > { if (await showConfirm(Locale.Settings.Danger.Reset.Confirm)) { @@ -260,6 +261,7 @@ function DangerItems() { subTitle={Locale.Settings.Danger.Clear.SubTitle} > { if (await showConfirm(Locale.Settings.Danger.Clear.Confirm)) { @@ -513,6 +515,7 @@ function SyncItems() { >
} text={Locale.UI.Config} onClick={() => { @@ -543,6 +546,7 @@ function SyncItems() { >
} text={Locale.UI.Export} onClick={() => { @@ -550,6 +554,7 @@ function SyncItems() { }} /> } text={Locale.UI.Import} onClick={() => { @@ -687,6 +692,7 @@ export function Settings() { subTitle={Locale.Settings.Access.CustomEndpoint.SubTitle} > @@ -706,6 +712,7 @@ export function Settings() { subTitle={Locale.Settings.Access.OpenAI.Endpoint.SubTitle} >
} onClick={() => navigate(Path.Home)} bordered @@ -1267,6 +1304,8 @@ export function Settings() { open={showEmojiPicker} >
{ setShowEmojiPicker(!showEmojiPicker); @@ -1304,6 +1343,7 @@ export function Settings() { { updateConfig( @@ -1339,6 +1380,7 @@ export function Settings() { @@ -1408,6 +1453,7 @@ export function Settings() { subTitle={Locale.Settings.SendPreviewBubble.SubTitle} > @@ -1428,6 +1474,7 @@ export function Settings() { subTitle={Locale.Settings.Mask.Splash.SubTitle} > @@ -1445,6 +1492,7 @@ export function Settings() { subTitle={Locale.Settings.Mask.Builtin.SubTitle} > @@ -1463,6 +1511,7 @@ export function Settings() { subTitle={Locale.Settings.Prompt.Disable.SubTitle} > @@ -1482,6 +1531,7 @@ export function Settings() { )} > } text={Locale.Settings.Prompt.Edit} onClick={() => setShowPromptModal(true)} @@ -1503,6 +1553,7 @@ export function Settings() { subTitle={Locale.Settings.Access.Provider.SubTitle} > ) { - const [visible, setVisible] = useState(false); +// 定义一个接口 AriaProps,包含一个可选的 aria 属性 +interface AriaProps { + aria?: string; +} +// 定义一个接口 PasswordInputProps,继承自 HTMLProps 和 AriaProps +// 用于描述密码输入框组件的属性 +interface PasswordInputProps extends HTMLProps, AriaProps {} + +export function PasswordInput(props: PasswordInputProps) { + const [visible, setVisible] = useState(false); function changeVisibility() { setVisible(!visible); } @@ -275,6 +283,7 @@ export function PasswordInput(props: HTMLProps) { return (
: } onClick={changeVisibility} className={"password-eye"} diff --git a/app/locales/cn.ts b/app/locales/cn.ts index 4db555422c9..02b3a9d403a 100644 --- a/app/locales/cn.ts +++ b/app/locales/cn.ts @@ -133,6 +133,7 @@ const cn = { Settings: { Title: "设置", SubTitle: "所有设置选项", + ShowPassword: "显示密码", Danger: { Reset: { diff --git a/app/locales/en.ts b/app/locales/en.ts index ac788032979..6cca963a959 100644 --- a/app/locales/en.ts +++ b/app/locales/en.ts @@ -44,6 +44,7 @@ const en: LocaleType = { PinToastAction: "View", Delete: "Delete", Edit: "Edit", + FullScreen: "FullScreen", }, Commands: { new: "Start a new chat", @@ -135,6 +136,7 @@ const en: LocaleType = { Settings: { Title: "Settings", SubTitle: "All Settings", + ShowPassword: "ShowPassword", Danger: { Reset: { Title: "Reset All Settings", From 034c82e5149ba03a5d9c690633b7381cf3eea2c2 Mon Sep 17 00:00:00 2001 From: lyf <1910527151@qq.com> Date: Wed, 7 Aug 2024 13:39:23 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E7=9A=84=E6=97=A0=E9=9A=9C=E7=A2=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/sd/sd.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/sd/sd.tsx b/app/components/sd/sd.tsx index 4f5f8696065..0ace62a83cb 100644 --- a/app/components/sd/sd.tsx +++ b/app/components/sd/sd.tsx @@ -133,6 +133,7 @@ export function Sd() { {showMaxIcon && (
: } bordered onClick={() => { From 0958b9ee12ab9cae387eb595ca0aa30c591c97db Mon Sep 17 00:00:00 2001 From: lyf <1910527151@qq.com> Date: Thu, 8 Aug 2024 13:08:56 +0800 Subject: [PATCH 4/5] tsxiugai --- app/components/ui-lib.tsx | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/app/components/ui-lib.tsx b/app/components/ui-lib.tsx index 88b68d72f2b..fd78f9c4765 100644 --- a/app/components/ui-lib.tsx +++ b/app/components/ui-lib.tsx @@ -265,16 +265,9 @@ export function Input(props: InputProps) { ); } -// 定义一个接口 AriaProps,包含一个可选的 aria 属性 -interface AriaProps { - aria?: string; -} - -// 定义一个接口 PasswordInputProps,继承自 HTMLProps 和 AriaProps -// 用于描述密码输入框组件的属性 -interface PasswordInputProps extends HTMLProps, AriaProps {} - -export function PasswordInput(props: PasswordInputProps) { +export function PasswordInput( + props: HTMLProps & { aria?: string }, +) { const [visible, setVisible] = useState(false); function changeVisibility() { setVisible(!visible); From cc28aef6255d1abed0c5ee675a042e5ffb1f96c0 Mon Sep 17 00:00:00 2001 From: lyf <1910527151@qq.com> Date: Thu, 8 Aug 2024 16:23:40 +0800 Subject: [PATCH 5/5] add gpt-4o-2024-08-06 --- app/constant.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/constant.ts b/app/constant.ts index aa207718c18..d21f18f5a37 100644 --- a/app/constant.ts +++ b/app/constant.ts @@ -243,6 +243,7 @@ export const KnowledgeCutOffDate: Record = { "gpt-4-turbo-preview": "2023-12", "gpt-4o": "2023-10", "gpt-4o-2024-05-13": "2023-10", + "gpt-4o-2024-08-06": "2023-10", "gpt-4o-mini": "2023-10", "gpt-4o-mini-2024-07-18": "2023-10", "gpt-4-vision-preview": "2023-04", @@ -264,6 +265,7 @@ const openaiModels = [ "gpt-4-turbo-preview", "gpt-4o", "gpt-4o-2024-05-13", + "gpt-4o-2024-08-06", "gpt-4o-mini", "gpt-4o-mini-2024-07-18", "gpt-4-vision-preview",