- window_state.rs: persist only the main window's workspaces. The aggregator flattened every window's tabs into the saved file; main then adopted the whole blob on launch, so detached windows' ephemeral tabs (and Pane N drag-out artifacts) accumulated without bound. - TabStrip: portal the close-confirm popover to <body> with fixed, viewport-clamped positioning so the horizontally-scrolling strip can't clip it and it never runs off a window edge. - styles.css: make themed ::-webkit-scrollbar global, not just xterm viewport. - LeafPane: B1 drag-out ghost chip (portal, edge-pinned, orange detach state). - App.tsx: moveToNewWindow waits briefly for pane registration instead of failing instantly on an in-flight spawn/adopt. - gitignore cargo-test.lo*. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
32 lines
411 B
Text
32 lines
411 B
Text
# Node / build
|
|
node_modules/
|
|
dist/
|
|
dist-mcpb/
|
|
.svelte-kit/
|
|
.pnpm-store/
|
|
*.tsbuildinfo
|
|
|
|
# Rust / Tauri
|
|
src-tauri/target/
|
|
src-tauri/gen/
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Dev-session scratch (root-only — leaves src-tauri/icons/*.png alone)
|
|
/dev.log
|
|
/dev.err
|
|
/screenshot.png
|
|
/screen*.png
|
|
/shot*.png
|
|
/tiletopia-window.png
|
|
/tilescript.ps1
|
|
/cargo-test.lo*
|