Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
uses: microsoft/setup-msbuild@v2

- name: Setup VS Dev Environment
uses: seanmiddleditch/gha-setup-vsdevenv@v4
uses: seanmiddleditch/gha-setup-vsdevenv@v5

- name: Navigate to Workspace
run: cd $GITHUB_WORKSPACE
Expand Down
6 changes: 3 additions & 3 deletions Aircraft AH-64D Plugin/Gauges/IAS/IAS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ namespace GadrocsWorkshop.Helios.Gauges.AH64D
[HeliosControl("Helios.AH64D.IAS", "Standby IAS Gauge", "AH-64D", typeof(GaugeRenderer),HeliosControlFlags.NotShownInUI)]
public class IAS : BaseGauge
{
private HeliosValue _indicatedAirSpeed;
private GaugeNeedle _needle;
private CalibrationPointCollectionDouble _needleCalibration;
private readonly HeliosValue _indicatedAirSpeed;
private readonly GaugeNeedle _needle;
private readonly CalibrationPointCollectionDouble _needleCalibration;

public IAS()
: base("Standby IAS Gauge", new Size(300, 300))
Expand Down
7 changes: 3 additions & 4 deletions Aircraft CH-47F Plugin/Gauges/MFD/MFD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,9 @@ public MFD(string interfaceDevice)
switch (_interfaceDevice)
{
case "MFD (Pilot Left)":
_vpName = "CH47F_MFD_PILOT_LEFT";
_vpName = "LEFT_MFCD";
break;
case "MFD (Pilot Right)":
//_vpName = "CH47F_MFD_PILOT_RIGHT";
_vpName = "RIGHT_MFCD";
break;
case "MFD (Copilot Left)":
Expand All @@ -63,7 +62,7 @@ public MFD(string interfaceDevice)
_vpName = "CH47F_MFD_COPILOT_RIGHT";
break;
case "MFD (Center)":
_vpName = "CH47F_MFD_CENTER";
_vpName = "CENTER_MFCD";
break;
default:
break;
Expand Down Expand Up @@ -144,7 +143,7 @@ public string ViewportName
}
public bool RequiresPatches
{
get => _vpName != "" ? true : false;
get => _vpName.Contains("CH47F_") ? true : false;
set => _ = value;
}
public double GlassReflectionOpacity
Expand Down
6 changes: 3 additions & 3 deletions Aircraft CH-47F Plugin/Gauges/SFD/SFD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ public RWR(string interfaceDevice)
switch (_interfaceDevice)
{
case "SFD (Right)":
_vpName = "CH47F_SFD_PILOT";
_vpName = "RIGHT_SFD";
break;
case "SFD (Left)":
_vpName = "CH47F_SFD_COPILOT";
_vpName = "LEFT_SFD";
break;
default:
break;
Expand Down Expand Up @@ -108,7 +108,7 @@ public string ViewportName
}
public bool RequiresPatches
{
get => _vpName != "" ? true : false;
get => false;
set => _ = value;
}
public double GlassReflectionOpacity
Expand Down
6 changes: 6 additions & 0 deletions Aircraft F-15E Plugin/Aircraft F-15E Plugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -952,5 +952,11 @@
<SubType>Designer</SubType>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Gauges\Instruments\ADI_Pointer.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Resource>
</ItemGroup>
<Import Project="..\HeliosPlugin.targets" />
</Project>
8 changes: 8 additions & 0 deletions Aircraft F-15E Plugin/Gauges/Instruments/ADI_Pointer.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<Canvas Width="40.000" Height="50.000"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Canvas Width="40.000" Height="50.000">
<Path StrokeThickness="1.0" Stroke="#ff7e7e7e" StrokeMiterLimit="1.0" Fill="#fff0f0f0" Data="F1 M 18.668,49.500 L 21.970,49.500 C 23.271,49.500 24.427,48.673 24.841,47.447 L 39.341,4.467 C 39.998,2.517 38.538,0.500 36.469,0.500 L 3.531,0.500 C 1.445,0.500 -0.017,2.547 0.673,4.504 L 15.809,47.484 C 16.234,48.692 17.381,49.500 18.668,49.500 Z"/>
</Canvas>
</Canvas>
2 changes: 1 addition & 1 deletion Aircraft F-15E Plugin/Gauges/Instruments/ADI_V1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public ADIGauge_V1(string name, Size size, string device)
_ball.Clip = new EllipseGeometry(center, 150d, 150d);
Components.Add(_ball);

Components.Add(new GaugeImage("{F-15E}/Gauges/Instruments/ADI_Gradiant.xaml", new Rect(50d, 50d, 300d, 300d)));
Components.Add(new GaugeImage("{helios}/Gauges/Common/Circular-Shading.xaml", new Rect(50d, 50d, 300d, 300d)));

_pitchAdjustCalibaration = new CalibrationPointCollectionDouble(-1.0d, -30d, 1.0d, 30d);
_wingsNeedle = new GaugeNeedle("{F-15E}/Gauges/Instruments/ADI_Wings.xaml", new Point(50d, 194d), new Size(300d, 55d), new Point(0d, 0d));
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/ADI/ADI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.ADI
using System.Windows;
using System.Windows.Media;

[HeliosControl("Helios.KA50.ADI", "ADI", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.ADI", "ADI", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class ADI : BaseGauge
{
GaugeNeedle _pitchBallNeedle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.Accelerometer
using System;
using System.Windows;

[HeliosControl("Helios.KA50.Accelerometer", "Accelerometer", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.Accelerometer", "Accelerometer", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class Accelerometer : BaseGauge
{
private GaugeNeedle _lowNeedle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.BaroAltimeter
using System;
using System.Windows;

[HeliosControl("Helios.KA50.BarometricAltimeter", "Barometric Altimeter", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.BarometricAltimeter", "Barometric Altimeter", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class BarometricAltimeter : BaseGauge
{
private GaugeNeedle _qfeCard;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/BladeAngle/BladeAngle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.BladeAngle
using System;
using System.Windows;

[HeliosControl("Helios.KA50.BladeAngle", "Blade Angle", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.BladeAngle", "Blade Angle", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class BladeAngle : BaseGauge
{
private GaugeNeedle _needle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/Clock/Clock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.Clock
using System;
using System.Windows;

[HeliosControl("Helios.KA50.Clock", "Clock", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.Clock", "Clock", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class Clock : BaseGauge
{
private GaugeImage _flightTimeIndicatorLight;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/EGT/EGT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.EGT
using System;
using System.Windows;

[HeliosControl("Helios.KA50.EGT", "Exhaust Gas Temperature", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.EGT", "Exhaust Gas Temperature", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class EGT : BaseGauge
{
private GaugeNeedle _leftLargeNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/FuelGauge/FuelGauge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.FuelGauge
using System;
using System.Windows;

[HeliosControl("Helios.KA50.Fuel", "Fuel Quantity Indicator", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.Fuel", "Fuel Quantity Indicator", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class FuelGauge : BaseGauge
{
private GaugeNeedle _needleFwd;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/HSI/HSI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.HSI
using System.Windows;
using System.Windows.Media;

[HeliosControl("Helios.KA50.HSI", "HSI", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.HSI", "HSI", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class HSI : BaseGauge
{
private GaugeNeedle _longDeviationNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/IAS/IAS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.IAS
using System;
using System.Windows;

[HeliosControl("Helios.KA50.IAS", "IAS", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.IAS", "IAS", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class IAS : BaseGauge
{
private GaugeNeedle _needle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.RadarAltimeter
using System;
using System.Windows;

[HeliosControl("Helios.KA50.RadarAltimeter", "Radar Altimeter", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.RadarAltimeter", "Radar Altimeter", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class RadarAltimeter : BaseGauge
{
private GaugeNeedle _needle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/RotorRPM/RotorRPM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.RotorRPM
using System;
using System.Windows;

[HeliosControl("Helios.KA50.RotorRPM", "Rotor RPM", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.RotorRPM", "Rotor RPM", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class RotorRPM : BaseGauge
{
private GaugeNeedle _needle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/Tachometer/Tachometer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.Tachometer
using System;
using System.Windows;

[HeliosControl("Helios.KA50.Tachometer", "Tachometer", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.Tachometer", "Tachometer", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class Tachometer : BaseGauge
{
private GaugeNeedle _needle1;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Ka-50 Plugin/Gauges/VVI/VVI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.KA_50.VVI
using System;
using System.Windows;

[HeliosControl("Helios.KA50.VVI", "VVI", "KA-50 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.KA50.VVI", "VVI", "Ka-50 Black Shark", typeof(GaugeRenderer))]
public class VVI : BaseGauge
{
private GaugeNeedle _needle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft Mi-8 Plugin/Gauges/ADI/ADI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace GadrocsWorkshop.Helios.Gauges.Mi_8.ADI
using System.Windows;
using System.Windows.Media;

[HeliosControl("Helios.Mi-8.ADI", "ADI", "Mi-8 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.Mi-8.ADI", "ADI", "Mi-8", typeof(GaugeRenderer))]
public class ADI : BaseGauge
{
GaugeNeedle _pitchBallNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/AOA/AOA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.AOA
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.AOA", "AOA", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.AOA", "AOA", "MiG-21", typeof(GaugeRenderer))]
public class AOA : BaseGauge
{

Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/ARU3VM/ARU3VM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.ARU3VM
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.ARU3VM", "ARU", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.ARU3VM", "ARU", "MiG-21", typeof(GaugeRenderer))]
public class ARU3VM : BaseGauge
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.Accelerometer
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.Accelerometer", "Accelerometer", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.Accelerometer", "Accelerometer", "MiG-21", typeof(GaugeRenderer))]
public class Accelerometer : BaseGauge
{
private GaugeNeedle _lowNeedle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.BaroAltimeter
using System;
using System.Windows;

[HeliosControl("Helios.MiG21.BarometricAltimeter", "Barometric Altimeter", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG21.BarometricAltimeter", "Barometric Altimeter", "MiG-21", typeof(GaugeRenderer))]
public class BarometricAltimeter : BaseGauge
{
private GaugeNeedle _qfeCard;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.BatteryCapacity
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.BatteryCapacity", "Battery Capacity", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.BatteryCapacity", "Battery Capacity", "MiG-21", typeof(GaugeRenderer))]
public class BatteryCapacity : BaseGauge
{

Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/DA200/DA200.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.DA200
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.DA200", "DA200", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.DA200", "DA200", "MiG-21", typeof(GaugeRenderer))]
public class DA200 : BaseGauge
{
private GaugeNeedle _vviNeedle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.EngExhaustTempGauge
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.EngExhaustTempGauge", "Engine Temp Gauge", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.EngExhaustTempGauge", "Engine Temp Gauge", "MiG-21", typeof(GaugeRenderer))]
public class EngExhaustTempGauge : BaseGauge
{
private GaugeNeedle _currentNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/EngineO2/EngineO2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.EngineO2
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.EngineO2", "Enginge O2", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.EngineO2", "Enginge O2", "MiG-21", typeof(GaugeRenderer))]
public class EngineO2 : BaseGauge
{
private GaugeNeedle _needle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/EngineRpm/EngineRpm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.EngingeRpm
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.EngingeRpm", "Enginge RPM", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.EngingeRpm", "Enginge RPM", "MiG-21", typeof(GaugeRenderer))]
public class EngingeRpm : BaseGauge
{
private GaugeNeedle _oneNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/FuelGauge/FuelGauge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.FuelGauge
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.FuelGauge", "Fuel Gauge", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.FuelGauge", "Fuel Gauge", "MiG-21", typeof(GaugeRenderer))]
public class FuelGauge : BaseGauge
{
private GaugeNeedle _currentNeedle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.HydroPressure
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.HydroPressure", "Hydraulic Pressure", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.HydroPressure", "Hydraulic Pressure", "MiG-21", typeof(GaugeRenderer))]
public class HydroPressure : BaseGauge
{
private GaugeNeedle _oneNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/IAS/IAS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.IAS
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.IAS", "IAS", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.IAS", "IAS", "MiG-21", typeof(GaugeRenderer))]
public class IAS : BaseGauge
{

Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/KPP/KPP.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.ADI
using System.Windows;
using System.Windows.Media;

[HeliosControl("Helios.MiG21.KPP", "KPP", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG21.KPP", "KPP", "MiG-21", typeof(GaugeRenderer))]
public class KPP : BaseGauge
{
GaugeNeedle _pitchBallNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/NPP/NPP.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.NPP
using System.Windows;
using System.Windows.Media;

[HeliosControl("Helios.MiG-21.NPP", "NPP", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.NPP", "NPP", "MiG-21", typeof(GaugeRenderer))]
public class NPP : BaseGauge
{
private GaugeNeedle _glideslopeDeviationNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/Nosecone/Nosecone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.Nosecone
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.Nosecone", "Nosecone", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.Nosecone", "Nosecone", "MiG-21", typeof(GaugeRenderer))]
public class Nosecone : BaseGauge
{
private GaugeNeedle _currentNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/O2Level/O2Level.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.O2Level
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.O2Level", "O2 Level", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.O2Level", "O2 Level", "MiG-21", typeof(GaugeRenderer))]
public class O2Level : BaseGauge
{
private GaugeNeedle _currentNeedle;
Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/O2Pressure/O2Pressure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.O2Pressure
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.O2Pressure", "O2 Pressure", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.O2Pressure", "O2 Pressure", "MiG-21", typeof(GaugeRenderer))]
public class O2Pressure : BaseGauge
{

Expand Down
2 changes: 1 addition & 1 deletion Aircraft MiG-21 Plugin/Gauges/OilPressure/OilPressure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace GadrocsWorkshop.Helios.Gauges.MiG21.OilPressure
using System;
using System.Windows;

[HeliosControl("Helios.MiG-21.OilPressure", "Oil Pressure", "MiG-21 Gauges", typeof(GaugeRenderer))]
[HeliosControl("Helios.MiG-21.OilPressure", "Oil Pressure", "MiG-21", typeof(GaugeRenderer))]
public class OilPressure : BaseGauge
{
private GaugeNeedle _currentNeedle;
Expand Down
Loading
Loading