diff --git a/Readme.md b/Readme.md index 72590f6..8bfa5a0 100644 --- a/Readme.md +++ b/Readme.md @@ -36,6 +36,9 @@ To remove YOGEME, simply delete the directory where you placed it. This will leave behind a single config file in AppData with your user settings. ## Latest Release +#### 1.16.0.4, 3 Nov 2024 +- (XWA) Fixed an exception when enabling a FG Goal. [Issue #111] +- #### 1.16.0.3, 27 Oct 2024 - (All) Fixed an exception when attemping to add a craft to the mission from the Library. [Issue [#110](https://github.com/MikeG621/YOGEME/issues/110)] diff --git a/XwaForm.cs b/XwaForm.cs index a8cb1e7..7c706ce 100644 --- a/XwaForm.cs +++ b/XwaForm.cs @@ -3,9 +3,11 @@ * Copyright (C) 2007-2024 Michael Gaisser (mjgaisser@gmail.com) * Licensed under the MPL v2.0 or later * - * VERSION: 1.16.0.3 + * VERSION: 1.16.0.4 * * CHANGELOG + * v1.16.0.4, 241103 + * [FIX #111] Exception when enabling a FG Goal * v1.16.0.3, 241027 * [FIX #110] FG library callback cast exception * v1.16, 241013 @@ -1356,7 +1358,7 @@ void startup() registerFgMultiEdit(numGoalActSeq, "GoalTriggerSequence", MultiEditRefreshType.FgGoalLabel); registerFgMultiEdit(numGoalPoints, "GoalTriggerPoints", MultiEditRefreshType.FgGoalLabel); registerFgMultiEdit(numGoalTimeLimit, "GoalTriggerParam", MultiEditRefreshType.FgGoalLabel); // shares same value as Param - registerFgMultiEdit(chkGoalEnable, "GoalTriggerEnabled", MultiEditRefreshType.FgGoalLabel); + //registerFgMultiEdit(chkGoalEnable, "GoalTriggerEnabled", MultiEditRefreshType.FgGoalLabel); registerFgMultiEdit(numSP1, "WPRegion1", MultiEditRefreshType.Map); registerFgMultiEdit(numSP2, "WPRegion2", MultiEditRefreshType.Map);