Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .roo/rules/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 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)

Expand Down
8 changes: 4 additions & 4 deletions docs/docs/durable-sessions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ The shield icon in your terminal header shows the current session status:

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

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

Expand Down
3 changes: 3 additions & 0 deletions docs/docs/releasenotes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 &mdash; Dec 16, 2025
Expand Down