Skip to content

Commit

Permalink
Merge pull request #106 from Nikolai558/development
Browse files Browse the repository at this point in the history
Releasing 2.3.6
  • Loading branch information
Nikolai558 authored Dec 6, 2022
2 parents bc719bb + 2e48b84 commit 6ce3181
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# CHANGELOG

---
- ## Version 2.3.6
- Fixed #105 T and J Airways not in [HIGH AIRWAY].txt file.
- Note for FE's:
- Default BCG and Filter values for high airways is 5
- Default BCG and Filter values for low airways is 15

- ## Version 2.3.5
- .SCT2 Airways File changes:
- Filtered out all non "V, T, Q, J" airways from the Regulatory Airway Data.
Expand Down
2 changes: 1 addition & 1 deletion FeBuddyLibrary/DataAccess/GetAtsAwyData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ private void WriteAwySctData()
sb.AppendLine();

}
File.WriteAllText(filePath, sb.ToString());
File.AppendAllText(filePath, sb.ToString());
File.AppendAllText(filePath, $"\n\n\n\n\n\n");
Logger.LogMessage("DEBUG", "SAVED AWY SCT FILE");

Expand Down
4 changes: 2 additions & 2 deletions FeBuddyLibrary/Helpers/FileHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ public static void CreateAwyGeomapHeadersAndEnding(bool CreateStart)
Logger.LogMessage("DEBUG", "CREATING AWY HI GEOMAP HEADERS");

GlobalConfig.HighAwyGeoMap.AppendLine(" <GeoMapObject Description=\"HI AIRWAYS\" TdmOnly=\"false\">");
GlobalConfig.HighAwyGeoMap.AppendLine(" <LineDefaults Bcg=\"4\" Filters=\"4\" Style=\"ShortDashed\" Thickness=\"1\" />");
GlobalConfig.HighAwyGeoMap.AppendLine(" <LineDefaults Bcg=\"5\" Filters=\"5\" Style=\"ShortDashed\" Thickness=\"1\" />");
GlobalConfig.HighAwyGeoMap.AppendLine(" <Elements>");

Logger.LogMessage("DEBUG", "CREATING AWY LO GEOMAP HEADERS");

GlobalConfig.LowAwyGeoMap.AppendLine(" <GeoMapObject Description=\"LO AIRWAYS\" TdmOnly=\"false\">");
GlobalConfig.LowAwyGeoMap.AppendLine(" <LineDefaults Bcg=\"4\" Filters=\"4\" Style=\"ShortDashed\" Thickness=\"1\" />");
GlobalConfig.LowAwyGeoMap.AppendLine(" <LineDefaults Bcg=\"15\" Filters=\"15\" Style=\"ShortDashed\" Thickness=\"1\" />");
GlobalConfig.LowAwyGeoMap.AppendLine(" <Elements>");
}
else
Expand Down
2 changes: 1 addition & 1 deletion FeBuddyWinFormUI/FeBuddyWinFormUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<AssemblyName>FE-BUDDY</AssemblyName>
<Version>2.3.5</Version>
<Version>2.3.6</Version>
<Copyright>Copyright © 2022 Nikolas Boling, Kyle Sanders</Copyright>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>FE_BUDDY_icon.ico</ApplicationIcon>
Expand Down

0 comments on commit 6ce3181

Please sign in to comment.