Skip to content

Commit

Permalink
🔖 update version
Browse files Browse the repository at this point in the history
  • Loading branch information
edmand46 committed Oct 14, 2023
1 parent e33c442 commit fef1007
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions Ragon.Server/Sources/RagonServerConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ public enum ServerType
WEBSOCKET,
}

public class WebHook
{

}

[Serializable]
public struct RagonServerConfiguration
{
Expand All @@ -47,7 +42,7 @@ public struct RagonServerConfiguration
public Dictionary<string, string> WebHooks;

private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private static readonly string ServerVersion = "1.3.2";
private static readonly string ServerVersion = "1.3.1";
private static Dictionary<string, ServerType> _serverTypes = new Dictionary<string, ServerType>()
{
{"enet", Server.ServerType.ENET},
Expand All @@ -65,11 +60,7 @@ public static RagonServerConfiguration Load(string filePath)

private static void CopyrightInfo()
{
var assembly = System.Reflection.Assembly.GetExecutingAssembly();
var fvi = System.Diagnostics.FileVersionInfo.GetVersionInfo(assembly.Location);
var version = fvi.ProductVersion;

Logger.Info($"Server Version: {version}");
Logger.Info($"Server Version: {ServerVersion}");
Logger.Info($"Machine Name: {Environment.MachineName}");
Logger.Info($"OS: {Environment.OSVersion}");
Logger.Info($"Processors: {Environment.ProcessorCount}");
Expand Down

0 comments on commit fef1007

Please sign in to comment.