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

@@ -14,7 +14,7 @@ import { Projects } from './pages/Projects';
import { Sessions } from './pages/Sessions';
import { Chat } from './pages/Chat';
import { Home } from './pages/Home';
import { PreviewScene } from './pages/NiTu';
import { PreviewScene } from './pages/Makelore';
import { ProjectConfiguration } from './pages/ProjectConfiguration';
import { Workbench } from './pages/Workbench';
import { ImageCanvas } from './pages/ImageCanvas';
@@ -56,21 +56,22 @@ class ErrorBoundary extends Component<
return (
<div style={{
padding: '40px',
color: '#991b1b',
background: '#F6F8FA',
color: '#7f1d1d',
background: '#FFFFFF',
minHeight: '100vh',
fontFamily: 'monospace'
fontFamily: 'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif'
}}>
<h1 style={{ fontSize: '24px', marginBottom: '16px' }}>Something went wrong</h1>
<h1 style={{ fontSize: '24px', fontWeight: 600, marginBottom: '16px', letterSpacing: '-0.02em' }}>Something went wrong</h1>
<pre style={{
whiteSpace: 'pre-wrap',
wordBreak: 'break-all',
background: '#FFFFFF',
padding: '16px',
borderRadius: '8px',
borderRadius: '16px',
fontSize: '14px',
color: '#26384D',
border: '2px solid #26384D'
color: '#27313f',
border: '1px solid #dfe3e8',
boxShadow: '0 12px 32px rgba(35, 43, 56, 0.08)'
}}>
{this.state.error?.message}
{'\n\n'}
@@ -80,11 +81,12 @@ class ErrorBoundary extends Component<
onClick={() => { this.setState({ hasError: false, error: null }); window.location.reload(); }}
style={{
marginTop: '16px',
padding: '8px 16px',
background: '#3A5578',
padding: '10px 16px',
background: 'hsl(var(--brand))',
color: 'white',
border: 'none',
borderRadius: '6px',
borderRadius: '12px',
fontWeight: 600,
cursor: 'pointer'
}}
>
@@ -350,7 +352,7 @@ function App() {
element={<Navigate to={imageWorkspaceLocalDevelopment ? '/image-canvas' : '/opencode-chat'} replace />}
/>
<Route path="/project-config" element={<ProjectConfiguration />} />
<Route path="/nitu-home" element={<Home />} />
<Route path="/makelore-home" element={<Home />} />
<Route path="/kangaroo" element={<Navigate to="/project-config" replace />} />
<Route path="/subagents" element={<Navigate to="/project-config" replace />} />
<Route path="/chat" element={<Navigate to="/opencode-chat" replace />} />