Skip to content

Commit

Permalink
3.1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleidonKep99 committed Mar 4, 2016
1 parent 961fe83 commit 1485b32
Show file tree
Hide file tree
Showing 30 changed files with 1,341 additions and 123 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.suo
*.suo
*.tmp
keppydrvcfg2/
/*.dll
/*.exe
/*.opensdf
Expand Down Expand Up @@ -30,9 +31,6 @@
/keppydrv/out
/keppydrv/output
/keppydrv/x64
/keppydrvcfg2/bin
/keppydrvcfg2/obj
/keppydrvcfg2/output
/keppydrvconfig
/KeppyDriverConfigurator/KeppyDriverConfigurator/bin
/KeppyDriverConfigurator/KeppyDriverConfigurator/obj
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ public partial class BankNPresetSel : Form
{
public string BankValueReturn { get; set; }
public string PresetValueReturn { get; set; }
public string SelectedSF { get; set; }

public BankNPresetSel()
public BankNPresetSel(String Target)
{
InitializeComponent();

SelectedSF = Target;
}

private void PresetSel_Load(object sender, EventArgs e)
{
SelectedSFLabel.Text = "Selected soundfont:\n" + SelectedSF;
BankVal.Value = 0;
PresetVal.Value = 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<PlatformTarget>x86</PlatformTarget>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\output\</OutputPath>
Expand Down Expand Up @@ -91,6 +91,17 @@
<Compile Include="KeppyDriverInformation.Designer.cs">
<DependentUpon>KeppyDriverInformation.cs</DependentUpon>
</Compile>
<Compile Include="KeppyDriverMIDIOutSelectorWin.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="KeppyDriverMIDIOutSelectorWin.Designer.cs">
<DependentUpon>KeppyDriverMIDIOutSelectorWin.cs</DependentUpon>
</Compile>
<Compile Include="MIDI\Interop\Constants.cs" />
<Compile Include="MIDI\Interop\Functions.cs" />
<Compile Include="MIDI\Interop\Structures.cs" />
<Compile Include="MIDI\NET\Devices\Collections.cs" />
<Compile Include="MIDI\NET\Devices\Output.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="KeppyDriverBlacklistSystem.resx">
Expand All @@ -108,6 +119,9 @@
<EmbeddedResource Include="KeppyDriverInformation.resx">
<DependentUpon>KeppyDriverInformation.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="KeppyDriverMIDIOutSelectorWin.resx">
<DependentUpon>KeppyDriverMIDIOutSelectorWin.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
Expand Down
Loading

0 comments on commit 1485b32

Please sign in to comment.