Skip to content

Commit

Permalink
Release 1.1.8.0
Browse files Browse the repository at this point in the history
Final Bug fix for this release... Hopefully!
Final fix for Guard Radio on Mirage
  • Loading branch information
ciribob committed Aug 14, 2016
1 parent 71e2616 commit 74820c5
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 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 @@ -52,5 +52,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.1.7.0")]
[assembly: AssemblyFileVersion("1.1.7.0")]
[assembly: AssemblyVersion("1.1.8.0")]
[assembly: AssemblyFileVersion("1.1.8.0")]
2 changes: 1 addition & 1 deletion DCS-SR-Common/UpdaterChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Ciribob.DCS.SimpleRadio.Standalone.Common
//Quick and dirty update checker based on GitHub Published Versions
public class UpdaterChecker
{
private static readonly string VERSION = "1.1.7.0";
private static readonly string VERSION = "1.1.8.0";

public static async void CheckForUpdate()
{
Expand Down
4 changes: 2 additions & 2 deletions DCS-SimpleRadio Server/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.1.7.0")]
[assembly: AssemblyFileVersion("1.1.7.0")]
[assembly: AssemblyVersion("1.1.8.0")]
[assembly: AssemblyFileVersion("1.1.8.0")]
4 changes: 2 additions & 2 deletions Installer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.1.7.0")]
[assembly: AssemblyFileVersion("1.1.7.0")]
[assembly: AssemblyVersion("1.1.8.0")]
[assembly: AssemblyFileVersion("1.1.8.0")]
2 changes: 1 addition & 1 deletion Scripts/DCS-SRSGameGUI.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Version 1.1.7.0
-- Version 1.1.8.0
-- Make sure you COPY this file to the same location as the Export.lua as well!
-- Otherwise the Radio Might not work
SRS = {}
Expand Down
6 changes: 3 additions & 3 deletions Scripts/DCS-SimpleRadioStandalone.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Version 1.1.7.0
-- Version 1.1.8.0
-- Special thanks to Cap. Zeen, Tarres and Splash for all the help
-- with getting the radio information :)
-- Add (without the --) To the END OF your Export.lua to enable Simple Radio Standalone :
Expand Down Expand Up @@ -950,8 +950,8 @@ function SR.exportRadioM2000C(_data)

--guard mode for V/UHF Radio
local uhfModeKnob = SR.getSelectorPosition(446,0.25) -- TODO!
if uhfModeKnob == 2 and _data.radios[3].frequency > 1000 then
_data.radios[3].secondaryFrequency = 243.0*1000000
if uhfModeKnob == 2 and _data.radios[2].frequency > 1000 then
_data.radios[2].secondaryFrequency = 243.0*1000000
end

if SR.getButtonPosition(432) > 0.5 then --431
Expand Down
2 changes: 1 addition & 1 deletion install-build/DCS-SRSGameGUI.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Version 1.1.7.0
-- Version 1.1.8.0
-- Make sure you COPY this file to the same location as the Export.lua as well!
-- Otherwise the Radio Might not work
SRS = {}
Expand Down
Binary file modified install-build/DCS-SimpleRadioStandalone.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.

0 comments on commit 74820c5

Please sign in to comment.