cleanup VersionInfo.cs

This commit is contained in:
adelikat 2017-04-27 11:30:22 -05:00
parent ee842fbde3
commit b98d428a64
1 changed files with 9 additions and 5 deletions

View File

@ -1,8 +1,8 @@
using System.IO;
static class VersionInfo
internal static class VersionInfo
{
public const string MAINVERSION = "1.11.8"; // Use numbers only or the new version notification won't work
public const string Mainversion = "1.11.8"; // Use numbers only or the new version notification won't work
public static readonly string RELEASEDATE = "October 22, 2016";
public static readonly bool DeveloperBuild = true;
public static readonly string HomePage = "http://tasvideos.org/BizHawk.html";
@ -11,7 +11,7 @@ static class VersionInfo
public static string GetEmuVersion()
{
return DeveloperBuild ? ("GIT " + SubWCRev.GIT_BRANCH + "#" + SubWCRev.GIT_SHORTHASH) : ("Version " + MAINVERSION);
return DeveloperBuild ? ("GIT " + SubWCRev.GIT_BRANCH + "#" + SubWCRev.GIT_SHORTHASH) : ("Version " + Mainversion);
}
static VersionInfo()
@ -22,16 +22,20 @@ static class VersionInfo
{
var lines = File.ReadAllLines(path);
if (lines.Length > 0)
{
CustomBuildString = lines[0];
}
}
}
//code copied to avoid depending on code in otherp rojects
static string GetExeDirectoryAbsolute()
// code copied to avoid depending on code in otherp rojects
private static string GetExeDirectoryAbsolute()
{
var path = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);
if (path.EndsWith(Path.DirectorySeparatorChar.ToString()))
{
path = path.Remove(path.Length - 1, 1);
}
return path;
}