diff --git a/GameData/CommunityCategoryKit/CCK.dll b/GameData/CommunityCategoryKit/CCK.dll index 1f56e9c..eb7bdd0 100644 Binary files a/GameData/CommunityCategoryKit/CCK.dll and b/GameData/CommunityCategoryKit/CCK.dll differ diff --git a/GameData/CommunityCategoryKit/CCK.version b/GameData/CommunityCategoryKit/CCK.version index 6109ab6..61b1c60 100644 --- a/GameData/CommunityCategoryKit/CCK.version +++ b/GameData/CommunityCategoryKit/CCK.version @@ -5,27 +5,27 @@ "REPOSITORY": "CommunityCategoryKit", "USERNAME": "BobPalmer" }, - "KSP_VERSION":{ - "MAJOR":1, - "MINOR":8, - "PATCH":0 - }, - "KSP_VERSION_MIN":{ - "MAJOR":1, - "MINOR":8, - "PATCH":0 - }, - "KSP_VERSION_MAX":{ - "MAJOR":1, - "MINOR":8, - "PATCH":9 - }, + "KSP_VERSION": { + "MAJOR": 1, + "MINOR": 9, + "PATCH": 1 + }, + "KSP_VERSION_MAX": { + "MAJOR": 1, + "MINOR": 99, + "PATCH": 99 + }, + "KSP_VERSION_MIN": { + "MAJOR": 1, + "MINOR": 8, + "PATCH": 0 + }, "NAME": "Community Category Kit", "URL": "https://raw.githubusercontent.com/BobPalmer/CommunityCategoryKit/master/FOR_RELEASE/GameData/CommunityCategoryKit/CCK.version", "VERSION": { + "BUILD": 0, "MAJOR": 5, - "MINOR": 0, - "PATCH": 0, - "BUILD": 0 - } + "MINOR": 1, + "PATCH": 0 + } } \ No newline at end of file diff --git a/GameData/CommunityResourcePack/CHANGELOG.txt b/GameData/CommunityResourcePack/CHANGELOG.txt index c642755..576cad8 100644 --- a/GameData/CommunityResourcePack/CHANGELOG.txt +++ b/GameData/CommunityResourcePack/CHANGELOG.txt @@ -1,3 +1,7 @@ +1.4.0 - 2020.09.26 +------------------ +KSP 1.10 Compatibility + 1.3.0 - 2019.10.28 ------------------ KSP 1.8.x Compatibility diff --git a/GameData/CommunityResourcePack/CRP.version b/GameData/CommunityResourcePack/CRP.version index 254ae88..1a0f306 100644 --- a/GameData/CommunityResourcePack/CRP.version +++ b/GameData/CommunityResourcePack/CRP.version @@ -9,8 +9,8 @@ }, "VERSION":{ "MAJOR":1, - "MINOR":3, - "PATCH":0, + "MINOR":4, + "PATCH":1, "BUILD":0 }, "KSP_VERSION":{ @@ -25,7 +25,7 @@ }, "KSP_VERSION_MAX":{ "MAJOR":1, - "MINOR":8, - "PATCH":9 - } + "MINOR":99, + "PATCH":99 + } } diff --git a/GameData/REPOSoftTech/BackgroundResources/BackgroundResources.dll b/GameData/REPOSoftTech/BackgroundResources/BackgroundResources.dll index 4b8ffc8..c6520fc 100644 Binary files a/GameData/REPOSoftTech/BackgroundResources/BackgroundResources.dll and b/GameData/REPOSoftTech/BackgroundResources/BackgroundResources.dll differ diff --git a/GameData/ThunderAerospace/ChangeLog.txt b/GameData/ThunderAerospace/ChangeLog.txt index d848837..ba4f855 100644 --- a/GameData/ThunderAerospace/ChangeLog.txt +++ b/GameData/ThunderAerospace/ChangeLog.txt @@ -1,3 +1,8 @@ +V0.16.0 + Re-compile for KSP 1.10.x. + Background resources can now track any mod part that uses stock resource converters to generate EC. This can be turned on via the Difficulty Settings (off by default). + Fixed potential null reference errors on solar banels in background resources if the solar panel is missing transform definitions. + Removed "Vessel situation change" log spam. V0.15.0 Fix potential NRE when applying game settings changes. Remove Mini AVC plugin. diff --git a/GameData/ThunderAerospace/TacLifeSupport/TacLifeSupport.version b/GameData/ThunderAerospace/TacLifeSupport/TacLifeSupport.version index 2d69904..02065a7 100644 --- a/GameData/ThunderAerospace/TacLifeSupport/TacLifeSupport.version +++ b/GameData/ThunderAerospace/TacLifeSupport/TacLifeSupport.version @@ -3,20 +3,20 @@ "URL": "http://ksp-avc.cybutek.net/version.php?id=9", "DOWNLOAD": "https://github.com/KSP-RO/TacLifeSupport/releases", "CHANGE_LOG_URL": "https://github.com/KSP-RO/TacLifeSupport/wiki/Changes", - "VERSION": "0.15.0.0", + "VERSION": "0.16.0.0", "KSP_VERSION": { "MAJOR": 1, - "MINOR": 9, + "MINOR": 10, "PATCH": 0 }, "KSP_VERSION_MIN": { "MAJOR": 1, - "MINOR": 9, + "MINOR": 10, "PATCH": 0 }, "KSP_VERSION_MAX": { "MAJOR": 1, - "MINOR": 9, + "MINOR": 10, "PATCH": 99 } } diff --git a/Source/LifeSupportController.cs b/Source/LifeSupportController.cs index fab1c64..1c0e5e4 100644 --- a/Source/LifeSupportController.cs +++ b/Source/LifeSupportController.cs @@ -2005,7 +2005,7 @@ private void onVesselWasModified(Vessel vessel) private void onVesselSituationChange(GameEvents.HostedFromToAction evt) { - this.Log("Vessel situation change"); + //this.Log("Vessel situation change"); } #endregion diff --git a/Source/Properties/AssemblyInfo.cs b/Source/Properties/AssemblyInfo.cs index 9563b24..3d19425 100644 --- a/Source/Properties/AssemblyInfo.cs +++ b/Source/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // 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("0.15.0")] -[assembly: AssemblyFileVersion("0.15.0")] +[assembly: AssemblyVersion("0.16.0")] +[assembly: AssemblyFileVersion("0.16.0")] diff --git a/Source/TacLifeSupport.csproj b/Source/TacLifeSupport.csproj index 0a9fd17..9f46dd7 100644 --- a/Source/TacLifeSupport.csproj +++ b/Source/TacLifeSupport.csproj @@ -134,7 +134,7 @@ 0 - 15 + 16 0 $(AssemblyMajorVersion) $(AssemblyMinorVersion) @@ -153,13 +153,13 @@ https://github.com/KSP-RO/TacLifeSupport/releases https://github.com/KSP-RO/TacLifeSupport/wiki/Changes 1 - 9 + 10 0 1 - 9 + 10 0 1 - 9 + 10 99