From d3c8a961a01eb1f157ce88d94aa8c7b960293800 Mon Sep 17 00:00:00 2001 From: Arne de Bruijn Date: Sun, 31 May 2020 15:18:30 +0200 Subject: [PATCH] Version 0.2.9.4 --- GameMod/GameMod.cs | 6 +++--- GameMod/Properties/AssemblyInfo.cs | 4 ++-- README.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/GameMod/GameMod.cs b/GameMod/GameMod.cs index 0365e0bf..1502e7e0 100644 --- a/GameMod/GameMod.cs +++ b/GameMod/GameMod.cs @@ -11,14 +11,14 @@ namespace GameMod.Core { public class GameMod { - public static readonly string Version = "olmod 0.2.9.3"; + public static readonly string Version = "olmod 0.2.9.4"; private static Version GameVersion; internal static void Initialize() { - Debug.Log("Initializing " + Version); - Debug.Log("Command line " + String.Join(" ", Environment.GetCommandLineArgs())); GameVersion = typeof(Overload.GameManager).Assembly.GetName().Version; + Debug.Log("Initializing " + Version + ", game " + GameVersion); + Debug.Log("Command line " + String.Join(" ", Environment.GetCommandLineArgs())); Config.Init(); MPInternet.CheckInternetServer(); HarmonyInstance.DEBUG = FindArg("-harmonydebug"); diff --git a/GameMod/Properties/AssemblyInfo.cs b/GameMod/Properties/AssemblyInfo.cs index 0da37ca6..4254944b 100644 --- a/GameMod/Properties/AssemblyInfo.cs +++ b/GameMod/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.2.9.3")] -[assembly: AssemblyFileVersion("0.2.9.3")] +[assembly: AssemblyVersion("0.2.9.4")] +[assembly: AssemblyFileVersion("0.2.9.4")] diff --git a/README.md b/README.md index a73cea90..e3fb895d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This is an unaffiliated, unsupported tool. Use at your own risk. #### How to run - Download the latest release: - [olmod-0.2.9.3.zip](https://github.com/arbruijn/olmod/releases/download/v0.2.9.3/olmod-0.2.9.3.zip) + [olmod-0.2.9.4.zip](https://github.com/arbruijn/olmod/releases/download/v0.2.9.4/olmod-0.2.9.4.zip) - Extract olmod in the Overload main directory (where `Overload.exe` / `Overload.x86_64` / `Overload.app` is also located).