diff --git a/CHANGELOG.md b/CHANGELOG.md index 95a619a..bc4b16a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,23 @@ Changelog for Nehemiah Engineering Orbital Science Major features are **bolded**, contributors are *emphasized*. +0.9.1 (for KSP 1.9) +----------------------------------------------------------- +### General +* Significantly nerfed science payout for all experiments. +* Bugs fixed: + + Fix experiments automatically starting if there are insufficient + crew in the Lab. (No longer creates a KAC alarm unless the experiment is + actually running). + + Fix experiments not pausing when crew leaves the Lab. + + Fix "Finalize" not showing the experiment abbreviation. + +### Kemini +* Bugs fixed: + + Fix being unable to Move and Finalize an experiment if the Lab does not + also have storage as is the case with the HGR SoyJuice pods. + + Fix multiple experiments accruing Lab Time from all Labs. + 0.9.0 (for KSP 1.9) ----------------------------------------------------------- ### General diff --git a/GameData/NehemiahInc/NE-KEES.version b/GameData/NehemiahInc/NE-KEES.version index 940ecf0..172b2ff 100644 --- a/GameData/NehemiahInc/NE-KEES.version +++ b/GameData/NehemiahInc/NE-KEES.version @@ -10,26 +10,26 @@ "VERSION": { "MAJOR":0, - "MINOR":8, - "PATCH":2, + "MINOR":9, + "PATCH":1, "BUILD":29 }, "KSP_VERSION": { "MAJOR":1, - "MINOR":7, - "PATCH":0 + "MINOR":9, + "PATCH":1 }, "KSP_VERSION_MIN": { "MAJOR":1, - "MINOR":4, - "PATCH":5 + "MINOR":8, + "PATCH":0 }, "KSP_VERSION_MAX": { "MAJOR":1, - "MINOR":7, + "MINOR":9, "PATCH":99 } } diff --git a/GameData/NehemiahInc/NE-KRP.version b/GameData/NehemiahInc/NE-KRP.version index a04605a..c1e1c58 100644 --- a/GameData/NehemiahInc/NE-KRP.version +++ b/GameData/NehemiahInc/NE-KRP.version @@ -10,26 +10,26 @@ "VERSION": { "MAJOR":0, - "MINOR":8, + "MINOR":9, "PATCH":1, "BUILD":27 }, "KSP_VERSION": { "MAJOR":1, - "MINOR":7, - "PATCH":0 + "MINOR":9, + "PATCH":1 }, "KSP_VERSION_MIN": { "MAJOR":1, - "MINOR":4, - "PATCH":5 + "MINOR":8, + "PATCH":0 }, "KSP_VERSION_MAX": { "MAJOR":1, - "MINOR":7, + "MINOR":9, "PATCH":99 } } diff --git a/GameData/NehemiahInc/NE-OSS.version b/GameData/NehemiahInc/NE-OSS.version index 7475e5e..d71f7c6 100644 --- a/GameData/NehemiahInc/NE-OSS.version +++ b/GameData/NehemiahInc/NE-OSS.version @@ -10,26 +10,26 @@ "VERSION": { "MAJOR":0, - "MINOR":8, + "MINOR":9, "PATCH":1, "BUILD":27 }, "KSP_VERSION": { "MAJOR":1, - "MINOR":7, - "PATCH":0 + "MINOR":9, + "PATCH":1 }, "KSP_VERSION_MIN": { "MAJOR":1, - "MINOR":4, - "PATCH":5 + "MINOR":8, + "PATCH":0 }, "KSP_VERSION_MAX": { "MAJOR":1, - "MINOR":7, + "MINOR":9, "PATCH":99 } } diff --git a/GameData/NehemiahInc/NEOS.version b/GameData/NehemiahInc/NEOS.version index a629ae1..fac1611 100644 --- a/GameData/NehemiahInc/NEOS.version +++ b/GameData/NehemiahInc/NEOS.version @@ -12,8 +12,8 @@ { "MAJOR":0, "MINOR":9, - "PATCH":0, - "BUILD":31 + "PATCH":1, + "BUILD":32 }, "KSP_VERSION": { diff --git a/GameData/NehemiahInc/NE_Science_Common/Plugins/NE_Science.dll b/GameData/NehemiahInc/NE_Science_Common/Plugins/NE_Science.dll index 0532615..116d7fb 100755 Binary files a/GameData/NehemiahInc/NE_Science_Common/Plugins/NE_Science.dll and b/GameData/NehemiahInc/NE_Science_Common/Plugins/NE_Science.dll differ diff --git a/OrbitalScience.build b/OrbitalScience.build index 681bcf4..b3048e0 100644 --- a/OrbitalScience.build +++ b/OrbitalScience.build @@ -21,10 +21,10 @@ - KEES - Kerbal Environmental Effects Study - NEOS - Nehemiah Enginneering Orbital Science (Was: All-in-One) --> - - - - + + + + diff --git a/Plugin/NE_Science/Properties/AssemblyInfo.cs b/Plugin/NE_Science/Properties/AssemblyInfo.cs index 58e5478..3f2e52a 100644 --- a/Plugin/NE_Science/Properties/AssemblyInfo.cs +++ b/Plugin/NE_Science/Properties/AssemblyInfo.cs @@ -29,11 +29,11 @@ // Build Number // Revision // -[assembly: AssemblyVersion("0.9.0.40")] +[assembly: AssemblyVersion("0.9.1.41")] #if DEBUG -[assembly: AssemblyInformationalVersion("0.9.0 Debug for KSP 1.8+")] +[assembly: AssemblyInformationalVersion("0.9.1 Debug for KSP 1.8+")] #else -[assembly: AssemblyInformationalVersion("0.9.0 for KSP 1.8+")] +[assembly: AssemblyInformationalVersion("0.9.1 for KSP 1.8+")] #endif -[assembly: AssemblyFileVersion("0.9.0.40")] -[assembly: KSPAssembly("NE_Science", 0, 90)] +[assembly: AssemblyFileVersion("0.9.1.41")] +[assembly: KSPAssembly("NE_Science", 0, 91)]