@@ -30,7 +30,7 @@ namespace CodeiumVS;
30
30
public class LanguageServer
31
31
{
32
32
private string _languageServerURL ;
33
- private string _languageServerVersion = "1.42.3 " ;
33
+ private string _languageServerVersion = "1.42.7 " ;
34
34
35
35
private int _port = 0 ;
36
36
private System . Diagnostics . Process _process ;
@@ -136,7 +136,7 @@ public async Task SignInWithAuthTokenAsync(string authToken)
136
136
137
137
// show an error message box
138
138
var msgboxResult = await VS . MessageBox . ShowAsync (
139
- "Codeium : Failed to sign in. Please check the output window for more details." ,
139
+ "Windsurf : Failed to sign in. Please check the output window for more details." ,
140
140
"Do you want to retry?" ,
141
141
OLEMSGICON . OLEMSGICON_WARNING ,
142
142
OLEMSGBUTTON . OLEMSGBUTTON_RETRYCANCEL ,
@@ -170,7 +170,7 @@ public async Task SignInAsync()
170
170
{
171
171
// show an error message box
172
172
var msgboxResult = await VS . MessageBox . ShowAsync (
173
- "Codeium : Failed to get the Authentication Token. Please check the output window for more details." ,
173
+ "Windsurf : Failed to get the Authentication Token. Please check the output window for more details." ,
174
174
"Do you want to retry?" ,
175
175
OLEMSGICON . OLEMSGICON_WARNING ,
176
176
OLEMSGBUTTON . OLEMSGBUTTON_RETRYCANCEL ,
@@ -186,7 +186,7 @@ public async Task SignInAsync()
186
186
187
187
string state = Guid . NewGuid ( ) . ToString ( ) ;
188
188
string portalUrl = _package . SettingsPage . EnterpriseMode ? _package . SettingsPage . PortalUrl
189
- : "https://www.codeium .com" ;
189
+ : "https://www.windsurf .com" ;
190
190
string redirectUrl = Uri . EscapeDataString ( $ "http://127.0.0.1:{ _port } /auth") ;
191
191
string url =
192
192
$ "{ portalUrl } /profile?response_type=token&redirect_uri={ redirectUrl } &state={ state } &scope=openid%20profile%20email&redirect_parameters_type=query";
@@ -258,7 +258,7 @@ private async Task ThreadDownload_UpdateProgressAsync(DownloadProgressChangedEve
258
258
progressDialog . UpdateProgress (
259
259
$ "Downloading language server v{ _languageServerVersion } ({ e . ProgressPercentage } %)",
260
260
$ "{ recievedBytesMb : f2} Mb / { totalBytesMb : f2} Mb",
261
- $ "Codeium : Downloading language server v{ _languageServerVersion } ({ e . ProgressPercentage } %)",
261
+ $ "Windsurf : Downloading language server v{ _languageServerVersion } ({ e . ProgressPercentage } %)",
262
262
( int ) e . BytesReceived ,
263
263
( int ) e . TotalBytesToReceive ,
264
264
true ,
@@ -275,11 +275,11 @@ private async Task ThreadDownload_OnCompletedAsync(AsyncCompletedEventArgs e,
275
275
{
276
276
await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
277
277
278
- progressDialog . StartWaitDialog ( "Codeium " ,
278
+ progressDialog . StartWaitDialog ( "Windsurf " ,
279
279
$ "Extracting files...",
280
280
"Almost done" ,
281
281
null ,
282
- $ "Codeium : Extracting files...",
282
+ $ "Windsurf : Extracting files...",
283
283
0 ,
284
284
false ,
285
285
true ) ;
@@ -304,7 +304,7 @@ await _package.LogAsync(
304
304
] ;
305
305
306
306
errorBar . Show (
307
- "[Codeium ] Critical Error: Failed to download the language server. Do you want to retry?" ,
307
+ "[Windsurf ] Critical Error: Failed to download the language server. Do you want to retry?" ,
308
308
KnownMonikers . StatusError ,
309
309
true ,
310
310
null ,
@@ -423,11 +423,11 @@ await _package.LogAsync(
423
423
IVsThreadedWaitDialog4 progressDialog = waitDialogFactory . CreateInstance ( ) ;
424
424
425
425
progressDialog . StartWaitDialog (
426
- "Codeium " ,
426
+ "Windsurf " ,
427
427
$ "Downloading language server v{ _languageServerVersion } ",
428
428
"" ,
429
429
null ,
430
- $ "Codeium : Downloading language server v{ _languageServerVersion } ",
430
+ $ "Windsurf : Downloading language server v{ _languageServerVersion } ",
431
431
0 ,
432
432
false ,
433
433
true ) ;
@@ -489,7 +489,7 @@ await _package.LogAsync(
489
489
490
490
await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
491
491
errorBar . Show (
492
- "[Codeium ] Failed to verify the language server digital signature. The executable might be corrupted." ,
492
+ "[Windsurf ] Failed to verify the language server digital signature. The executable might be corrupted." ,
493
493
KnownMonikers . IntellisenseWarning ,
494
494
true ,
495
495
null ,
@@ -526,7 +526,7 @@ await _package.LogAsync(
526
526
$ "LanguageServer.StartAsync: Failed to create directories; Exception: { ex } ") ;
527
527
528
528
new NotificationInfoBar ( ) . Show (
529
- "[Codeium ] Critical error: Failed to create language server directories. Please check the output window for more details." ,
529
+ "[Windsurf ] Critical error: Failed to create language server directories. Please check the output window for more details." ,
530
530
KnownMonikers . StatusError ,
531
531
true ,
532
532
null ,
@@ -594,7 +594,7 @@ await _package.LogAsync(
594
594
595
595
await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
596
596
errorBar . Show (
597
- "[Codeium ] Critical Error: Failed to start the language server. Do you want to retry?" ,
597
+ "[Windsurf ] Critical Error: Failed to start the language server. Do you want to retry?" ,
598
598
KnownMonikers . StatusError ,
599
599
true ,
600
600
null ,
@@ -616,7 +616,7 @@ await _package.LogAsync(
616
616
// warn the user about the issue
617
617
await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
618
618
new NotificationInfoBar ( ) . Show (
619
- "[Codeium ] Failed to read output from the language server, Codeium might not work properly." ,
619
+ "[Windsurf ] Failed to read output from the language server, Windsurf might not work properly." ,
620
620
KnownMonikers . IntellisenseWarning ,
621
621
true ,
622
622
null ,
@@ -650,7 +650,7 @@ await _package.LogAsync(
650
650
else
651
651
{
652
652
new NotificationInfoBar ( ) . Show (
653
- "[Codeium ] Critical Error: Failed to get the language server port. Please check the output window for more details." ,
653
+ "[Windsurf ] Critical Error: Failed to get the language server port. Please check the output window for more details." ,
654
654
KnownMonikers . StatusError ,
655
655
true ,
656
656
null ,
0 commit comments