Skip to content
Merged

v3.8 #1459

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
5 changes: 5 additions & 0 deletions .changeset/young-wolves-add.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"roo-cline": minor
---

v3.8
2 changes: 1 addition & 1 deletion src/core/webview/ClineProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
private clineStack: Cline[] = []
private workspaceTracker?: WorkspaceTracker
protected mcpHub?: McpHub // Change from private to protected
private latestAnnouncementId = "feb-27-2025-automatic-checkpoints" // update to some unique identifier when we add a new announcement
private latestAnnouncementId = "mar-7-2025-3-8" // update to some unique identifier when we add a new announcement
private contextProxy: ContextProxy
configManager: ConfigManager
customModesManager: CustomModesManager
Expand Down
50 changes: 32 additions & 18 deletions webview-ui/src/components/chat/Announcement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,38 +26,52 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
style={{ position: "absolute", top: "8px", right: "8px" }}>
<span className="codicon codicon-close"></span>
</VSCodeButton>
<h2 style={{ margin: "0 0 8px" }}>🎉{" "}Automatic Checkpoints Now Enabled</h2>
<h2 style={{ margin: "0 0 8px" }}>🎉{" "}Roo Code 3.8 Released</h2>

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

<h3 style={{ margin: "12px 0 8px" }}>What's New</h3>
<p style={{ margin: "5px 0px" }}>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A <ul> is nested inside a <p>, which is not semantically valid HTML. Wrap the <ul> in a block-level container (e.g. a <div>) or move it out of the <p>.

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

<h3 style={{ margin: "12px 0 8px" }}>Customize Your Experience</h3>
<p style={{ margin: "5px 0px" }}>
While we recommend keeping this feature enabled, you can disable it if needed.{" "}
<p style={{ margin: "10px 0px 0px" }}>
Get more details and discuss in{" "}
<VSCodeLink
href="https://discord.gg/roocode"
onClick={(e) => {
e.preventDefault()
window.postMessage(
{ type: "action", action: "openExternal", data: { url: "https://discord.gg/roocode" } },
"*",
)
}}>
Discord
</VSCodeLink>{" "}
and{" "}
<VSCodeLink
href="#"
href="https://reddit.com/r/RooCode"
onClick={(e) => {
e.preventDefault()
window.postMessage({ type: "action", action: "settingsButtonClicked" }, "*")
}}
style={{ display: "inline", padding: "0 2px" }}>
Open Settings
window.postMessage(
{ type: "action", action: "openExternal", data: { url: "https://reddit.com/r/RooCode" } },
"*",
)
}}>
Reddit
</VSCodeLink>{" "}
and look for the "Enable automatic checkpoints" option in the Advanced Settings section.
🚀
</p>
</div>
)
Expand Down
Loading