Skip to content

Commit 790c6b5

Browse files
authored
Fix referrer (#3848)
1 parent 9ee2033 commit 790c6b5

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
11161116

11171117
## [2.2.16]
11181118

1119-
- 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
1119+
- 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
11201120

11211121
## [2.2.14 - 2.2.15]
11221122

@@ -1188,7 +1188,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
11881188

11891189
## [2.1.15]
11901190

1191-
- Incorporate dbasclpy's [PR](https://github.com/RooCodeInc/Roo-Cline/pull/54) to add support for gemini-exp-1206
1191+
- Incorporate dbasclpy's [PR](https://github.com/RooCodeInc/Roo-Code/pull/54) to add support for gemini-exp-1206
11921192
- Make it clear that diff editing is very experimental
11931193

11941194
## [2.1.14]
@@ -1198,15 +1198,15 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
11981198

11991199
## [2.1.13]
12001200

1201-
- Fix https://github.com/RooCodeInc/Roo-Cline/issues/50 where sound effects were not respecting settings
1201+
- Fix https://github.com/RooCodeInc/Roo-Code/issues/50 where sound effects were not respecting settings
12021202

12031203
## [2.1.12]
12041204

12051205
- Incorporate JoziGila's [PR](https://github.com/cline/cline/pull/158) to add support for editing through diffs
12061206

12071207
## [2.1.11]
12081208

1209-
- Incorporate lloydchang's [PR](https://github.com/RooCodeInc/Roo-Cline/pull/42) to add support for OpenRouter compression
1209+
- Incorporate lloydchang's [PR](https://github.com/RooCodeInc/Roo-Code/pull/42) to add support for OpenRouter compression
12101210

12111211
## [2.1.10]
12121212

src/api/providers/__tests__/openai.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ describe("OpenAiHandler", () => {
101101
baseURL: expect.any(String),
102102
apiKey: expect.any(String),
103103
defaultHeaders: {
104-
"HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline",
104+
"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
105105
"X-Title": "Roo Code",
106106
},
107107
})

src/api/providers/__tests__/openrouter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe("OpenRouterHandler", () => {
5858
baseURL: "https://openrouter.ai/api/v1",
5959
apiKey: mockOptions.openRouterApiKey,
6060
defaultHeaders: {
61-
"HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline",
61+
"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
6262
"X-Title": "Roo Code",
6363
},
6464
})

src/api/providers/__tests__/requesty.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ describe("RequestyHandler", () => {
4343
baseURL: "https://router.requesty.ai/v1",
4444
apiKey: mockOptions.requestyApiKey,
4545
defaultHeaders: {
46-
"HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline",
46+
"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
4747
"X-Title": "Roo Code",
4848
},
4949
})

src/api/providers/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const DEFAULT_HEADERS = {
2-
"HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline",
2+
"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
33
"X-Title": "Roo Code",
44
}
55

0 commit comments

Comments
 (0)