Skip to content

Commit

Permalink
- Fixes AH-64 Control measures for WE and EF were reversed (Fixes #8 )
Browse files Browse the repository at this point in the history
- AH64 Control measures some text and ordering changed
- Bump version
  • Loading branch information
FalcoGer committed Jan 30, 2024
1 parent 9aafbc2 commit 5482e7d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
21 changes: 11 additions & 10 deletions CoordinateConverter/DCS/Aircraft/AH64/AH64.cs
Expand Up @@ -712,7 +712,7 @@ public enum EPointIdent
/// </summary>
public static readonly Dictionary<EPointIdent, string> EWPOptionDescriptions = new Dictionary<EPointIdent, string>()
{
{ EPointIdent.WP_WP, "Waypoint" },
{ EPointIdent.WP_WP, "*Waypoint" },
{ EPointIdent.WP_LZ, "Landing Zone" },
{ EPointIdent.WP_PP, "Passage Point" },
{ EPointIdent.WP_RP, "Release Point" },
Expand All @@ -726,7 +726,7 @@ public enum EPointIdent
public static readonly Dictionary<EPointIdent, string> EHZOptionDescriptions = new Dictionary<EPointIdent, string>()
{
{ EPointIdent.HZ_TO, "Tower > 1000" },
{ EPointIdent.HZ_TU, "Tower < 1000" },
{ EPointIdent.HZ_TU, "*Tower < 1000" },
{ EPointIdent.HZ_WL, "Wires Power" },
{ EPointIdent.HZ_WS, "Wires Tele/Elec" }
};
Expand All @@ -748,18 +748,19 @@ public enum EPointIdent
{ EPointIdent.CM_BP, "Battle Position" },
{ EPointIdent.CM_BR, "Bridge or Gap" },
{ EPointIdent.CM_BD, "Brigade" },
{ EPointIdent.CM_CP, "Check Point" },
{ EPointIdent.CM_CP, "*Check Point" },
{ EPointIdent.CM_CO, "Company" },
{ EPointIdent.CM_CR, "Corps" },
{ EPointIdent.CM_DI, "Division" },
{ EPointIdent.CM_FF, "FARP (Fuel)" },
{ EPointIdent.CM_FM, "FARP (Munitions)" },
{ EPointIdent.CM_FC, "FARP (F & M)" },
{ EPointIdent.CM_FA, "Forward Assembly Area" },
{ EPointIdent.CM_GL, "Ground Lights / Small Town" },
{ EPointIdent.CM_HA, "Holding Area" },
{ EPointIdent.CM_ID, "IDM Subscriber" },
{ EPointIdent.CM_NB, "NBC Area" },
{ EPointIdent.CM_BE, "NDB Symbol" },
{ EPointIdent.CM_NB, "NBC Contaminated Area" },
{ EPointIdent.CM_RH, "Rail Head" },
{ EPointIdent.CM_GP, "Regiment/Group" },
{ EPointIdent.CM_US, "US Army" },
Expand All @@ -775,8 +776,8 @@ public enum EPointIdent
{ EPointIdent.CM_DF, "FND Decontamination" },
{ EPointIdent.CM_EN, "FND Engineers" },
{ EPointIdent.CM_FW, "FND EW" },
{ EPointIdent.CM_FL, "FND Field Artillery" },
{ EPointIdent.CM_WF, "FND Fixed Wing" },
{ EPointIdent.CM_FL, "FND Fixed Arty" },
{ EPointIdent.CM_AH, "FND Attack Helicopter" },
{ EPointIdent.CM_FG, "FND General Helicopter" },
{ EPointIdent.CM_HO, "FND Hospital" },
Expand All @@ -786,19 +787,19 @@ public enum EPointIdent
{ EPointIdent.CM_TF, "FND TOC" },
{ EPointIdent.CM_FU, "FND Generic Unit" },
// Hostile (Red)
{ EPointIdent.CM_ED, "EMY ADU" },
{ EPointIdent.CM_ES, "EMY Air Assault" },
{ EPointIdent.CM_EV, "EMY Airborne Cav" },
{ EPointIdent.CM_ED, "EMY ADU" },
{ EPointIdent.CM_EB, "EMY Airborne" },
{ EPointIdent.CM_EC, "EMY CAV Armor" },
{ EPointIdent.CM_AE, "EMY Armor" },
{ EPointIdent.CM_EC, "EMY CAV Armor" },
{ EPointIdent.CM_ME, "EMY AV Maintenance" },
{ EPointIdent.CM_CE, "EMY Chemical" },
{ EPointIdent.CM_DE, "EMY Decontamination" },
{ EPointIdent.CM_EE, "EMY Engineers" },
{ EPointIdent.CM_WR, "EMY EW" },
{ EPointIdent.CM_EF, "EMY Fixed Wing" },
{ EPointIdent.CM_WE, "EMY Fixed Arty" },
{ EPointIdent.CM_EF, "EMY Field Artilery" },
{ EPointIdent.CM_WE, "EMY Fixed Wing" },
{ EPointIdent.CM_EK, "EMY Attack Helicopter" },
{ EPointIdent.CM_HG, "EMY General Helicopter" },
{ EPointIdent.CM_EH, "EMY Hospital" },
Expand Down Expand Up @@ -874,7 +875,7 @@ public enum EPointIdent
{ EPointIdent.TG_ST, "SAM Stinger" },
{ EPointIdent.TG_SA, "SAM Towed" },
{ EPointIdent.TG_VU, "Gun Vulcan" },
{ EPointIdent.TG_TG, "Target Reference Point" }
{ EPointIdent.TG_TG, "*Target Reference Point" }
};
}
}
2 changes: 1 addition & 1 deletion CoordinateConverter/MainForm.cs
Expand Up @@ -20,7 +20,7 @@ namespace CoordinateConverter
/// <seealso cref="Form" />
public partial class MainForm : Form
{
private readonly GitHub.Version VERSION = new GitHub.Version(0, 6, 10);
private readonly GitHub.Version VERSION = new GitHub.Version(0, 6, 11);

#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public static readonly Color ERROR_COLOR = Color.Pink;
Expand Down
4 changes: 2 additions & 2 deletions Installer/Installer.wixproj
@@ -1,9 +1,9 @@
<Project Sdk="WixToolset.Sdk/4.0.2">
<PropertyGroup>
<DefineConstants>Version=0.6.10</DefineConstants>
<DefineConstants>Version=0.6.11</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>Version=0.6.10</DefineConstants>
<DefineConstants>Version=0.6.11</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WixToolset.Netfx.wixext" Version="4.0.2" />
Expand Down

0 comments on commit 5482e7d

Please sign in to comment.