Skip to content

Commit

Permalink
--release version 1.0.0!--
Browse files Browse the repository at this point in the history
update release date on about box, add forums link, change link for online help
  • Loading branch information
adelikat committed Mar 3, 2012
1 parent ff6b6d6 commit f415bff
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 20 deletions.
4 changes: 2 additions & 2 deletions BizHawk.MultiClient/BizBox.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 26 additions & 15 deletions BizHawk.MultiClient/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BizHawk.MultiClient/MainForm.MenuItems.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ private void pauseToolStripMenuItem_Click(object sender, EventArgs e)

private void helpToolStripMenuItem1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("http://code.google.com/p/bizhawk/");
System.Diagnostics.Process.Start("http://tasvideos.org/BizHawk.thml");
}

private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
Expand Down
9 changes: 7 additions & 2 deletions BizHawk.MultiClient/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace BizHawk.MultiClient

public partial class MainForm : Form
{
public bool INTERIM = true;
public bool INTERIM = false;
public const string EMUVERSION = "BizHawk v1.0.0";
private Control renderTarget;
private RetainedViewportPanel retainedPanel;
Expand Down Expand Up @@ -241,7 +241,7 @@ public MainForm(string[] args)
if (!INTERIM)
{
debuggerToolStripMenuItem.Enabled = false;
luaConsoleToolStripMenuItem.Enabled = false;
//luaConsoleToolStripMenuItem.Enabled = false;
}
}

Expand Down Expand Up @@ -2514,5 +2514,10 @@ private void importMovieToolStripMenuItem_Click(object sender, EventArgs e)
Global.RenderPanel.AddMessage(Path.GetFileName(fn) + " imported as .tas");
}
}

private void forumsToolStripMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("http://tasvideos.org/forum/viewforum.php?f=64");
}
}
}

0 comments on commit f415bff

Please sign in to comment.