From 66e0d4b214c3e69b211bb07c109b549bf46d0b97 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 6 Dec 2020 07:25:52 +1000 Subject: [PATCH] Misc. cleanups in VersionInfo --- src/BizHawk.Common/VersionInfo.cs | 41 ++++++++++++++----------------- 1 file changed, 18 insertions(+), 23 deletions(-) diff --git a/src/BizHawk.Common/VersionInfo.cs b/src/BizHawk.Common/VersionInfo.cs index de78c89c64..9e7adb6589 100644 --- a/src/BizHawk.Common/VersionInfo.cs +++ b/src/BizHawk.Common/VersionInfo.cs @@ -1,29 +1,33 @@ using System.IO; using System.Reflection; +using BizHawk.Common.StringExtensions; + namespace BizHawk.Common { public static partial class VersionInfo { - // keep this updated at every major release - public static readonly string MainVersion = "2.5.3"; // Use numbers only or the new version notification won't work + /// + /// Bump this immediately after release. + /// Only use '0'..'9' and '.' or it will fail to parse and the new version notification won't work. + /// + public static readonly string MainVersion = "2.5.3"; + public static readonly string ReleaseDate = "September 12, 2020"; + public static readonly string HomePage = "http://tasvideos.org/BizHawk.html"; + public static readonly bool DeveloperBuild = true; public static readonly string? CustomBuildString; - public static string GetEmuVersion() - { - return DeveloperBuild - ? "GIT " + GIT_BRANCH + "#" + GIT_SHORTHASH - : "Version " + MainVersion; - } - static VersionInfo() { - string path = Path.Combine(GetExeDirectoryAbsolute(), "dll"); - path = Path.Combine(path, "custombuild.txt"); + var path = Path.Combine( + Path.GetDirectoryName(Assembly.GetEntryAssembly()?.Location)?.RemoveSuffix(Path.DirectorySeparatorChar) ?? string.Empty, + "dll", + "custombuild.txt" + ); if (File.Exists(path)) { var lines = File.ReadAllLines(path); @@ -34,6 +38,9 @@ namespace BizHawk.Common } } + public static string GetEmuVersion() + => DeveloperBuild ? $"GIT {GIT_BRANCH}#{GIT_SHORTHASH}" : $"Version {MainVersion}"; + /// "2.5.1" => 0x02050100 public static int VersionStrToInt(string s) { @@ -48,17 +55,5 @@ namespace BizHawk.Common } return v; } - - // code copied to avoid depending on code in other projects - private static string GetExeDirectoryAbsolute() - { - var path = Path.GetDirectoryName(Assembly.GetEntryAssembly()?.Location) ?? ""; - if (path.EndsWith(Path.DirectorySeparatorChar.ToString())) - { - path = path.Remove(path.Length - 1, 1); - } - - return path; - } } }