Skip to content

Commit

Permalink
Test Release 1.4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciaran Fisher committed Apr 3, 2018
1 parent 8487640 commit b74e73a
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DCS-SR-Client/Settings/SettingsStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ public static SettingsStore Instance

{SettingsKeys.LastServer.ToString(), "127.0.0.1"},

{SettingsKeys.MicBoost.ToString(), "0.5"},
{SettingsKeys.SpeakerBoost.ToString(), "0.5"},
{SettingsKeys.MicBoost.ToString(), "0.514"},
{SettingsKeys.SpeakerBoost.ToString(), "0.514"},

{SettingsKeys.RadioX.ToString(), "300"},
{SettingsKeys.RadioY.ToString(), "300"},
Expand Down
2 changes: 1 addition & 1 deletion DCS-SR-Common/Helpers/VolumeConversionHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static string ConvertLinearDiffToDB(float delta)

public static float ConvertVolumeSliderToScale(float volume)
{
var db = (-30) + (25 - (-30)) * volume;
var db = (-30) + (28 - (-30)) * volume;
return (float) Math.Exp(db / 20 * Math.Log(10));
}
}
Expand Down
2 changes: 1 addition & 1 deletion DCS-SR-Common/Network/UpdaterChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Ciribob.DCS.SimpleRadio.Standalone.Common
//Quick and dirty update checker based on GitHub Published Versions
public class UpdaterChecker
{
public static readonly string MINIMUM_PROTOCOL_VERSION = "1.4.3.0";
public static readonly string MINIMUM_PROTOCOL_VERSION = "1.4.9.0";

public static readonly string VERSION = "1.4.9.0";

Expand Down
Binary file modified install-build/DCS-SimpleRadioStandalone-1.4.9.0.zip
Binary file not shown.
Binary file modified install-build/Installer.exe
Binary file not shown.
Binary file modified install-build/SR-ClientRadio.exe
Binary file not shown.
Binary file modified install-build/SR-Server.exe
Binary file not shown.
Binary file modified install-build/opus.dll
Binary file not shown.
Binary file modified install-build/speexdsp.dll
Binary file not shown.

0 comments on commit b74e73a

Please sign in to comment.