From 8f1b73fefeaa643611ec45b5ecf5990d55a4d183 Mon Sep 17 00:00:00 2001 From: sfja Date: Thu, 11 Jun 2026 05:13:10 +0200 Subject: [PATCH] editor/ -> app/ --- {editor => app}/.gitignore | 0 {editor => app}/README.md | 0 {editor => app}/eslint.config.js | 0 {editor => app}/index.html | 0 {editor => app}/package-lock.json | 0 {editor => app}/package.json | 0 {editor => app}/public/favicon.svg | 0 {editor => app}/public/icons.svg | 0 {editor => app}/src/App.tsx | 0 {editor => app}/src/Canvas.tsx | 0 {editor => app}/src/Tabbar.tsx | 0 {editor => app}/src/Toolbar.tsx | 0 {editor => app}/src/editor/Board.ts | 0 {editor => app}/src/editor/ComponentPlacer.ts | 0 {editor => app}/src/editor/ConnectingWire.ts | 0 {editor => app}/src/editor/Editor.ts | 0 {editor => app}/src/editor/Mouse.ts | 0 {editor => app}/src/editor/Project.ts | 0 {editor => app}/src/editor/Renderer.ts | 0 {editor => app}/src/editor/Selection.ts | 0 {editor => app}/src/editor/SelectionBox.ts | 0 {editor => app}/src/editor/V2.ts | 0 {editor => app}/src/editor/ViewPos.ts | 0 {editor => app}/src/editor/events.ts | 0 {editor => app}/src/editor/ir.ts | 0 {editor => app}/src/editor/serialize.ts | 0 {editor => app}/src/editor/sim.ts | 0 {editor => app}/src/index.css | 0 {editor => app}/src/main.tsx | 0 {editor => app}/src/style.css | 0 {editor => app}/tsconfig.app.json | 0 {editor => app}/tsconfig.json | 0 {editor => app}/tsconfig.node.json | 0 {editor => app}/vite.config.ts | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename {editor => app}/.gitignore (100%) rename {editor => app}/README.md (100%) rename {editor => app}/eslint.config.js (100%) rename {editor => app}/index.html (100%) rename {editor => app}/package-lock.json (100%) rename {editor => app}/package.json (100%) rename {editor => app}/public/favicon.svg (100%) rename {editor => app}/public/icons.svg (100%) rename {editor => app}/src/App.tsx (100%) rename {editor => app}/src/Canvas.tsx (100%) rename {editor => app}/src/Tabbar.tsx (100%) rename {editor => app}/src/Toolbar.tsx (100%) rename {editor => app}/src/editor/Board.ts (100%) rename {editor => app}/src/editor/ComponentPlacer.ts (100%) rename {editor => app}/src/editor/ConnectingWire.ts (100%) rename {editor => app}/src/editor/Editor.ts (100%) rename {editor => app}/src/editor/Mouse.ts (100%) rename {editor => app}/src/editor/Project.ts (100%) rename {editor => app}/src/editor/Renderer.ts (100%) rename {editor => app}/src/editor/Selection.ts (100%) rename {editor => app}/src/editor/SelectionBox.ts (100%) rename {editor => app}/src/editor/V2.ts (100%) rename {editor => app}/src/editor/ViewPos.ts (100%) rename {editor => app}/src/editor/events.ts (100%) rename {editor => app}/src/editor/ir.ts (100%) rename {editor => app}/src/editor/serialize.ts (100%) rename {editor => app}/src/editor/sim.ts (100%) rename {editor => app}/src/index.css (100%) rename {editor => app}/src/main.tsx (100%) rename {editor => app}/src/style.css (100%) rename {editor => app}/tsconfig.app.json (100%) rename {editor => app}/tsconfig.json (100%) rename {editor => app}/tsconfig.node.json (100%) rename {editor => app}/vite.config.ts (100%) diff --git a/editor/.gitignore b/app/.gitignore similarity index 100% rename from editor/.gitignore rename to app/.gitignore diff --git a/editor/README.md b/app/README.md similarity index 100% rename from editor/README.md rename to app/README.md diff --git a/editor/eslint.config.js b/app/eslint.config.js similarity index 100% rename from editor/eslint.config.js rename to app/eslint.config.js diff --git a/editor/index.html b/app/index.html similarity index 100% rename from editor/index.html rename to app/index.html diff --git a/editor/package-lock.json b/app/package-lock.json similarity index 100% rename from editor/package-lock.json rename to app/package-lock.json diff --git a/editor/package.json b/app/package.json similarity index 100% rename from editor/package.json rename to app/package.json diff --git a/editor/public/favicon.svg b/app/public/favicon.svg similarity index 100% rename from editor/public/favicon.svg rename to app/public/favicon.svg diff --git a/editor/public/icons.svg b/app/public/icons.svg similarity index 100% rename from editor/public/icons.svg rename to app/public/icons.svg diff --git a/editor/src/App.tsx b/app/src/App.tsx similarity index 100% rename from editor/src/App.tsx rename to app/src/App.tsx diff --git a/editor/src/Canvas.tsx b/app/src/Canvas.tsx similarity index 100% rename from editor/src/Canvas.tsx rename to app/src/Canvas.tsx diff --git a/editor/src/Tabbar.tsx b/app/src/Tabbar.tsx similarity index 100% rename from editor/src/Tabbar.tsx rename to app/src/Tabbar.tsx diff --git a/editor/src/Toolbar.tsx b/app/src/Toolbar.tsx similarity index 100% rename from editor/src/Toolbar.tsx rename to app/src/Toolbar.tsx diff --git a/editor/src/editor/Board.ts b/app/src/editor/Board.ts similarity index 100% rename from editor/src/editor/Board.ts rename to app/src/editor/Board.ts diff --git a/editor/src/editor/ComponentPlacer.ts b/app/src/editor/ComponentPlacer.ts similarity index 100% rename from editor/src/editor/ComponentPlacer.ts rename to app/src/editor/ComponentPlacer.ts diff --git a/editor/src/editor/ConnectingWire.ts b/app/src/editor/ConnectingWire.ts similarity index 100% rename from editor/src/editor/ConnectingWire.ts rename to app/src/editor/ConnectingWire.ts diff --git a/editor/src/editor/Editor.ts b/app/src/editor/Editor.ts similarity index 100% rename from editor/src/editor/Editor.ts rename to app/src/editor/Editor.ts diff --git a/editor/src/editor/Mouse.ts b/app/src/editor/Mouse.ts similarity index 100% rename from editor/src/editor/Mouse.ts rename to app/src/editor/Mouse.ts diff --git a/editor/src/editor/Project.ts b/app/src/editor/Project.ts similarity index 100% rename from editor/src/editor/Project.ts rename to app/src/editor/Project.ts diff --git a/editor/src/editor/Renderer.ts b/app/src/editor/Renderer.ts similarity index 100% rename from editor/src/editor/Renderer.ts rename to app/src/editor/Renderer.ts diff --git a/editor/src/editor/Selection.ts b/app/src/editor/Selection.ts similarity index 100% rename from editor/src/editor/Selection.ts rename to app/src/editor/Selection.ts diff --git a/editor/src/editor/SelectionBox.ts b/app/src/editor/SelectionBox.ts similarity index 100% rename from editor/src/editor/SelectionBox.ts rename to app/src/editor/SelectionBox.ts diff --git a/editor/src/editor/V2.ts b/app/src/editor/V2.ts similarity index 100% rename from editor/src/editor/V2.ts rename to app/src/editor/V2.ts diff --git a/editor/src/editor/ViewPos.ts b/app/src/editor/ViewPos.ts similarity index 100% rename from editor/src/editor/ViewPos.ts rename to app/src/editor/ViewPos.ts diff --git a/editor/src/editor/events.ts b/app/src/editor/events.ts similarity index 100% rename from editor/src/editor/events.ts rename to app/src/editor/events.ts diff --git a/editor/src/editor/ir.ts b/app/src/editor/ir.ts similarity index 100% rename from editor/src/editor/ir.ts rename to app/src/editor/ir.ts diff --git a/editor/src/editor/serialize.ts b/app/src/editor/serialize.ts similarity index 100% rename from editor/src/editor/serialize.ts rename to app/src/editor/serialize.ts diff --git a/editor/src/editor/sim.ts b/app/src/editor/sim.ts similarity index 100% rename from editor/src/editor/sim.ts rename to app/src/editor/sim.ts diff --git a/editor/src/index.css b/app/src/index.css similarity index 100% rename from editor/src/index.css rename to app/src/index.css diff --git a/editor/src/main.tsx b/app/src/main.tsx similarity index 100% rename from editor/src/main.tsx rename to app/src/main.tsx diff --git a/editor/src/style.css b/app/src/style.css similarity index 100% rename from editor/src/style.css rename to app/src/style.css diff --git a/editor/tsconfig.app.json b/app/tsconfig.app.json similarity index 100% rename from editor/tsconfig.app.json rename to app/tsconfig.app.json diff --git a/editor/tsconfig.json b/app/tsconfig.json similarity index 100% rename from editor/tsconfig.json rename to app/tsconfig.json diff --git a/editor/tsconfig.node.json b/app/tsconfig.node.json similarity index 100% rename from editor/tsconfig.node.json rename to app/tsconfig.node.json diff --git a/editor/vite.config.ts b/app/vite.config.ts similarity index 100% rename from editor/vite.config.ts rename to app/vite.config.ts