Skip to content

Commit

Permalink
update for version 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
radistmorse committed Mar 7, 2018
1 parent 801b31b commit 0c8b046
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.4.0, 2018-03-07
- Recompile for KSP 1.4

2.3.2, 2018-01-01
- Small fixes
- Use a library function for time display
Expand Down
10 changes: 5 additions & 5 deletions PreciseManeuver.version
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@
},
"VERSION": {
"MAJOR": 2,
"MINOR": 3,
"PATCH": 2,
"MINOR": 4,
"PATCH": 0,
"BUILD": 0
},
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 3,
"MINOR": 4,
"PATCH": 0
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 3,
"MINOR": 4,
"PATCH": 0
},
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 3,
"MINOR": 4,
"PATCH": 99
}
}
4 changes: 2 additions & 2 deletions properties/AssemblyInfo.Unity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
[assembly: AssemblyCopyright("Copyleft (ɔ) 2017. Modify and distribute it at will! Hail open source!")]
[assembly: ComVisible(false)]
[assembly: Guid("3ebb00a5-1bbe-46c1-ae28-01b5f6c603f6")]
[assembly: AssemblyVersion("2.3.2.0")]
[assembly: AssemblyFileVersion("2.3.2.0")]
[assembly: AssemblyVersion("2.4.0.0")]
[assembly: AssemblyFileVersion("2.4.0.0")]
6 changes: 3 additions & 3 deletions properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.2")]
[assembly: AssemblyFileVersion("2.3.2")]
[assembly: AssemblyVersion("2.4.0")]
[assembly: AssemblyFileVersion("2.4.0")]
[assembly: AssemblyInformationalVersion("")]

[assembly: KSPAssembly("PreciseManeuver", 2, 3)]
[assembly: KSPAssembly("PreciseManeuver", 2, 4)]
3 changes: 3 additions & 0 deletions src/PreciseManeuverToolbar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ protected virtual void OnDestroy () {
GameEvents.onShowUI.Remove (OnShowUI);
GameEvents.OnMapEntered.Remove (ShowMenuIfEnabled);
GameEvents.OnMapExited.Remove (HideMenu);

ApplicationLauncher.Instance.RemoveModApplication (appButton);
appButton = null;
}

private void OnGUIApplicationLauncherReady () {
Expand Down

0 comments on commit 0c8b046

Please sign in to comment.