Skip to content

Commit 15c9a14

Browse files
committed
Fix Departure Skip
1 parent 18e2621 commit 15c9a14

6 files changed

Lines changed: 5 additions & 3 deletions

File tree

Any2GSX-Installer-latest.exe

512 Bytes
Binary file not shown.

Any2GSX/GSX/Automation/GsxAutomationController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ protected virtual async Task RunDeparture()
856856

857857
//Skip Departure on BoardingCompleted
858858
bool skip = false;
859-
if (!DepartureQueue.ServicesCompleted && IsBoardingCompleted && ServiceRefuel.State != GsxServiceState.Completed && ServiceBoard.State != GsxServiceState.Completed && State == AutomationState.Departure)
859+
if (!DepartureQueue.ServicesCompleted && IsBoardingCompleted && !ServiceRefuel.IsRunning && !ServiceBoard.IsRunning && State == AutomationState.Departure)
860860
{
861861
Logger.Information($"Automation: Skip Departure Services - Plane already boarded");
862862
DepartureQueue.FinishServices();

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
### App
2+
- Fix Departure Phase Skip triggered to early (e.g. planned ZFW already reached at Boarding Start)

Installer/Payload/AppPackage.zip

81 Bytes
Binary file not shown.

Installer/Payload/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"Version": "0.4.2",
3-
"Timestamp": "2026.05.02.1841"
3+
"Timestamp": "2026.05.04.2147"
44
}

Installer/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Allgemeine Informationen über eine Assembly werden über die folgenden
66
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
77
// die einer Assembly zugeordnet sind.
8-
[assembly: AssemblyTitle("Any2GSX Installer v0.4.2.0 (2026.05.02.1841)")]
8+
[assembly: AssemblyTitle("Any2GSX Installer v0.4.2.0 (2026.05.04.2147)")]
99
[assembly: AssemblyDescription("Installer Application for Any2GSX")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Fragtality")]

0 commit comments

Comments
 (0)