Skip to content

Commit 9a34017

Browse files
committed
v3.8
1 parent 9ad8aaf commit 9a34017

File tree

3 files changed

+38
-19
lines changed

3 files changed

+38
-19
lines changed

.changeset/young-wolves-add.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": minor
3+
---
4+
5+
v3.8

src/core/webview/ClineProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
7171
private clineStack: Cline[] = []
7272
private workspaceTracker?: WorkspaceTracker
7373
protected mcpHub?: McpHub // Change from private to protected
74-
private latestAnnouncementId = "feb-27-2025-automatic-checkpoints" // update to some unique identifier when we add a new announcement
74+
private latestAnnouncementId = "mar-7-2025-3-8" // update to some unique identifier when we add a new announcement
7575
private contextProxy: ContextProxy
7676
configManager: ConfigManager
7777
customModesManager: CustomModesManager

webview-ui/src/components/chat/Announcement.tsx

Lines changed: 32 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,38 +26,52 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
2626
style={{ position: "absolute", top: "8px", right: "8px" }}>
2727
<span className="codicon codicon-close"></span>
2828
</VSCodeButton>
29-
<h2 style={{ margin: "0 0 8px" }}>🎉{" "}Automatic Checkpoints Now Enabled</h2>
29+
<h2 style={{ margin: "0 0 8px" }}>🎉{" "}Roo Code 3.8 Released</h2>
3030

3131
<p style={{ margin: "5px 0px" }}>
32-
We're thrilled to announce that our experimental Checkpoints feature is now enabled by default for all
33-
users. This powerful feature automatically tracks your project changes during a task, allowing you to
34-
quickly review or revert to earlier states if needed.
32+
Roo Code 3.8 is out with performance boosts, new features, and bug fixes.
3533
</p>
3634

3735
<h3 style={{ margin: "12px 0 8px" }}>What's New</h3>
3836
<p style={{ margin: "5px 0px" }}>
39-
Automatic Checkpoints provide you with:
4037
<ul style={{ margin: "4px 0 6px 20px", padding: 0 }}>
41-
<li>Peace of mind when making significant changes</li>
42-
<li>Ability to visually inspect changes between steps</li>
43-
<li>Easy rollback if you're not satisfied with certain code modifications</li>
44-
<li>Improved navigation through complex task execution</li>
38+
<li>• Faster asynchronous checkpoints</li>
39+
<li>• Support for .rooignore files</li>
40+
<li>• Fixed terminal & gray screen issues</li>
41+
<li>• Roo Code can run in multiple windows</li>
42+
<li>• Experimental multi-diff editing strategy</li>
43+
<li>• Subtask to parent task communication</li>
44+
<li>• Updated DeepSeek provider</li>
45+
<li>• New "Human Relay" provider</li>
4546
</ul>
4647
</p>
4748

48-
<h3 style={{ margin: "12px 0 8px" }}>Customize Your Experience</h3>
49-
<p style={{ margin: "5px 0px" }}>
50-
While we recommend keeping this feature enabled, you can disable it if needed.{" "}
49+
<p style={{ margin: "10px 0px 0px" }}>
50+
Get more details and discuss in{" "}
51+
<VSCodeLink
52+
href="https://discord.gg/roocode"
53+
onClick={(e) => {
54+
e.preventDefault()
55+
window.postMessage(
56+
{ type: "action", action: "openExternal", data: { url: "https://discord.gg/roocode" } },
57+
"*",
58+
)
59+
}}>
60+
Discord
61+
</VSCodeLink>{" "}
62+
and{" "}
5163
<VSCodeLink
52-
href="#"
64+
href="https://reddit.com/r/RooCode"
5365
onClick={(e) => {
5466
e.preventDefault()
55-
window.postMessage({ type: "action", action: "settingsButtonClicked" }, "*")
56-
}}
57-
style={{ display: "inline", padding: "0 2px" }}>
58-
Open Settings
67+
window.postMessage(
68+
{ type: "action", action: "openExternal", data: { url: "https://reddit.com/r/RooCode" } },
69+
"*",
70+
)
71+
}}>
72+
Reddit
5973
</VSCodeLink>{" "}
60-
and look for the "Enable automatic checkpoints" option in the Advanced Settings section.
74+
🚀
6175
</p>
6276
</div>
6377
)

0 commit comments

Comments
 (0)