Skip to content

Commit

Permalink
Updated initialization of the EditShow variable from true to false
Browse files Browse the repository at this point in the history
 Added check for exit window being displayed, if so, doesn't show the agext window
  • Loading branch information
linuxgurugamer committed Nov 13, 2022
1 parent 2f8302a commit f7bb2d0
Show file tree
Hide file tree
Showing 9 changed files with 186 additions and 203 deletions.
2 changes: 1 addition & 1 deletion AGExt.version
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"MAJOR": 2,
"MINOR": 4,
"PATCH": 1,
"BUILD": 2
"BUILD": 3
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
Expand Down
2 changes: 1 addition & 1 deletion AGExt/AGExt.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@ if $(ConfigurationName) == Release (
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>
4 changes: 2 additions & 2 deletions AGExt/AssemblyVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

using System.Reflection;

[assembly: AssemblyVersion("2.4.1.2")]
[assembly: AssemblyFileVersion("2.4.1.2")]
[assembly: AssemblyVersion("2.4.1.3")]
[assembly: AssemblyFileVersion("2.4.1.3")]
2 changes: 1 addition & 1 deletion AGExt/CommonMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public static ConfigNode LoadBaseConfigNode()
}
if (!nodeLoad.HasValue("EditShow"))
{
nodeLoad.AddValue("EditShow", "1");
nodeLoad.AddValue("EditShow", "0");
}
if (!nodeLoad.HasValue("RTWinShow"))
{
Expand Down
369 changes: 173 additions & 196 deletions AGExt/Editor.cs

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion AGExt/Flight.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ public class AGXFlight : PartModule
private bool ShowAGXFlightWin = true;
//private string ActivatedGroups = "";
public static bool loadFinished = false;
//private bool AGXShow = true;
private int RightClickDelay = 0;
private bool RightLickPartAdded = false;
// private List<int> ActiveActions = new List<int>();
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
ChangeLog

2.4.1.3
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

2.4.1.2
Added new dependency on SpacetuxLibrary
Removed local SpaceTuxUtility class
Expand Down
2 changes: 1 addition & 1 deletion GameData/Diazo/AGExt/AGExt.version
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"MAJOR": 2,
"MINOR": 4,
"PATCH": 1,
"BUILD": 2
"BUILD": 3
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
Expand Down
3 changes: 3 additions & 0 deletions deploy.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ rem VERSIONFILE is the name of the version file, usually the same as GAMEDATA,
rem but not always

set H=%KSPDIR%

set H=R:\KSP_1.12.4

set GAMEDIR=AGExt
set GAMEDATA="GameData\Diazo"
set VERSIONFILE=%GAMEDIR%.version
Expand Down

0 comments on commit f7bb2d0

Please sign in to comment.