@@ -30,7 +30,7 @@ namespace CodeiumVS;
3030public class LanguageServer
3131{
3232 private string _languageServerURL ;
33- private string _languageServerVersion = "1.42.3 " ;
33+ private string _languageServerVersion = "1.42.7 " ;
3434
3535 private int _port = 0 ;
3636 private System . Diagnostics . Process _process ;
@@ -136,7 +136,7 @@ public async Task SignInWithAuthTokenAsync(string authToken)
136136
137137 // show an error message box
138138 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." ,
140140 "Do you want to retry?" ,
141141 OLEMSGICON . OLEMSGICON_WARNING ,
142142 OLEMSGBUTTON . OLEMSGBUTTON_RETRYCANCEL ,
@@ -170,7 +170,7 @@ public async Task SignInAsync()
170170 {
171171 // show an error message box
172172 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." ,
174174 "Do you want to retry?" ,
175175 OLEMSGICON . OLEMSGICON_WARNING ,
176176 OLEMSGBUTTON . OLEMSGBUTTON_RETRYCANCEL ,
@@ -186,7 +186,7 @@ public async Task SignInAsync()
186186
187187 string state = Guid . NewGuid ( ) . ToString ( ) ;
188188 string portalUrl = _package . SettingsPage . EnterpriseMode ? _package . SettingsPage . PortalUrl
189- : "https://www.codeium .com" ;
189+ : "https://www.windsurf .com" ;
190190 string redirectUrl = Uri . EscapeDataString ( $ "http://127.0.0.1:{ _port } /auth") ;
191191 string url =
192192 $ "{ 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
258258 progressDialog . UpdateProgress (
259259 $ "Downloading language server v{ _languageServerVersion } ({ e . ProgressPercentage } %)",
260260 $ "{ recievedBytesMb : f2} Mb / { totalBytesMb : f2} Mb",
261- $ "Codeium : Downloading language server v{ _languageServerVersion } ({ e . ProgressPercentage } %)",
261+ $ "Windsurf : Downloading language server v{ _languageServerVersion } ({ e . ProgressPercentage } %)",
262262 ( int ) e . BytesReceived ,
263263 ( int ) e . TotalBytesToReceive ,
264264 true ,
@@ -275,11 +275,11 @@ private async Task ThreadDownload_OnCompletedAsync(AsyncCompletedEventArgs e,
275275 {
276276 await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
277277
278- progressDialog . StartWaitDialog ( "Codeium " ,
278+ progressDialog . StartWaitDialog ( "Windsurf " ,
279279 $ "Extracting files...",
280280 "Almost done" ,
281281 null ,
282- $ "Codeium : Extracting files...",
282+ $ "Windsurf : Extracting files...",
283283 0 ,
284284 false ,
285285 true ) ;
@@ -304,7 +304,7 @@ await _package.LogAsync(
304304 ] ;
305305
306306 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?" ,
308308 KnownMonikers . StatusError ,
309309 true ,
310310 null ,
@@ -423,11 +423,11 @@ await _package.LogAsync(
423423 IVsThreadedWaitDialog4 progressDialog = waitDialogFactory . CreateInstance ( ) ;
424424
425425 progressDialog . StartWaitDialog (
426- "Codeium " ,
426+ "Windsurf " ,
427427 $ "Downloading language server v{ _languageServerVersion } ",
428428 "" ,
429429 null ,
430- $ "Codeium : Downloading language server v{ _languageServerVersion } ",
430+ $ "Windsurf : Downloading language server v{ _languageServerVersion } ",
431431 0 ,
432432 false ,
433433 true ) ;
@@ -489,7 +489,7 @@ await _package.LogAsync(
489489
490490 await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
491491 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." ,
493493 KnownMonikers . IntellisenseWarning ,
494494 true ,
495495 null ,
@@ -526,7 +526,7 @@ await _package.LogAsync(
526526 $ "LanguageServer.StartAsync: Failed to create directories; Exception: { ex } ") ;
527527
528528 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." ,
530530 KnownMonikers . StatusError ,
531531 true ,
532532 null ,
@@ -594,7 +594,7 @@ await _package.LogAsync(
594594
595595 await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
596596 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?" ,
598598 KnownMonikers . StatusError ,
599599 true ,
600600 null ,
@@ -616,7 +616,7 @@ await _package.LogAsync(
616616 // warn the user about the issue
617617 await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
618618 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." ,
620620 KnownMonikers . IntellisenseWarning ,
621621 true ,
622622 null ,
@@ -650,7 +650,7 @@ await _package.LogAsync(
650650 else
651651 {
652652 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." ,
654654 KnownMonikers . StatusError ,
655655 true ,
656656 null ,
0 commit comments