feat: update Makelore modules and conversations
Some checks failed
Electron E2E / Electron E2E (macos-latest) (push) Has been cancelled
Electron E2E / Electron E2E (ubuntu-latest) (push) Has been cancelled
Electron E2E / Electron E2E (windows-latest) (push) Has been cancelled

This commit is contained in:
inman
2026-07-31 10:08:41 +08:00
parent b8ca3f8eea
commit 80e8386fa6
175 changed files with 8036 additions and 10581 deletions

View File

@@ -106,7 +106,7 @@ export function ChatCommandRenameDialog({
aria-modal="true"
aria-labelledby="chat-rename-title"
className="
fixed inset-0 z-50 flex items-center justify-center bg-black/50
fixed inset-0 z-50 flex items-center justify-center bg-foreground/15
"
onKeyDown={(event) => handleModalKeyDown(event, onCancel)}
>
@@ -142,7 +142,6 @@ export function ChatCommandRenameDialog({
export interface ChatCommandTimelineDialogProps {
open: boolean;
mode: 'timeline' | 'fork';
entries: readonly ChatTimelineEntry[];
onSelect: (messageId: string) => void;
onCancel: () => void;
@@ -150,7 +149,6 @@ export interface ChatCommandTimelineDialogProps {
export function ChatCommandTimelineDialog({
open,
mode,
entries,
onSelect,
onCancel,
@@ -160,7 +158,7 @@ export function ChatCommandTimelineDialog({
useModalDialogFocus(open, dialogRef, firstEntryRef);
if (!open) return null;
const title = mode === 'fork' ? '选择分叉位置' : '消息时间线';
const title = '消息时间线';
return (
<div
ref={dialogRef}
@@ -168,7 +166,7 @@ export function ChatCommandTimelineDialog({
aria-modal="true"
aria-labelledby="chat-timeline-title"
className="
fixed inset-0 z-50 flex items-center justify-center bg-black/50
fixed inset-0 z-50 flex items-center justify-center bg-foreground/15
"
onKeyDown={(event) => handleModalKeyDown(event, onCancel)}
>
@@ -193,7 +191,7 @@ export function ChatCommandTimelineDialog({
"
onClick={() => onSelect(entry.messageId)}
>
<span className="block text-xs font-bold text-muted-foreground">
<span className="block text-xs font-medium text-muted-foreground">
{entry.label}
</span>
<span className="block truncate">{entry.preview}</span>