Skip to content

Commit

Permalink
AYY CARRAMBA 3.1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleidonKep99 committed Mar 5, 2016
1 parent 1aa9faa commit 44587a4
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -882,8 +882,7 @@ private void BlackMIDIPres_Click(object sender, EventArgs e)

private void openDebugWindowToolStripMenuItem_Click(object sender, EventArgs e)
{
KeppyDriverDebugWindow frm = new KeppyDriverDebugWindow();
frm.Show();
KeppyDriverDebugWindow.GetForm.Show();
}

private void openTheBlacklistManagerToolStripMenuItem_Click(object sender, EventArgs e)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Threading;
using System.ComponentModel;
using System.Data;
using System.Drawing;
Expand All @@ -11,6 +12,24 @@ namespace KeppyDriverConfigurator
{
public partial class KeppyDriverDebugWindow : Form
{
private static KeppyDriverDebugWindow inst;
public static KeppyDriverDebugWindow GetForm
{
get
{
if (inst == null || inst.IsDisposed)
{
inst = new KeppyDriverDebugWindow();
}
else
{
System.Media.SystemSounds.Asterisk.Play();
Application.OpenForms["KeppyDriverDebugWindow"].BringToFront();
}
return inst;
}
}

public KeppyDriverDebugWindow()
{
InitializeComponent();
Expand All @@ -32,5 +51,6 @@ private void DebugRefresh_Tick(object sender, EventArgs e)
Close();
}
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="RichTextBox1.Text" xml:space="preserve">
<value>Compiled in: March 4, 2016 (5:42:31 PM, GMT +1)
<value>Compiled in: March 5, 2016 (1:06:18 AM, GMT +1)
Target OS: Microsoft Windows 7 Home Premium (64-bit)
Compiler used: Microsoft Visual Studio 2013 (Update 5)

Expand Down
4 changes: 2 additions & 2 deletions keppydrv.iss
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ VersionInfoCompany=Keppy Studios
VersionInfoCopyright=Copyright (c) 2011-2016 Brad Miller, Chris Moeller and Riccardo Loi. All rights reserved.
VersionInfoDescription=User-mode MIDI driver for Windows Vista and newer
VersionInfoProductName=Keppy's Driver 3.1
VersionInfoProductTextVersion=3.1.0.3
VersionInfoProductTextVersion=3.1.0.4
VersionInfoProductVersion=3.1
VersionInfoTextVersion=User-mode MIDI driver for Windows Vista and newer
VersionInfoVersion=3.1.0.3
VersionInfoVersion=3.1.0.4

[Files]
; 64-bit OS
Expand Down
Binary file modified keppydrv/Resource.aps
Binary file not shown.
Binary file modified keppydrv/Resource.rc
Binary file not shown.

0 comments on commit 44587a4

Please sign in to comment.