From 10f13b9ed39978e5431c2aec835b1ed29fe4a178 Mon Sep 17 00:00:00 2001 From: Kyle Sanders <63331106+KSanders7070@users.noreply.github.com> Date: Sun, 1 Oct 2023 14:11:51 -0400 Subject: [PATCH 1/3] Update README.md Added Clipping Tutorial --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 23a72df..f34ac8d 100644 --- a/README.md +++ b/README.md @@ -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) From 7ff8ccf206b9b73522d95c9092ffaf1ea0b3a1d9 Mon Sep 17 00:00:00 2001 From: Nikolas Boling <38259407+Nikolai558@users.noreply.github.com> Date: Sat, 28 Oct 2023 15:39:43 -0700 Subject: [PATCH 2/3] Hotfix for Airac Cycle Date Bug #161 --- FeBuddyLibrary/Helpers/WebHelpers.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FeBuddyLibrary/Helpers/WebHelpers.cs b/FeBuddyLibrary/Helpers/WebHelpers.cs index 00db83a..8390cab 100644 --- a/FeBuddyLibrary/Helpers/WebHelpers.cs +++ b/FeBuddyLibrary/Helpers/WebHelpers.cs @@ -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}"); } From 96453ebd45bc3077eac8342b73571ddf4759cd45 Mon Sep 17 00:00:00 2001 From: Nikolas Boling <38259407+Nikolai558@users.noreply.github.com> Date: Sat, 28 Oct 2023 15:45:08 -0700 Subject: [PATCH 3/3] Updated version and changelog --- ChangeLog.md | 4 ++++ FeBuddyWinFormUI/FeBuddyWinFormUI.csproj | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index f257a94..d8e2944 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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. diff --git a/FeBuddyWinFormUI/FeBuddyWinFormUI.csproj b/FeBuddyWinFormUI/FeBuddyWinFormUI.csproj index 8afff0b..7ecf3df 100644 --- a/FeBuddyWinFormUI/FeBuddyWinFormUI.csproj +++ b/FeBuddyWinFormUI/FeBuddyWinFormUI.csproj @@ -4,7 +4,7 @@ net6.0-windows WinExe FE-BUDDY - 2.6.8 + 2.6.9 Copyright © 2023 Nikolas Boling, Kyle Sanders true FE_BUDDY_icon.ico