diff --git a/CHANGELOG.md b/CHANGELOG.md index 0991a33777..ca06fcacff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1116,7 +1116,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa ## [2.2.16] -- Incorporate Premshay's [PR](https://github.com/RooCodeInc/Roo-Cline/pull/60) to add support for Amazon Nova and Meta Llama Models via Bedrock (3, 3.1, 3.2) and unified Bedrock calls using BedrockClient and Bedrock Runtime API +- Incorporate Premshay's [PR](https://github.com/RooCodeInc/Roo-Code/pull/60) to add support for Amazon Nova and Meta Llama Models via Bedrock (3, 3.1, 3.2) and unified Bedrock calls using BedrockClient and Bedrock Runtime API ## [2.2.14 - 2.2.15] @@ -1188,7 +1188,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa ## [2.1.15] -- Incorporate dbasclpy's [PR](https://github.com/RooCodeInc/Roo-Cline/pull/54) to add support for gemini-exp-1206 +- Incorporate dbasclpy's [PR](https://github.com/RooCodeInc/Roo-Code/pull/54) to add support for gemini-exp-1206 - Make it clear that diff editing is very experimental ## [2.1.14] @@ -1198,7 +1198,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa ## [2.1.13] -- Fix https://github.com/RooCodeInc/Roo-Cline/issues/50 where sound effects were not respecting settings +- Fix https://github.com/RooCodeInc/Roo-Code/issues/50 where sound effects were not respecting settings ## [2.1.12] @@ -1206,7 +1206,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa ## [2.1.11] -- Incorporate lloydchang's [PR](https://github.com/RooCodeInc/Roo-Cline/pull/42) to add support for OpenRouter compression +- Incorporate lloydchang's [PR](https://github.com/RooCodeInc/Roo-Code/pull/42) to add support for OpenRouter compression ## [2.1.10] diff --git a/src/api/providers/__tests__/openai.test.ts b/src/api/providers/__tests__/openai.test.ts index 19caa61d69..493c1e549f 100644 --- a/src/api/providers/__tests__/openai.test.ts +++ b/src/api/providers/__tests__/openai.test.ts @@ -101,7 +101,7 @@ describe("OpenAiHandler", () => { baseURL: expect.any(String), apiKey: expect.any(String), defaultHeaders: { - "HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline", + "HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline", "X-Title": "Roo Code", }, }) diff --git a/src/api/providers/__tests__/openrouter.test.ts b/src/api/providers/__tests__/openrouter.test.ts index bc30c68236..5ae7f607a9 100644 --- a/src/api/providers/__tests__/openrouter.test.ts +++ b/src/api/providers/__tests__/openrouter.test.ts @@ -58,7 +58,7 @@ describe("OpenRouterHandler", () => { baseURL: "https://openrouter.ai/api/v1", apiKey: mockOptions.openRouterApiKey, defaultHeaders: { - "HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline", + "HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline", "X-Title": "Roo Code", }, }) diff --git a/src/api/providers/__tests__/requesty.test.ts b/src/api/providers/__tests__/requesty.test.ts index 0a80ff496d..b999a01947 100644 --- a/src/api/providers/__tests__/requesty.test.ts +++ b/src/api/providers/__tests__/requesty.test.ts @@ -43,7 +43,7 @@ describe("RequestyHandler", () => { baseURL: "https://router.requesty.ai/v1", apiKey: mockOptions.requestyApiKey, defaultHeaders: { - "HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline", + "HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline", "X-Title": "Roo Code", }, }) diff --git a/src/api/providers/constants.ts b/src/api/providers/constants.ts index 57ef9be4f3..4d6c4672e5 100644 --- a/src/api/providers/constants.ts +++ b/src/api/providers/constants.ts @@ -1,5 +1,5 @@ export const DEFAULT_HEADERS = { - "HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline", + "HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline", "X-Title": "Roo Code", }