BizHawk/Version/VersionInfo.cs

13 lines
507 B
C#
Raw Normal View History

static class VersionInfo
{
2015-10-14 23:11:25 +00:00
public const string MAINVERSION = "1.11.3"; // Use numbers only or the new version notification won't work
public static readonly string RELEASEDATE = "October 14, 2015";
public static readonly bool DeveloperBuild = true;
public static readonly string HomePage = "http://tasvideos.org/BizHawk.html";
public static string GetEmuVersion()
{
return DeveloperBuild ? ("GIT " + SubWCRev.GIT_BRANCH + "#" + SubWCRev.GIT_SHORTHASH) : ("Version " + MAINVERSION);
}
2015-11-01 21:01:19 +00:00
}