From 48bc5a581e7114d266e024e5e45b912392836e51 Mon Sep 17 00:00:00 2001 From: sawka Date: Wed, 11 Feb 2026 15:18:34 -0800 Subject: [PATCH 1/3] minor release notes changes --- .roo/rules/rules.md | 1 + docs/docs/releasenotes.mdx | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.roo/rules/rules.md b/.roo/rules/rules.md index 9ab2dc5417..7e2859ea3f 100644 --- a/.roo/rules/rules.md +++ b/.roo/rules/rules.md @@ -123,6 +123,7 @@ These files provide step-by-step instructions, code examples, and best practices - Explaining complex algorithms that can't be simplified - **When in doubt, leave it out**. No comment is better than a redundant comment. - **Never add comments explaining code changes** - The code should speak for itself, and version control tracks changes. The one exception to this rule is if it is a very unobvious implementation. Something that someone would typically implement in a different (wrong) way. Then the comment helps us remember WHY we changed it to a less obvious implementation. +- **Never removed existing comments** unless specifically directed by the user. Comments that are already defined in existing code have been vetted by the user. ### Jotai Model Pattern (our rules) diff --git a/docs/docs/releasenotes.mdx b/docs/docs/releasenotes.mdx index fed957a046..d2671ec3b5 100644 --- a/docs/docs/releasenotes.mdx +++ b/docs/docs/releasenotes.mdx @@ -27,6 +27,7 @@ Wave v0.14 introduces Durable Sessions for SSH connections, allowing your remote **Terminal Improvements:** - **OSC 52 Clipboard Support** - Terminal applications can now copy directly to your system clipboard using OSC 52 escape sequences - **Enhanced Context Menu** - Right-click terminals for quick access to splits, URL opening, themes, file browser, and more +- **Streamlined Header Layout** - Terminal headers now focus on connection info without redundant view type labels **Wave AI Updates:** - **Image/Vision Support** - Added image support for OpenAI chat completions API, enabling vision capabilities with compatible models @@ -62,6 +63,8 @@ Wave v0.14 introduces Durable Sessions for SSH connections, allowing your remote - [bugfix] Fixed duplicated Wave AI system prompt for some providers - [bugfix] Fixed disconnect hanging issue - disconnects now happen immediately - [bugfix] Fixed tool approval lifecycle to match SSE connection timing +- [bugfix] Increased WSL connection timeout to handle slow initial WSL startup +- [bugfix] Improved terminal shutdown with SIGHUP for graceful shell exit - Package updates and dependency upgrades ### v0.13.1 — Dec 16, 2025 From 16cc2caa208fb19d9117bc2093e290fee6fb25ef Mon Sep 17 00:00:00 2001 From: sawka Date: Wed, 11 Feb 2026 15:21:02 -0800 Subject: [PATCH 2/3] remove tailwind references --- docs/docs/durable-sessions.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/durable-sessions.mdx b/docs/docs/durable-sessions.mdx index 928bded848..fa112ba07d 100644 --- a/docs/docs/durable-sessions.mdx +++ b/docs/docs/durable-sessions.mdx @@ -41,10 +41,10 @@ The shield icon in your terminal header shows the current session status: | Icon | Status | Description | |------|--------|-------------| -| | Standard Session | Connection drops will end the session | -| | Durable (Attached) | Session is protected and connected | -| | Durable (Detached) | Session running, currently disconnected | -| | Durable (Awaiting) | Configured but not yet started | +| | Standard Session | Connection drops will end the session | +| | Durable (Attached) | Session is protected and connected | +| | Durable (Detached) | Session running, currently disconnected | +| | Durable (Awaiting) | Configured but not yet started | Hover over the shield icon to see detailed status information and available actions. From 0d89af5cfda008b71f72dcc91fb1250061d4b382 Mon Sep 17 00:00:00 2001 From: sawka Date: Wed, 11 Feb 2026 15:21:51 -0800 Subject: [PATCH 3/3] fix typo --- .roo/rules/rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.roo/rules/rules.md b/.roo/rules/rules.md index 7e2859ea3f..7569ef30da 100644 --- a/.roo/rules/rules.md +++ b/.roo/rules/rules.md @@ -123,7 +123,7 @@ These files provide step-by-step instructions, code examples, and best practices - Explaining complex algorithms that can't be simplified - **When in doubt, leave it out**. No comment is better than a redundant comment. - **Never add comments explaining code changes** - The code should speak for itself, and version control tracks changes. The one exception to this rule is if it is a very unobvious implementation. Something that someone would typically implement in a different (wrong) way. Then the comment helps us remember WHY we changed it to a less obvious implementation. -- **Never removed existing comments** unless specifically directed by the user. Comments that are already defined in existing code have been vetted by the user. +- **Never remove existing comments** unless specifically directed by the user. Comments that are already defined in existing code have been vetted by the user. ### Jotai Model Pattern (our rules)