Skip to content

Commit 4d45dea

Browse files
committed
Release v0.9.1
1 parent 687df7f commit 4d45dea

6 files changed

Lines changed: 16 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ All notable changes to this project will be documented in this file.
88

99
The format is based on [Keep a Changelog](https://keepachangelog.com/). Release checklist in [deploy.md](docs/specs/deploy.md).
1010

11+
## [0.9.1] - 2026-05-01
12+
### Changed
13+
- 🖥️ Drop-to-paste from the OS file explorer is temporarily inert on standalone while we wait on upstream Tauri ([tauri#14373](https://github.com/tauri-apps/tauri/issues/14373)) to allow native drag-drop without blocking HTML5 drag events ([#39](https://github.com/diffplug/mouseterm/pull/39)).
14+
15+
### Fixed
16+
- The mouse-override banner now renders inline in the terminal pane body and no longer stacks with the action-button tooltip ([#43](https://github.com/diffplug/mouseterm/pull/43)).
17+
- Themes with translucent selection backgrounds (e.g. Selenized Dark) no longer bleed through MouseTerm's solid AppBar and tab fills ([#37](https://github.com/diffplug/mouseterm/pull/37)).
18+
- 🖥️ Force-closing the standalone host now reliably kills the Node sidecar tree via a Windows Job Object / Unix process group, so subsequent builds no longer hit orphan `node.exe` processes locking files ([#41](https://github.com/diffplug/mouseterm/pull/41)).
19+
- 🖥️ Standalone macOS terminals run zsh as a login shell when no args are provided, so `~/.zprofile` runs and Homebrew/asdf land on `PATH` ([#40](https://github.com/diffplug/mouseterm/pull/40)).
20+
- 🖥️ Pane drag-and-drop reordering works again on standalone ([#39](https://github.com/diffplug/mouseterm/pull/39)).
21+
1122
## [0.9.0] - 2026-04-30
1223

1324
### Added

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mouseterm-lib",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"license": "FSL-1.1-MIT",
55
"private": true,
66
"type": "module",

standalone/src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mouseterm"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
description = "Mouse-friendly multitasking terminal"
55
authors = ["DiffPlug"]
66
license = "FSL-1.1-MIT"

standalone/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "MouseTerm",
4-
"version": "0.9.0",
4+
"version": "0.9.1",
55
"identifier": "com.mouseterm.standalone",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

vscode-ext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "mouseterm",
33
"displayName": "MouseTerm",
44
"description": "Multitasking terminal with tmux keybindings, mouse support, and a built-in alert system for completed tasks and prompts.",
5-
"version": "0.9.0",
5+
"version": "0.9.1",
66
"publisher": "diffplug",
77
"license": "FSL-1.1-MIT",
88
"icon": "icon.png",

0 commit comments

Comments
 (0)