mirror of
https://github.com/basketikun/infinite-canvas.git
synced 2026-07-24 06:54:06 +08:00
chore(changelog): add release notes for v0.6.0
This commit is contained in:
@@ -8,3 +8,4 @@ data/
|
|||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea
|
.idea
|
||||||
|
web/dist
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"framework": "vite",
|
||||||
|
"installCommand": "cd web && bun install",
|
||||||
|
"buildCommand": "cd web && bun run build",
|
||||||
|
"outputDirectory": "web/dist",
|
||||||
|
"rewrites": [{ "source": "/(.*)", "destination": "/index.html" }]
|
||||||
|
}
|
||||||
+2
-1
@@ -5,7 +5,8 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite --host 0.0.0.0 --port 3000",
|
"dev": "vite --host 0.0.0.0 --port 3000",
|
||||||
"build": "tsc --noEmit && vite build",
|
"build": "vite build",
|
||||||
|
"typecheck": "tsc --noEmit",
|
||||||
"start": "vite preview --host 0.0.0.0 --port 3000",
|
"start": "vite preview --host 0.0.0.0 --port 3000",
|
||||||
"format": "prettier --write .",
|
"format": "prettier --write .",
|
||||||
"format:check": "prettier --check ."
|
"format:check": "prettier --check ."
|
||||||
|
|||||||
@@ -233,7 +233,7 @@ export function AppConfigPanel({ showDoneButton = false, initialTab = "channels"
|
|||||||
<>
|
<>
|
||||||
<Tabs
|
<Tabs
|
||||||
activeKey={activeTab}
|
activeKey={activeTab}
|
||||||
onChange={setActiveTab}
|
onChange={(key) => setActiveTab(key as ConfigTabKey)}
|
||||||
items={[
|
items={[
|
||||||
{
|
{
|
||||||
key: "channels",
|
key: "channels",
|
||||||
|
|||||||
@@ -2846,7 +2846,7 @@ function CanvasTopBar({
|
|||||||
onUndo: () => void;
|
onUndo: () => void;
|
||||||
onRedo: () => void;
|
onRedo: () => void;
|
||||||
agentOpen: boolean;
|
agentOpen: boolean;
|
||||||
compactAgentStatus?: { connected: boolean; enabled: boolean; activity: string };
|
compactAgentStatus: { connected: boolean; enabled: boolean; activity: string };
|
||||||
onToggleAgent: () => void;
|
onToggleAgent: () => void;
|
||||||
}) {
|
}) {
|
||||||
const colorTheme = useThemeStore((state) => state.theme);
|
const colorTheme = useThemeStore((state) => state.theme);
|
||||||
|
|||||||
Reference in New Issue
Block a user