Fixed Versions

This commit is contained in:
Bob Da Ross
2021-03-22 23:10:38 -05:00
parent 51f5261001
commit c097a1e87c
2 changed files with 3 additions and 12 deletions

View File

@@ -107,7 +107,7 @@ namespace SeamlessClientPlugin
public static string Version = "1.1.10"; public static string Version = "1.2.10";
private bool Initilized = false; private bool Initilized = false;
private bool SentPingResponse = false; private bool SentPingResponse = false;
public const ushort SeamlessClientNetID = 2936; public const ushort SeamlessClientNetID = 2936;

View File

@@ -1,5 +1,4 @@
using AutoUpdaterDotNET; using ProtoBuf;
using ProtoBuf;
using Sandbox.Graphics.GUI; using Sandbox.Graphics.GUI;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
@@ -23,19 +22,11 @@ namespace SeamlessClientPlugin.Updater
public string PluginFolder; public string PluginFolder;
public string CurrentVersion; public string CurrentVersion;
public bool DownloadUpdate; public bool DownloadUpdate;
const int PORT_NO = 27010;
//AWS Website server
const string SERVER_IP = "3.80.137.183";
private string GitHubAPILink = "https://api.github.com/repos/Casimir255/SeamlessClientPlugin/releases/latest"; private string GitHubAPILink = "https://api.github.com/repos/Casimir255/SeamlessClientPlugin/releases/latest";
private string GitHubZipLink;
private WebClient Client; private WebClient Client;
private byte[] RecievedZipMememory;
public UpdateChecker(bool AutoUpdate) public UpdateChecker(bool AutoUpdate)