Skip to content

Commit

Permalink
Correction
Browse files Browse the repository at this point in the history
RadioPanelPZ69UserControlEmulator used if no radio has been programmed for a DCS-BIOS profile
  • Loading branch information
jdahlblom committed Dec 16, 2018
1 parent 8a6fa08 commit 040026d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Source/ClassLibraryCommon/Properties/AssemblyInfo.cs
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.111.4592")]
[assembly: AssemblyFileVersion("1.0.111.4592")]
[assembly: AssemblyVersion("1.0.112.4635")]
[assembly: AssemblyFileVersion("1.0.112.4635")]
4 changes: 2 additions & 2 deletions Source/DCS-BIOS/Properties/AssemblyInfo.cs
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.498.4592")]
[assembly: AssemblyFileVersion("2.1.498.4592")]
[assembly: AssemblyVersion("2.1.499.4635")]
[assembly: AssemblyFileVersion("2.1.499.4635")]
4 changes: 2 additions & 2 deletions Source/DCSFlightpanels/MainWindow.xaml.cs
Expand Up @@ -466,9 +466,9 @@ private void SearchForPanels()
tabItem.Content = radioPanelPZ69UserControl;
TabControlPanels.Items.Add(tabItem);
}
else if (_panelProfileHandler.Airframe == DCSAirframe.M2000C || _panelProfileHandler.Airframe == DCSAirframe.L39ZA || _panelProfileHandler.Airframe == DCSAirframe.AV8BNA)
else //if (_panelProfileHandler.Airframe == DCSAirframe.M2000C || _panelProfileHandler.Airframe == DCSAirframe.L39ZA || _panelProfileHandler.Airframe == DCSAirframe.AV8BNA)
{
var radioPanelPZ69UserControl = new RadioPanelPZ69UserControlNotImplemented(hidSkeleton, tabItem, this);
var radioPanelPZ69UserControl = new RadioPanelPZ69UserControlEmulator(hidSkeleton, tabItem, this);
_saitekUserControls.Add(radioPanelPZ69UserControl);
_panelProfileHandler.Attach(radioPanelPZ69UserControl);
tabItem.Content = radioPanelPZ69UserControl;
Expand Down
4 changes: 2 additions & 2 deletions Source/DCSFlightpanels/Properties/AssemblyInfo.cs
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.7.15.4592")]
[assembly: AssemblyFileVersion("2.7.15.4592")]
[assembly: AssemblyVersion("2.7.16.4635")]
[assembly: AssemblyFileVersion("2.7.16.4635")]
4 changes: 2 additions & 2 deletions Source/NonVisuals/Properties/AssemblyInfo.cs
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.884.4592")]
[assembly: AssemblyFileVersion("2.1.884.4592")]
[assembly: AssemblyVersion("2.1.885.4635")]
[assembly: AssemblyFileVersion("2.1.885.4635")]

0 comments on commit 040026d

Please sign in to comment.