Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit 2428199

Browse files
authored
Remove corporate extension support links (#12341)
* Remove corporate extension support links * Remove welcome provider left inset * Update retired provider sunset message * Scope Roo retired provider message * Add final release upgrade announcement * Localize final release announcement
1 parent 8922418 commit 2428199

70 files changed

Lines changed: 429 additions & 349 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/api/index.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,12 @@ export function buildApiHandler(configuration: ProviderSettings): ApiHandler {
112112
const { apiProvider, ...options } = configuration
113113

114114
if (apiProvider && isRetiredProvider(apiProvider)) {
115-
throw new Error(
116-
`Sorry, this provider is no longer supported. We saw very few Roo users actually using it and we need to reduce the surface area of our codebase so we can keep shipping fast and serving our community well in this space. It was a really hard decision but it lets us focus on what matters most to you. It sucks, we know.\n\nPlease select a different provider in your API profile settings.`,
117-
)
115+
const retiredProviderMessage =
116+
apiProvider === "roo"
117+
? "As part of our decision to sunset the Roo Code extension, we also ended the Roo Code Router, which only existed to support the extension. Sorry about the hassle."
118+
: "This provider is no longer supported."
119+
120+
throw new Error(`${retiredProviderMessage}\n\nPlease select a different provider in your API profile settings.`)
118121
}
119122

120123
switch (apiProvider) {

src/core/webview/ClineProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export class ClineProvider
149149

150150
public isViewLaunched = false
151151
public settingsImportedAt?: number
152-
public readonly latestAnnouncementId = "apr-2026-v3.53.0-community-handoff-gpt55-opus47" // v3.53.0 Community handoff, GPT-5.5, Claude Opus 4.7, checkpoint navigation
152+
public readonly latestAnnouncementId = "may-2026-final-roo-code-release" // Final Roo Code release announcement.
153153
public readonly providerSettingsManager: ProviderSettingsManager
154154
public readonly customModesManager: CustomModesManager
155155

src/core/webview/__tests__/diagnosticsHandler.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,9 @@ describe("generateErrorDiagnostics", () => {
8585
// taskId.slice(0, 8) = "test-tas" from "test-task-id"
8686
expect(String(writtenPath)).toContain("roo-diagnostics-test-tas")
8787
expect(String(writtenContent)).toContain(
88-
"// Please share this file with Roo Code Support (support@roocode.com) to diagnose the issue faster",
88+
"// Please attach this file to a GitHub issue if it helps diagnose the problem faster",
8989
)
90+
expect(String(writtenContent)).not.toContain("support@roocode.com")
9091
expect(String(writtenContent)).toContain('"error":')
9192
expect(String(writtenContent)).toContain('"history":')
9293
expect(String(writtenContent)).toContain('"version": "1.2.3"')

src/core/webview/diagnosticsHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export async function generateErrorDiagnostics(params: GenerateDiagnosticsParams
6565

6666
// Prepend human-readable guidance comments before the JSON payload
6767
const headerComment =
68-
"// Please share this file with Roo Code Support (support@roocode.com) to diagnose the issue faster\n" +
68+
"// Please attach this file to a GitHub issue if it helps diagnose the problem faster\n" +
6969
"// Just make sure you're OK sharing the contents of the conversation below.\n\n"
7070
const jsonContent = JSON.stringify(diagnostics, null, 2)
7171
const fullContent = headerComment + jsonContent

src/i18n/locales/ca/common.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/i18n/locales/de/common.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/i18n/locales/en/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,6 @@
224224
},
225225
"docsLink": {
226226
"label": "Docs",
227-
"url": "https://docs.roocode.com"
227+
"url": "https://github.com/RooCodeInc/Roo-Code"
228228
}
229229
}

src/i18n/locales/es/common.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/i18n/locales/fr/common.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/i18n/locales/hi/common.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)