1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-05-03 14:39:47 +00:00

Minor performance improvements. General cleanup. Fixed major (but subtle) issue with memory state machine (BravoX now works!). Updated readme and installer for 1.1 release.

This commit is contained in:
Josh Dersch
2016-10-17 14:32:22 -07:00
parent 39277a17a2
commit ae0896b362
14 changed files with 240 additions and 143 deletions

View File

@@ -16,6 +16,7 @@
*/
using System;
using System.Reflection;
using System.Windows.Forms;
namespace Contralto
@@ -25,6 +26,8 @@ namespace Contralto
public AboutBox()
{
InitializeComponent();
VersionLabel.Text += typeof(Program).Assembly.GetName().Version;
}
private void OkButton_Click(object sender, EventArgs e)
@@ -41,5 +44,10 @@ namespace Contralto
{
System.Diagnostics.Process.Start("mailto:joshd@livingcomputermuseum.org");
}
private void OnSiteLinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://www.livingcomputermuseum.org");
}
}
}