Skip to content

Commit 790ff45

Browse files
committed
Merge 1.7.2.0 to master
2 parents 6c552f2 + 8dc8c4c commit 790ff45

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

PluginFiles/ReadMe-TransferWindowPlanner.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ LICENSE
2727
This work is licensed under an MIT license as outlined at the OSI site. Visit the documentation site for more details and Attribution
2828

2929
VERSION HISTORY
30+
Version 1.7.2.0 - KSP Version: 1.7.3
31+
- Fix issue with camera being destroyed when leaving TS/map mode
32+
3033
Version 1.7.1.0 - KSP Version: 1.7.3
3134
- Recompile for 1.7.x
3235
- Fixed display issues when transfer was impossible - result was NaN (Issue #53)

TransferWindowPlanner/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.7.1.0")]
36-
[assembly: AssemblyFileVersion("1.7.1.0")]
35+
[assembly: AssemblyVersion("1.7.2.0")]
36+
[assembly: AssemblyFileVersion("1.7.2.0")]

TransferWindowPlanner/TWP.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,11 @@ internal override void OnDestroy()
123123

124124
if (PhaseAngle != null)
125125
{
126-
Destroy(PhaseAngle.gameObject);
126+
Destroy(PhaseAngle);
127127
}
128128
if (EjectAngle != null)
129129
{
130-
Destroy(EjectAngle.gameObject);
130+
Destroy(EjectAngle);
131131
}
132132

133133
GameEvents.onGUIApplicationLauncherReady.Remove(OnGUIAppLauncherReady);

TransferWindowPlanner/TransferWindowPlanner.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"VERSION": {
66
"MAJOR": 1,
77
"MINOR": 7,
8-
"PATCH": 1,
8+
"PATCH": 2,
99
"BUILD": 0
1010
},
1111
"KSP_VERSION": {

0 commit comments

Comments
 (0)