From 31bc4859cf9b3d94d31984b0ddfac4b52748c7e7 Mon Sep 17 00:00:00 2001 From: megaproxy Date: Fri, 22 May 2026 21:10:50 +0100 Subject: [PATCH] Bump version to 0.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since 0.2.0: - Fix broadcast no-op (useEffect deps captured stale orch ref, so paneIds got silently unregistered on every click → broadcastFrom found no peers) - Flat-list layout architecture: render leaves as siblings keyed by id, position via absolute boxes. PTYs survive any tree reshape. - Drag a pane's toolbar onto another pane to swap them - Idle reporting moved out of toast spam into a "N idle" titlebar badge + red pane border + red "idle" status text - Themed terminal scrollbars - Global 📡 broadcast toggle in the titlebar - Presets preserve existing panes' shells (only kill what overflows the preset's slot count, with a confirm dialog) - React 18 frontend (Svelte version retired to svelte-archive branch) Co-Authored-By: Claude Opus 4.7 (1M context) --- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1e2e324..db59d18 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tiletopia", "private": true, - "version": "0.2.0", + "version": "0.2.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 83b69fc..2cb1ea7 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiletopia" -version = "0.2.0" +version = "0.2.1" description = "Tiling multi-terminal manager for WSL" authors = ["megaproxy"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 68291b6..6bc2c82 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "tiletopia", - "version": "0.2.0", + "version": "0.2.1", "identifier": "com.megaproxy.tiletopia", "build": { "beforeDevCommand": "pnpm dev",