|
-Download on VS Marketplace
+Download on VS Marketplace
|
Join the Discord
diff --git a/src/exports/README.md b/src/exports/README.md
index 40f909a..03b8983 100644
--- a/src/exports/README.md
+++ b/src/exports/README.md
@@ -7,7 +7,7 @@ The Cline extension exposes an API that can be used by other extensions. To use
3. Get access to the API with the following code:
```ts
- const clineExtension = vscode.extensions.getExtension("saoudrizwan.claude-dev")
+ const clineExtension = vscode.extensions.getExtension("rooveterinaryinc.roo-cline")
if (!clineExtension?.isActive) {
throw new Error("Cline extension is not activated")
@@ -44,11 +44,11 @@ The Cline extension exposes an API that can be used by other extensions. To use
}
```
- **Note:** To ensure that the `saoudrizwan.claude-dev` extension is activated before your extension, add it to the `extensionDependencies` in your `package.json`:
+ **Note:** To ensure that the `rooveterinaryinc.roo-cline` extension is activated before your extension, add it to the `extensionDependencies` in your `package.json`:
```json
"extensionDependencies": [
- "saoudrizwan.claude-dev"
+ "rooveterinaryinc.roo-cline"
]
```
diff --git a/src/integrations/theme/getTheme.ts b/src/integrations/theme/getTheme.ts
index ffed26e..dbc7a0f 100644
--- a/src/integrations/theme/getTheme.ts
+++ b/src/integrations/theme/getTheme.ts
@@ -141,5 +141,5 @@ export function mergeJson(
}
function getExtensionUri(): vscode.Uri {
- return vscode.extensions.getExtension("saoudrizwan.claude-dev")!.extensionUri
+ return vscode.extensions.getExtension("rooveterinaryinc.roo-cline")!.extensionUri
}
diff --git a/webview-ui/src/components/settings/ApiOptions.tsx b/webview-ui/src/components/settings/ApiOptions.tsx
index d726357..4f5d6e2 100644
--- a/webview-ui/src/components/settings/ApiOptions.tsx
+++ b/webview-ui/src/components/settings/ApiOptions.tsx
@@ -741,13 +741,13 @@ const ApiOptions = ({ apiErrorMessage, modelIdErrorMessage }: ApiOptionsProps) =
}
export function getGlamaAuthUrl(uriScheme?: string) {
- const callbackUrl = `${uriScheme || "vscode"}://saoudrizwan.claude-dev/glama`
+ const callbackUrl = `${uriScheme || "vscode"}://rooveterinaryinc.roo-cline/glama`
return `https://glama.ai/oauth/authorize?callback_url=${encodeURIComponent(callbackUrl)}`
}
export function getOpenRouterAuthUrl(uriScheme?: string) {
- return `https://openrouter.ai/auth?callback_url=${uriScheme || "vscode"}://saoudrizwan.claude-dev/openrouter`
+ return `https://openrouter.ai/auth?callback_url=${uriScheme || "vscode"}://rooveterinaryinc.roo-cline/openrouter`
}
export const formatPrice = (price: number) => {
|