From 1720b60499748b44456e7fbc30df5025e825f20a Mon Sep 17 00:00:00 2001 From: megaproxy Date: Fri, 22 May 2026 22:24:57 +0100 Subject: [PATCH] Bump version to 0.2.2 Changes since 0.2.1: - Keyboard shortcuts: Ctrl+K palette + Ctrl+Shift+E/O/W for split-right / split-down / close, Ctrl+Shift+B per-pane and Ctrl+Shift+Alt+B global broadcast, Ctrl+Shift+Arrow for spatial pane navigation - New panes default to WSL home (~) instead of inherited Windows cwd - Resize artifacts: rAF-throttle gutter drag, debounce PTY resize, skip resizePane when cols/rows haven't actually changed (kills the idle-flap loop that surfaced with many panes) - Minimum pane size (180px) enforced on both split and gutter drag - 2px gap around each leaf so per-pane borders read as distinct rectangles instead of a continuous grid 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 db59d18..057ed84 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tiletopia", "private": true, - "version": "0.2.1", + "version": "0.2.2", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 2cb1ea7..5c7e50c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiletopia" -version = "0.2.1" +version = "0.2.2" 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 6bc2c82..391c661 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.1", + "version": "0.2.2", "identifier": "com.megaproxy.tiletopia", "build": { "beforeDevCommand": "pnpm dev",