Skip to content

Commit

Permalink
Merge pull request #162 from Nikolai558/development
Browse files Browse the repository at this point in the history
Releasing 2.6.9
  • Loading branch information
Nikolai558 authored Oct 28, 2023
2 parents e4fc461 + 96453eb commit e222125
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG

---
- ## Version 2.6.9
- Bug #161 - FAA changed their website to a different link structure for AIRAC
- Fixed the issue to account for their change.

- ## Version 2.6.8
- Bug #159 - vERAM to Geojson conversion input string error.
- Some facilities were getting an error when converting vERAM files to Geojson.
Expand Down
4 changes: 2 additions & 2 deletions FeBuddyLibrary/Helpers/WebHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ public static void GetAiracDateFromFAA()
response.Trim();

// Find the two strings that contain the effective date and set our Global Variables.
GlobalConfig.nextAiracDate = response.Substring(response.IndexOf("NASR_Subscription_") + 18, 10);
GlobalConfig.currentAiracDate = response.Substring(response.LastIndexOf("NASR_Subscription_") + 18, 10);
GlobalConfig.nextAiracDate = response.Substring(response.IndexOf("./../NASR_Subscription") + 23, 10);
GlobalConfig.currentAiracDate = response.Substring(response.LastIndexOf("./../NASR_Subscription") + 23, 10);
Logger.LogMessage("INFO", $"CURRENT AIRAC DATE: {GlobalConfig.currentAiracDate} / NEXT AIRAC DATE: {GlobalConfig.nextAiracDate}");

}
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.6.8</Version>
<Version>2.6.9</Version>
<Copyright>Copyright © 2023 Nikolas Boling, Kyle Sanders</Copyright>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>FE_BUDDY_icon.ico</ApplicationIcon>
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ See for more information on future features. [ROADMAP](https://github.com/Nikola

---

### REDUCING FE-Buddy CRC OUTPUT DATA PRIOR TO vNAS UPLOAD
[Google Slides](https://docs.google.com/presentation/d/e/2PACX-1vQ2y4m6S31lMc6DuJ9HxzW3k76w6fWrVDxomRQSwGiCS176g5kMrdRpTJi_pSwgEndRbvOXG9w5aoyM/embed)

---

### REQUIREMENTS
- Windows OS (8.1 or newer)
- CUrl (recommended)
Expand Down

0 comments on commit e222125

Please sign in to comment.