Skip to content

Commit f7bb2d0

Browse files
Updated initialization of the EditShow variable from true to false
Added check for exit window being displayed, if so, doesn't show the agext window
1 parent 2f8302a commit f7bb2d0

9 files changed

Lines changed: 186 additions & 203 deletions

File tree

AGExt.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"MAJOR": 2,
1111
"MINOR": 4,
1212
"PATCH": 1,
13-
"BUILD": 2
13+
"BUILD": 3
1414
},
1515
"KSP_VERSION_MIN": {
1616
"MAJOR": 1,

AGExt/AGExt.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ if $(ConfigurationName) == Release (
124124
<Target Name="AfterBuild">
125125
</Target>
126126
-->
127-
</Project>
127+
</Project>

AGExt/AssemblyVersion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
using System.Reflection;
77

8-
[assembly: AssemblyVersion("2.4.1.2")]
9-
[assembly: AssemblyFileVersion("2.4.1.2")]
8+
[assembly: AssemblyVersion("2.4.1.3")]
9+
[assembly: AssemblyFileVersion("2.4.1.3")]

AGExt/CommonMethods.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public static ConfigNode LoadBaseConfigNode()
230230
}
231231
if (!nodeLoad.HasValue("EditShow"))
232232
{
233-
nodeLoad.AddValue("EditShow", "1");
233+
nodeLoad.AddValue("EditShow", "0");
234234
}
235235
if (!nodeLoad.HasValue("RTWinShow"))
236236
{

AGExt/Editor.cs

Lines changed: 173 additions & 196 deletions
Large diffs are not rendered by default.

AGExt/Flight.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ public class AGXFlight : PartModule
141141
private bool ShowAGXFlightWin = true;
142142
//private string ActivatedGroups = "";
143143
public static bool loadFinished = false;
144-
//private bool AGXShow = true;
145144
private int RightClickDelay = 0;
146145
private bool RightLickPartAdded = false;
147146
// private List<int> ActiveActions = new List<int>();

ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
ChangeLog
22

3+
2.4.1.3
4+
Updated initialization of the EditShow variable from true to false
5+
Added check for exit window being displayed, if so, doesn't show the agext window
6+
37
2.4.1.2
48
Added new dependency on SpacetuxLibrary
59
Removed local SpaceTuxUtility class

GameData/Diazo/AGExt/AGExt.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"MAJOR": 2,
1111
"MINOR": 4,
1212
"PATCH": 1,
13-
"BUILD": 2
13+
"BUILD": 3
1414
},
1515
"KSP_VERSION_MIN": {
1616
"MAJOR": 1,

deploy.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ rem VERSIONFILE is the name of the version file, usually the same as GAMEDATA,
88
rem but not always
99

1010
set H=%KSPDIR%
11+
12+
set H=R:\KSP_1.12.4
13+
1114
set GAMEDIR=AGExt
1215
set GAMEDATA="GameData\Diazo"
1316
set VERSIONFILE=%GAMEDIR%.version

0 commit comments

Comments
 (0)