Skip to content

Commit

Permalink
don't check certificates anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
fortenforge committed Apr 12, 2024
1 parent 4ccd2b8 commit e61c7f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions CodeiumVS/LanguageServer/LanguageServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace CodeiumVS;
public class LanguageServer
{
private string _languageServerURL;
private string _languageServerVersion = "1.8.16";
private string _languageServerVersion = "1.8.23";

private int _port = 0;
private System.Diagnostics.Process _process;
Expand Down Expand Up @@ -328,7 +328,7 @@ await _package.LogAsync(
progressDialog.EndWaitDialog();
(progressDialog as IDisposable)?.Dispose();

if (e.Error == null) await StartAsync();
if (e.Error == null) await StartAsync(true);
}

/// <summary>
Expand Down Expand Up @@ -394,7 +394,7 @@ public async Task PrepareAsync()

if (File.Exists(binaryPath))
{
await StartAsync();
await StartAsync(true);
return;
}

Expand Down Expand Up @@ -665,7 +665,7 @@ private void LSP_OnExited(object sender, EventArgs e)
_port = 0;
_process = null;
Controller.Disconnect();
ThreadHelper.JoinableTaskFactory.RunAsync(async delegate { await StartAsync(); })
ThreadHelper.JoinableTaskFactory.RunAsync(async delegate { await StartAsync(true); })
.FireAndForget(true);
}

Expand Down
2 changes: 1 addition & 1 deletion CodeiumVS/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal sealed partial class Vsix
public const string Name = "Codeium";
public const string Description = @"The modern coding superpower: free AI code acceleration plugin for your favorite languages. Type less. Code more. Ship faster.";
public const string Language = "en-US";
public const string Version = "1.8.17";
public const string Version = "1.8.23";
public const string Author = "Codeium";
public const string Tags = "";
}
Expand Down
2 changes: 1 addition & 1 deletion CodeiumVS/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Codeium.VisualStudio" Version="1.8.17" Language="en-US" Publisher="Codeium" />
<Identity Id="Codeium.VisualStudio" Version="1.8.23" Language="en-US" Publisher="Codeium" />
<DisplayName>Codeium</DisplayName>
<Description xml:space="preserve">The modern coding superpower: free AI code acceleration plugin for your favorite languages. Type less. Code more. Ship faster.</Description>
<MoreInfo>https://www.codeium.com</MoreInfo>
Expand Down

0 comments on commit e61c7f0

Please sign in to comment.