Skip to content

Commit

Permalink
Version 0.2.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
arbruijn committed May 31, 2020
1 parent 7aef32c commit d3c8a96
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions GameMod/GameMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
4 changes: 2 additions & 2 deletions GameMod/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit d3c8a96

Please sign in to comment.