Skip to content

Commit

Permalink
#22 | Updated Keybinds and Assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
FPGSchiba committed Oct 11, 2023
1 parent d52991c commit cd4d40e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DCS-SR-Client/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.2.1")] // DO NOT CHANGE THIS
[assembly: AssemblyFileVersion("1.2.1")] // DO NOT CHANGE THIS
[assembly: AssemblyVersion("0.0.0")] // DO NOT CHANGE THIS
[assembly: AssemblyFileVersion("0.0.0")] // DO NOT CHANGE THIS
6 changes: 3 additions & 3 deletions DCS-SR-Client/Settings/ProfileSettingsStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public string CurrentProfileName

public static readonly Dictionary<string, string> DefaultSettingsProfileSettings = new Dictionary<string, string>()
{
{ProfileSettingsKeys.RadioEffects.ToString(), "true"},
{ProfileSettingsKeys.RadioEffects.ToString(), "false"},
{ProfileSettingsKeys.RadioEffectsClipping.ToString(), "false"},

{ProfileSettingsKeys.RadioEncryptionEffects.ToString(), "true"},
Expand All @@ -112,15 +112,15 @@ public string CurrentProfileName
{ProfileSettingsKeys.RadioTxEffects_End.ToString(), "true"},
{ProfileSettingsKeys.MIDSRadioEffect.ToString(), "true"},

{ProfileSettingsKeys.AutoSelectPresetChannel.ToString(), "true"},
{ProfileSettingsKeys.AutoSelectPresetChannel.ToString(), "false"},

{ProfileSettingsKeys.AlwaysAllowHotasControls.ToString(),"false" },
{ProfileSettingsKeys.AllowDCSPTT.ToString(),"true" },
{ProfileSettingsKeys.RadioSwitchIsPTT.ToString(), "true"},
{ProfileSettingsKeys.RadioSwitchIsPTTOnlyWhenValid.ToString(), "false"},
{ProfileSettingsKeys.AlwaysAllowTransponderOverlay.ToString(), "false"},

{ProfileSettingsKeys.PTTReleaseDelay.ToString(), "0"},
{ProfileSettingsKeys.PTTReleaseDelay.ToString(), "100"},
{ProfileSettingsKeys.PTTStartDelay.ToString(), "0"},

{ProfileSettingsKeys.RadioBackgroundNoiseEffect.ToString(), "false"},
Expand Down
1 change: 0 additions & 1 deletion DCS-SR-Client/UI/ClientWindow/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2181,6 +2181,5 @@ private void VOXMinimumRMS_ValueChanged(object sender, RoutedPropertyChangedEven
if (VOXMinimumRMS.IsEnabled)
_globalSettings.SetClientSetting(GlobalSettingsKeys.VOXMinimumDB, (double)e.NewValue);
}

}
}

0 comments on commit cd4d40e

Please sign in to comment.