Skip to content

Commit

Permalink
3.1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleidonKep99 committed May 14, 2016
1 parent c21d735 commit d5cccd8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,7 @@ private void Lis1_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
string bank = form.BankValueReturn;
string preset = form.PresetValueReturn;
Lis1.Items.Add("p" + bank + "," + preset + "=0,0|" + s[i]);
SaveList(List1Path, Lis1);
}
}
}
Expand Down Expand Up @@ -713,6 +714,7 @@ private void Lis2_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
string bank = form.BankValueReturn;
string preset = form.PresetValueReturn;
Lis2.Items.Add("p" + bank + "," + preset + "=0,0|" + s[i]);
SaveList(List2Path, Lis2);
}
}
}
Expand Down Expand Up @@ -759,6 +761,7 @@ private void Lis3_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
string bank = form.BankValueReturn;
string preset = form.PresetValueReturn;
Lis3.Items.Add("p" + bank + "," + preset + "=0,0|" + s[i]);
SaveList(List3Path, Lis3);
}
}
}
Expand Down Expand Up @@ -805,6 +808,7 @@ private void Lis4_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
string bank = form.BankValueReturn;
string preset = form.PresetValueReturn;
Lis4.Items.Add("p" + bank + "," + preset + "=0,0|" + s[i]);
SaveList(List4Path, Lis4);
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions keppydrv.iss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AppPublisherURL=http://keppystudios.com
AppSupportPhone=+393511888475
AppSupportURL=mailto:[email protected]
AppUpdatesURL=https://github.com/KaleidonKep99/Keppy-s-MIDI-Driver/releases
AppVersion=3.1.2.9
AppVersion=3.1.3.0
ArchitecturesAllowed=x86 x64
ArchitecturesInstallIn64BitMode=x64
Compression=bzip
Expand All @@ -37,9 +37,9 @@ 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
VersionInfoProductTextVersion=3.1.2.9
VersionInfoProductTextVersion=3.1.3.0
VersionInfoTextVersion=User-mode MIDI driver for Windows Vista and newer
VersionInfoVersion=3.1.2.9
VersionInfoVersion=3.1.3.0

[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.
4 changes: 2 additions & 2 deletions keppydrv/keppymididrv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ void _endthreadex(unsigned retval);

#include "sound_out.h"

#define MAX_DRIVERS 4
#define MAX_CLIENTS 8 // Per driver
#define MAX_DRIVERS 255
#define MAX_CLIENTS 255 // Per driver

#define SPFSTD 100

Expand Down
2 changes: 1 addition & 1 deletion output/keppydriverupdate.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.2.5
3.1.3.0

0 comments on commit d5cccd8

Please sign in to comment.