Skip to content

Commit 886eca0

Browse files
committed
Update project name from Gemini Coder to Code Web Chat
1 parent 52772b6 commit 886eca0

25 files changed

Lines changed: 91 additions & 92 deletions

packages/browser/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Gemini Coder Connector
1+
# Code Web Chat Connector
22

3-
This extension works in conjunction with the Gemini Coder VS Code extension to seamlessly connect your code editor with various AI chat interfaces. It automates the process of initializing and configuring AI chats with your coding-related prompts.
3+
This extension works in conjunction with the Code Web Chat VS Code extension to seamlessly connect your code editor with various AI chat interfaces. It automates the process of initializing and configuring AI chats with your coding prompts.

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "shared",
33
"version": "1.0.0",
44
"private": true,
5-
"description": "Shared utilities for Gemini Coder",
5+
"description": "Shared utilities for CWC",
66
"scripts": {
77
"test": "jest"
88
},

packages/ui/src/components/editor/Header/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const Header: React.FC<Props> = (props) => {
3535
<a
3636
href="https://buymeacoffee.com/robertpiosik"
3737
className={styles.right__button}
38-
title="Thank you for choosing to support Gemini Coder"
38+
title="Thank you for choosing to support Code Web Chat"
3939
>
4040
<Icon variant="BUY_ME_A_COFFEE" />
4141
</a>

packages/vscode/package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -173,72 +173,72 @@
173173
{
174174
"command": "codeWebChat.codeCompletion",
175175
"title": "Code Completion",
176-
"category": "Gemini Coder"
176+
"category": "Code Web Chat"
177177
},
178178
{
179179
"command": "codeWebChat.codeCompletionAutoAccept",
180180
"title": "Code Completion",
181-
"category": "Gemini Coder"
181+
"category": "Code Web Chat"
182182
},
183183
{
184184
"command": "codeWebChat.codeCompletionWithSuggestions",
185185
"title": "Code Completion with Suggestions",
186-
"category": "Gemini Coder"
186+
"category": "Code Web Chat"
187187
},
188188
{
189189
"command": "codeWebChat.codeCompletionWithSuggestionsAutoAccept",
190190
"title": "Code Completion with Suggestions",
191-
"category": "Gemini Coder"
191+
"category": "Code Web Chat"
192192
},
193193
{
194194
"command": "codeWebChat.codeCompletionToClipboard",
195195
"title": "Code Completion Prompt to Clipboard",
196-
"category": "Gemini Coder"
196+
"category": "Code Web Chat"
197197
},
198198
{
199199
"command": "codeWebChat.codeCompletionWithSuggestionsToClipboard",
200200
"title": "Code Completion with Suggestions to Clipboard",
201-
"category": "Gemini Coder"
201+
"category": "Code Web Chat"
202202
},
203203
{
204204
"command": "codeWebChat.codeCompletionInChat",
205205
"title": "Code Completion in Chat",
206-
"category": "Gemini Coder"
206+
"category": "Code Web Chat"
207207
},
208208
{
209209
"command": "codeWebChat.codeCompletionInChatWith",
210210
"title": "Code Completion in Chat with...",
211-
"category": "Gemini Coder"
211+
"category": "Code Web Chat"
212212
},
213213
{
214214
"command": "codeWebChat.applyChatResponse",
215215
"title": "Apply Chat Response",
216-
"category": "Gemini Coder"
216+
"category": "Code Web Chat"
217217
},
218218
{
219219
"command": "codeWebChat.webChat",
220220
"title": "Web Chat",
221-
"category": "Gemini Coder"
221+
"category": "Code Web Chat"
222222
},
223223
{
224224
"command": "codeWebChat.webChatWith",
225225
"title": "Web Chat with...",
226-
"category": "Gemini Coder"
226+
"category": "Code Web Chat"
227227
},
228228
{
229229
"command": "codeWebChat.chatToClipboard",
230230
"title": "Chat to Clipboard",
231-
"category": "Gemini Coder"
231+
"category": "Code Web Chat"
232232
},
233233
{
234234
"command": "codeWebChat.refactor",
235235
"title": "Refactor",
236-
"category": "Gemini Coder"
236+
"category": "Code Web Chat"
237237
},
238238
{
239239
"command": "codeWebChat.refactorToClipboard",
240240
"title": "Refactor to Clipboard",
241-
"category": "Gemini Coder"
241+
"category": "Code Web Chat"
242242
},
243243
{
244244
"command": "codeWebChat.newFolder",
@@ -265,28 +265,28 @@
265265
{
266266
"command": "codeWebChat.applyChatResponseFastReplace",
267267
"title": "Apply Chat Response (Fast replace)",
268-
"category": "Gemini Coder"
268+
"category": "Code Web Chat"
269269
},
270270
{
271271
"command": "codeWebChat.applyChatResponseIntelligentUpdate",
272272
"title": "Apply Chat Response (Intelligent update)",
273-
"category": "Gemini Coder"
273+
"category": "Code Web Chat"
274274
},
275275
{
276276
"command": "codeWebChat.revert",
277277
"title": "Revert Last Applied Chat Response",
278-
"category": "Gemini Coder"
278+
"category": "Code Web Chat"
279279
},
280280
{
281281
"command": "codeWebChat.generateCommitMessage",
282-
"title": "Generate Commit Message with Gemini Coder",
282+
"title": "Generate Commit Message with Code Web Chat",
283283
"category": "Code Web Chat",
284284
"icon": "$(sparkle)"
285285
},
286286
{
287287
"command": "codeWebChat.referenceInChat",
288288
"title": "Reference in Chat",
289-
"category": "Gemini Coder"
289+
"category": "Code Web Chat"
290290
},
291291
{
292292
"command": "codeWebChat.openSettings",
@@ -583,7 +583,7 @@
583583
},
584584
"configuration": {
585585
"type": "object",
586-
"title": "Gemini Coder Settings",
586+
"title": "Code Web Chat Settings",
587587
"properties": {
588588
"codeWebChat.commitMessagePrompt": {
589589
"type": "string",

packages/vscode/src/commands/apply-chat-response-command/apply-chat-response-command.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ export function apply_chat_response_command(params: {
351351

352352
if (!file_refactoring_settings.provider) {
353353
vscode.window.showErrorMessage(
354-
'API provider is not specified for File Refactoring tool. Go to Gemini Coder panel -> API Tools tab -> Configure Tools.'
354+
'API provider is not specified for File Refactoring tool. Go to Code Web Chat panel -> API Tools tab -> Configure Tools.'
355355
)
356356
Logger.warn({
357357
function_name: 'apply_chat_response_command',
@@ -360,7 +360,7 @@ export function apply_chat_response_command(params: {
360360
return
361361
} else if (!file_refactoring_settings.model) {
362362
vscode.window.showErrorMessage(
363-
'Model is not specified for File Refactoring tool. Go to Gemini Coder panel -> API Tools tab -> Configure Tools.'
363+
'Model is not specified for File Refactoring tool. Go to Code Web Chat panel -> API Tools tab -> Configure Tools.'
364364
)
365365
Logger.warn({
366366
function_name: 'apply_chat_response_command',
@@ -474,7 +474,7 @@ export function apply_chat_response_command(params: {
474474
!file_refactoring_settings.model
475475
) {
476476
vscode.window.showErrorMessage(
477-
'API provider or model is not configured for Intelligent update. Go to Gemini Coder panel -> API Tools tab -> Configure Tools.'
477+
'API provider or model is not configured for Intelligent update. Go to Code Web Chat panel -> API Tools tab -> Configure Tools.'
478478
)
479479
return
480480
}

packages/vscode/src/commands/code-completion-in-chat-commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function handle_code_completion_in_chat_command(
2020
// Check connection status
2121
if (!websocket_server_instance.is_connected_with_browser()) {
2222
vscode.window.showInformationMessage(
23-
'Could not connect to the web browser. Please check if it is running and if the Gemini Coder Connector is installed. You might also need to open Gemini Coder panel for the first time to fully initialize the extension.'
23+
'Could not connect to the web browser. Please check if it is running and if the connector extension is installed.'
2424
)
2525
return
2626
}

packages/vscode/src/commands/generate-commit-message-command.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export function generate_commit_message_command(
7878

7979
if (!commit_message_settings.provider) {
8080
vscode.window.showErrorMessage(
81-
'API provider is not specified for Commit Messages tool. Go to Gemini Coder panel -> API Tools tab -> Configure Tools.'
81+
'API provider is not specified for Commit Messages tool. Go to Code Web Chat panel -> API Tools tab -> Configure Tools.'
8282
)
8383
Logger.warn({
8484
function_name: 'generate_commit_message_command',
@@ -87,7 +87,7 @@ export function generate_commit_message_command(
8787
return
8888
} else if (!commit_message_settings.model) {
8989
vscode.window.showErrorMessage(
90-
'Model is not specified for Commit Messages tool. Go to Gemini Coder panel -> API Tools tab -> Configure Tools.'
90+
'Model is not specified for Commit Messages tool. Go to Code Web Chat panel -> API Tools tab -> Configure Tools.'
9191
)
9292
Logger.warn({
9393
function_name: 'generate_commit_message_command',

packages/vscode/src/commands/refactor-command.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export function refactor_command(params: {
8787

8888
if (!refactoring_settings.provider) {
8989
vscode.window.showErrorMessage(
90-
'API provider is not specified for File Refactoring tool. Go to Gemini Coder panel -> API Tools tab -> Configure Tools.'
90+
'API provider is not specified for File Refactoring tool. Go to Code Web Chat panel -> API Tools tab -> Configure Tools.'
9191
)
9292
Logger.warn({
9393
function_name: 'refactor_command',
@@ -96,7 +96,7 @@ export function refactor_command(params: {
9696
return
9797
} else if (!refactoring_settings.model) {
9898
vscode.window.showErrorMessage(
99-
'Model is not specified for File Refactoring tool. Go to Gemini Coder panel -> API Tools tab -> Configure Tools.'
99+
'Model is not specified for File Refactoring tool. Go to Code Web Chat panel -> API Tools tab -> Configure Tools.'
100100
)
101101
Logger.warn({
102102
function_name: 'refactor_command',

packages/vscode/src/commands/web-chat-commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export function web_chat_with_command(
9595
// Check connection status immediately
9696
if (!websocket_server_instance.is_connected_with_browser()) {
9797
vscode.window.showInformationMessage(
98-
'Could not connect to the web browser. Please check if it is running and if the Gemini Coder Connector is installed. You might also need to open Gemini Coder panel for the first time to fully initialize the extension.'
98+
'Could not connect to the web browser. Please check if it is running and if the connector extension is installed.'
9999
)
100100
return
101101
}
@@ -146,7 +146,7 @@ export function web_chat_command(
146146
// Check connection status immediately
147147
if (!websocket_server_instance.is_connected_with_browser()) {
148148
vscode.window.showInformationMessage(
149-
'Could not connect to the web browser. Please check if it is running and if the Gemini Coder Connector is installed. You might also need to open Gemini Coder panel for the first time to fully initialize the extension.'
149+
'Could not connect to the web browser. Please check if it is running and if the connector extension is installed.'
150150
)
151151
return
152152
}

packages/vscode/src/helpers/make-api-request.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,8 @@ export async function make_api_request(
102102
['Content-Type']: 'application/json',
103103
...(endpoint_url == 'https://openrouter.ai/api/v1'
104104
? {
105-
'HTTP-Referer':
106-
'https://marketplace.visualstudio.com/items?itemName=robertpiosik.gemini-coder',
107-
'X-Title': 'Gemini Coder'
105+
'HTTP-Referer': 'https://codeweb.chat/',
106+
'X-Title': 'Code Web Chat (CWC)'
108107
}
109108
: {})
110109
},

0 commit comments

Comments
 (0)