diff --git a/webview-ui/src/components/chat/Announcement.tsx b/webview-ui/src/components/chat/Announcement.tsx
index ed21f261d2..d84ac4758c 100644
--- a/webview-ui/src/components/chat/Announcement.tsx
+++ b/webview-ui/src/components/chat/Announcement.tsx
@@ -9,71 +9,113 @@ interface AnnouncementProps {
}
const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
- const { t, ready } = useTranslation("translation", { keyPrefix: "announcement", useSuspense: false })
+ const { t } = useTranslation("translation", { keyPrefix: "announcement" })
const minorVersion = version.split(".").slice(0, 2).join(".") // 2.0.0 -> 2.0
return (
- ready && (
+
+
+
+
+
{t("newInVersion", { version: minorVersion })}
+
+ -
+ Plan/Act mode toggle: Plan mode turns Cline into an architect that gathers information, asks clarifying
+ questions, and designs a solution. Switch back to Act mode to let him execute the plan!{" "}
+
+ See a demo here.
+
+
+ -
+ Quick API/model switching with a new popup menu under the chat field
+
+ -
+ VS Code LM API lets you use models from other extensions like GitHub Copilot
+
+ -
+ MCP server improvements: On/off toggle to disable servers when not in use, and Auto-approve option for
+ individual tools
+
+ -
+ In case you missed it, Cline now supports Checkpoints!{" "}
+
+ See it in action here.
+
+
+
+ {/*
+ -
+ OpenRouter now supports prompt caching! They also have much higher rate limits than other providers,
+ so I recommend trying them out.
+
+ {!apiConfiguration?.openRouterApiKey && (
+
+ Get OpenRouter API Key
+
+ )}
+ {apiConfiguration?.openRouterApiKey && apiConfiguration?.apiProvider !== "openrouter" && (
+ {
+ vscode.postMessage({
+ type: "apiConfiguration",
+ apiConfiguration: { ...apiConfiguration, apiProvider: "openrouter" },
+ })
+ }}
+ style={{
+ transform: "scale(0.85)",
+ transformOrigin: "left center",
+ margin: "4px -30px 2px 0",
+ }}>
+ Switch to OpenRouter
+
+ )}
+
+ -
+ Edit Cline's changes before accepting! When he creates or edits a file, you can modify his
+ changes directly in the right side of the diff view (+ hover over the 'Revert Block' arrow button in
+ the center to undo "
{"// rest of code here"}" shenanigans)
+
+ -
+ New
search_files tool that lets Cline perform regex searches in your project, letting
+ him refactor code, address TODOs and FIXMEs, remove dead code, and more!
+
+ -
+ When Cline runs commands, you can now type directly in the terminal (+ support for Python
+ environments)
+
+
*/}
-
-
-
-
{t("newInVersion", { version: minorVersion })}
-
- -
- Plan/Act mode toggle: Plan mode turns Cline into an architect that gathers information, asks
- clarifying questions, and designs a solution. Switch back to Act mode to let him execute the plan!{" "}
-
- See a demo here.
-
-
- -
- Quick API/model switching with a new popup menu under the chat field
-
- -
- VS Code LM API lets you use models from other extensions like GitHub Copilot
-
- -
- MCP server improvements: On/off toggle to disable servers when not in use, and Auto-approve option
- for individual tools
-
- -
- In case you missed it, Cline now supports Checkpoints!{" "}
-
- See it in action here.
-
-
-
-
+
+ ,
+ RedditLink: ,
}}
/>
-
- ,
- RedditLink: ,
- }}
- />
-
-
- )
+
+
)
}