Skip to content

Commit

Permalink
Merge pull request #16 from flipswitchingmonkey/v0.3
Browse files Browse the repository at this point in the history
various fixes
  • Loading branch information
flipswitchingmonkey authored May 19, 2021
2 parents 28ee963 + a38acdb commit 1354d8e
Show file tree
Hide file tree
Showing 5 changed files with 267 additions and 40 deletions.
1 change: 1 addition & 0 deletions FlexASIOGUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationIcon>installer\flexasiogui.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions FlexGUIConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace FlexASIOGUI
public class FlexGUIConfig
{
public string backend { get; set; } = "Windows WASAPI";
public int bufferSizeSamples { get; set; } = 256;
public int? bufferSizeSamples { get; set; } = null;
public FlexGUIConfigDeviceSection input { get; set; }
public FlexGUIConfigDeviceSection output { get; set; }

Expand All @@ -21,9 +21,9 @@ public FlexGUIConfig()
public class FlexGUIConfigDeviceSection
{
public string device { get; set; }
public double suggestedLatencySeconds { get; set; }
public bool wasapiExclusiveMode { get; set; } = false;
public bool wasapiAutoConvert { get; set; } = true;
public double? suggestedLatencySeconds { get; set; } = null;
public bool? wasapiExclusiveMode { get; set; } = null;
public bool? wasapiAutoConvert { get; set; } = null;
public int? channels { get; set; }
}
}
128 changes: 113 additions & 15 deletions Form1.Designer.cs

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

Loading

0 comments on commit 1354d8e

Please sign in to comment.