Skip to content

Commit e4020ce

Browse files
authored
minor release notes changes (#2863)
1 parent a08f901 commit e4020ce

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.roo/rules/rules.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ These files provide step-by-step instructions, code examples, and best practices
123123
- Explaining complex algorithms that can't be simplified
124124
- **When in doubt, leave it out**. No comment is better than a redundant comment.
125125
- **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.
126+
- **Never remove existing comments** unless specifically directed by the user. Comments that are already defined in existing code have been vetted by the user.
126127

127128
### Jotai Model Pattern (our rules)
128129

docs/docs/durable-sessions.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ The shield icon in your terminal header shows the current session status:
4141

4242
| Icon | Status | Description |
4343
|------|--------|-------------|
44-
| <i className="fa-sharp fa-regular fa-shield text-muted"></i> | Standard Session | Connection drops will end the session |
45-
| <i className="fa-sharp fa-solid fa-shield text-sky-500"></i> | Durable (Attached) | Session is protected and connected |
46-
| <i className="fa-sharp fa-solid fa-shield text-sky-300"></i> | Durable (Detached) | Session running, currently disconnected |
47-
| <i className="fa-sharp fa-solid fa-shield text-muted"></i> | Durable (Awaiting) | Configured but not yet started |
44+
| <i className="fa-sharp fa-regular fa-shield" style={{color: 'rgb(140, 145, 140)'}}></i> | Standard Session | Connection drops will end the session |
45+
| <i className="fa-sharp fa-solid fa-shield" style={{color: '#0ea5e9'}}></i> | Durable (Attached) | Session is protected and connected |
46+
| <i className="fa-sharp fa-solid fa-shield" style={{color: '#7dd3fc'}}></i> | Durable (Detached) | Session running, currently disconnected |
47+
| <i className="fa-sharp fa-solid fa-shield" style={{color: 'rgb(140, 145, 140)'}}></i> | Durable (Awaiting) | Configured but not yet started |
4848

4949
Hover over the shield icon to see detailed status information and available actions.
5050

docs/docs/releasenotes.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Wave v0.14 introduces Durable Sessions for SSH connections, allowing your remote
2727
**Terminal Improvements:**
2828
- **OSC 52 Clipboard Support** - Terminal applications can now copy directly to your system clipboard using OSC 52 escape sequences
2929
- **Enhanced Context Menu** - Right-click terminals for quick access to splits, URL opening, themes, file browser, and more
30+
- **Streamlined Header Layout** - Terminal headers now focus on connection info without redundant view type labels
3031

3132
**Wave AI Updates:**
3233
- **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
6263
- [bugfix] Fixed duplicated Wave AI system prompt for some providers
6364
- [bugfix] Fixed disconnect hanging issue - disconnects now happen immediately
6465
- [bugfix] Fixed tool approval lifecycle to match SSE connection timing
66+
- [bugfix] Increased WSL connection timeout to handle slow initial WSL startup
67+
- [bugfix] Improved terminal shutdown with SIGHUP for graceful shell exit
6568
- Package updates and dependency upgrades
6669

6770
### v0.13.1 &mdash; Dec 16, 2025

0 commit comments

Comments
 (0)