Tastudio - expose in release builds and mark it as beta in the title
This commit is contained in:
parent
8bfe2220ef
commit
5a6c2adb0b
|
@ -1125,8 +1125,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
Global.Emulator.HasMemoryDomains();
|
||||
|
||||
batchRunnerToolStripMenuItem.Visible = VersionInfo.DeveloperBuild;
|
||||
|
||||
TAStudioMenuItem.Visible = VersionInfo.DeveloperBuild;
|
||||
}
|
||||
|
||||
private void ToolBoxMenuItem_Click(object sender, EventArgs e)
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -103,8 +103,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
NesDebuggerToolbarItem.Visible = VersionInfo.DeveloperBuild && Global.Emulator.SystemId == "NES";
|
||||
|
||||
TAStudioToolbarItem.Visible = VersionInfo.DeveloperBuild;
|
||||
}
|
||||
|
||||
private void SetSize()
|
||||
|
|
|
@ -2,7 +2,7 @@ static class VersionInfo
|
|||
{
|
||||
public const string MAINVERSION = "1.9.0";
|
||||
public static string RELEASEDATE = "November 23, 2014";
|
||||
public static bool DeveloperBuild = true;
|
||||
public static bool DeveloperBuild = false;
|
||||
|
||||
public static string GetEmuVersion()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue