Skip to content

Commit 6c23a1c

Browse files
committed
fix: update Announcement spec to v3.74.0 and unindent README details close tag
1 parent b5d405e commit 6c23a1c

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ Models: https://www.zoocode.dev/dashboard/models
7979
- [Tiếng Việt](locales/vi/README.md)
8080
- [简体中文](locales/zh-CN/README.md)
8181
- [繁體中文](locales/zh-TW/README.md)
82-
</details>
82+
83+
</details>
8384

8485
---
8586

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ vi.mock("@src/utils/vscode", () => ({
1313

1414
vi.mock("@roo/package", () => ({
1515
Package: {
16-
version: "3.72.0",
16+
version: "3.74.0",
1717
},
1818
}))
1919

@@ -41,11 +41,11 @@ vi.mock("@src/i18n/TranslationContext", () => ({
4141
const translations: Record<string, string> = {
4242
"chat:announcement.release.heading": "What's New:",
4343
"chat:announcement.release.highlight1":
44-
"Moonshot and Kimi Code providers — connect to Moonshot models with live model discovery, or sign in to Kimi Code through its OAuth device flow.",
44+
"More OpenAI controls — use Fast priority mode with OpenAI Codex and choose higher reasoning effort for OpenAI-compatible models.",
4545
"chat:announcement.release.highlight2":
46-
"Latest model support — use Claude Opus 5 across providers, plus Kimi K3, Gemini 3.6 Flash, and MiniMax-M3.",
46+
"More reliable providers and models — improved router metadata handling, Ollama model refresh, Bedrock proxy support, and Friendli reasoning controls.",
4747
"chat:announcement.release.highlight3":
48-
"More reliable workflows — abandon interrupted subtasks cleanly, and index Dart and plain-text files in your codebase.",
48+
"Smoother settings and developer workflows — settings now preserve unsaved edits, short terminal commands complete cleanly, architect plans use workspace-relative paths, and remaining user-facing Roo branding is updated to Zoo.",
4949
"chat:announcement.handoff.heading": "The Roo Code plugin is not going away.",
5050
}
5151

@@ -62,20 +62,20 @@ describe("Announcement", () => {
6262
it("renders the announcement title and highlights", () => {
6363
render(<Announcement hideAnnouncement={vi.fn()} />)
6464

65-
expect(screen.getByText("Zoo Code 3.72.0 Released")).toBeInTheDocument()
65+
expect(screen.getByText("Zoo Code 3.74.0 Released")).toBeInTheDocument()
6666
expect(
6767
screen.getByText(
68-
"Moonshot and Kimi Code providers — connect to Moonshot models with live model discovery, or sign in to Kimi Code through its OAuth device flow.",
68+
"More OpenAI controls — use Fast priority mode with OpenAI Codex and choose higher reasoning effort for OpenAI-compatible models.",
6969
),
7070
).toBeInTheDocument()
7171
expect(
7272
screen.getByText(
73-
"Latest model support — use Claude Opus 5 across providers, plus Kimi K3, Gemini 3.6 Flash, and MiniMax-M3.",
73+
"More reliable providers and models — improved router metadata handling, Ollama model refresh, Bedrock proxy support, and Friendli reasoning controls.",
7474
),
7575
).toBeInTheDocument()
7676
expect(
7777
screen.getByText(
78-
"More reliable workflows — abandon interrupted subtasks cleanly, and index Dart and plain-text files in your codebase.",
78+
"Smoother settings and developer workflows — settings now preserve unsaved edits, short terminal commands complete cleanly, architect plans use workspace-relative paths, and remaining user-facing Roo branding is updated to Zoo.",
7979
),
8080
).toBeInTheDocument()
8181
})

0 commit comments

Comments
 (0)