Skip to content

Commit c7531a6

Browse files
docs: v3.29.1 release notes; index/sidebars; keyboard shortcuts doc update (#392)
1 parent 184eebc commit c7531a6

File tree

6 files changed

+37
-4
lines changed

6 files changed

+37
-4
lines changed

docs/features/code-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The **Add to Context** action is listed first in the Code Actions menu so you ca
6262

6363
This helps Roo understand the exact context of your code within the project, allowing it to provide more relevant and accurate assistance.
6464

65-
Tip: Use macOS Cmd+' or Windows/Linux Ctrl+' to add the selection to context quickly. See [Keyboard Shortcuts](/features/keyboard-shortcuts).
65+
Tip: Use macOS Cmd+K Cmd+A or Windows/Linux Ctrl+K Ctrl+A to add the selection to context quickly. See [Keyboard Shortcuts](/features/keyboard-shortcuts).
6666

6767
**Example Chat Input:**
6868

docs/features/keyboard-shortcuts.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Roo Code offers keyboard commands to enhance your workflow. This page focuses on
2525
|---------|-------------|-----------------|
2626
| `roo-cline.acceptInput` | Submit text or accept the primary suggestion | None (configurable) |
2727
| `roo-cline.focusInput` | Focus the Roo input box | None (configurable) |
28-
| Add to Context | Add selected code to Roo's context | macOS: Cmd+Y; Windows/Linux: Ctrl+Y |
28+
| Add to Context | Add selected code to Roo's context | macOS: Cmd+K Cmd+A; Windows/Linux: Ctrl+K Ctrl+A |
2929
| Arrow Up/Down | Navigate through prompt history | Built-in |
3030

3131
### Key Benefits of Keyboard Commands
@@ -104,9 +104,13 @@ Choose a key combination that doesn't conflict with existing VS Code shortcuts:
104104

105105
## Add to Context Shortcut
106106

107-
- Default: macOS Cmd+Y; Windows/Linux Ctrl+Y
107+
- Default: macOS: Cmd+K Cmd+A; Windows/Linux: Ctrl+K Ctrl+A
108108
- Requires: when condition `editorTextFocus && editorHasSelection`
109-
- Focus does not change automatically. To continue typing immediately, use “Roo: Focus Input” (`roo-cline.focusInput`) or click into the Roo panel.
109+
- Focus does not change automatically. To continue typing immediately, use "Roo: Focus Input" (`roo-cline.focusInput`) or click into the Roo panel.
110+
111+
:::note Redo Shortcut Restored
112+
The standard Redo shortcut (macOS: Cmd+Y; Windows/Linux: Ctrl+Y) remains unchanged and is available for its usual function in VS Code.
113+
:::
110114

111115
### Practical Use Cases
112116

docs/update-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ image: /img/social-share.jpg
1919

2020
### Version 3.29
2121

22+
* [3.29.1](/update-notes/v3.29.1) (2025-10-27)
2223
* [3.29.0](/update-notes/v3.29.0) (2025-10-24)
2324

2425
---

docs/update-notes/v3.29.1.mdx

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
description: Bug-fix patch that prevents context overruns, restores standard Redo keybinding, and improves provider model loading reliability.
3+
keywords:
4+
- roo code 3.29.1
5+
- new features
6+
- bug fixes
7+
image: /img/v3.29.1/v3.29.1.png
8+
---
9+
10+
# Roo Code 3.29.1 Release Notes (2025-10-27)
11+
12+
This patch prevents context overruns on long generations, restores the standard Redo keybinding, and reduces intermittent provider model loading errors.
13+
14+
<img src="/img/v3.29.1/v3.29.1.png" alt="Roo Code v3.29.1 Release" width="600" />
15+
16+
## QOL Improvements
17+
18+
* Keyboard shortcut update: “Add to Context” moved to Ctrl+K Ctrl+A (Windows/Linux) / Cmd+K Cmd+A (macOS) to avoid Redo conflict and restore standard Redo (thanks swythan!) ([#8653](https://github.com/RooCodeInc/Roo-Code/pull/8653))
19+
20+
## Bug Fixes
21+
22+
* Clean up max output token calculations to prevent context window overruns (thanks enerage!) ([#8822](https://github.com/RooCodeInc/Roo-Code/pull/8822))
23+
* Fix provider model loading race conditions to reduce timeouts and intermittent errors ([#8836](https://github.com/RooCodeInc/Roo-Code/pull/8836))
24+
25+
## Provider Updates
26+
27+
* OpenAI-compatible: centralized ~20% maxTokens cap to prevent context overruns; GLM‑4.6‑turbo default 40,960 for reliable long-context runs (thanks enerage!) ([#8822](https://github.com/RooCodeInc/Roo-Code/pull/8822))

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ const sidebars: SidebarsConfig = {
222222
type: 'category',
223223
label: '3.29',
224224
items: [
225+
{ type: 'doc', id: 'update-notes/v3.29.1', label: '3.29.1' },
225226
{ type: 'doc', id: 'update-notes/v3.29.0', label: '3.29.0' },
226227
],
227228
},

static/img/v3.29.1/v3.29.1.png

1.99 MB
Loading

0 commit comments

Comments
 (0)