Skip to content

Commit f759398

Browse files
committed
fix: correct VSCode URI
1 parent a102ba5 commit f759398

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Once your merge is successful:
143143
<table>
144144
<tbody>
145145
<td align="center">
146-
<a href="https://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev" target="_blank"><strong>Download on VS Marketplace</strong></a>
146+
<a href="https://marketplace.visualstudio.com/items?itemName=rooveterinaryinc.roo-cline" target="_blank"><strong>Download on VS Marketplace</strong></a>
147147
</td>
148148
<td align="center">
149149
<a href="https://discord.gg/cline" target="_blank"><strong>Join the Discord</strong></a>

src/exports/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The Cline extension exposes an API that can be used by other extensions. To use
77
3. Get access to the API with the following code:
88

99
```ts
10-
const clineExtension = vscode.extensions.getExtension<ClineAPI>("saoudrizwan.claude-dev")
10+
const clineExtension = vscode.extensions.getExtension<ClineAPI>("rooveterinaryinc.roo-cline")
1111

1212
if (!clineExtension?.isActive) {
1313
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
4444
}
4545
```
4646

47-
**Note:** To ensure that the `saoudrizwan.claude-dev` extension is activated before your extension, add it to the `extensionDependencies` in your `package.json`:
47+
**Note:** To ensure that the `rooveterinaryinc.roo-cline` extension is activated before your extension, add it to the `extensionDependencies` in your `package.json`:
4848

4949
```json
5050
"extensionDependencies": [
51-
"saoudrizwan.claude-dev"
51+
"rooveterinaryinc.roo-cline"
5252
]
5353
```
5454

src/integrations/theme/getTheme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,5 +141,5 @@ export function mergeJson(
141141
}
142142

143143
function getExtensionUri(): vscode.Uri {
144-
return vscode.extensions.getExtension("saoudrizwan.claude-dev")!.extensionUri
144+
return vscode.extensions.getExtension("rooveterinaryinc.roo-cline")!.extensionUri
145145
}

webview-ui/src/components/settings/ApiOptions.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -741,13 +741,13 @@ const ApiOptions = ({ apiErrorMessage, modelIdErrorMessage }: ApiOptionsProps) =
741741
}
742742

743743
export function getGlamaAuthUrl(uriScheme?: string) {
744-
const callbackUrl = `${uriScheme || "vscode"}://saoudrizwan.claude-dev/glama`
744+
const callbackUrl = `${uriScheme || "vscode"}://rooveterinaryinc.roo-cline/glama`
745745

746746
return `https://glama.ai/oauth/authorize?callback_url=${encodeURIComponent(callbackUrl)}`
747747
}
748748

749749
export function getOpenRouterAuthUrl(uriScheme?: string) {
750-
return `https://openrouter.ai/auth?callback_url=${uriScheme || "vscode"}://saoudrizwan.claude-dev/openrouter`
750+
return `https://openrouter.ai/auth?callback_url=${uriScheme || "vscode"}://rooveterinaryinc.roo-cline/openrouter`
751751
}
752752

753753
export const formatPrice = (price: number) => {

0 commit comments

Comments
 (0)