diff --git a/Distribution/GameData/CommunityResourcePack/CHANGELOG.txt b/Distribution/GameData/CommunityResourcePack/CHANGELOG.txt index c642755..b226dc2 100644 --- a/Distribution/GameData/CommunityResourcePack/CHANGELOG.txt +++ b/Distribution/GameData/CommunityResourcePack/CHANGELOG.txt @@ -1,3 +1,7 @@ +1.4.2 - 2020.12.20 +------------------ +KSP 1.11 Compatibility + 1.3.0 - 2019.10.28 ------------------ KSP 1.8.x Compatibility diff --git a/Distribution/GameData/CommunityResourcePack/CRP.version b/Distribution/GameData/CommunityResourcePack/CRP.version index 254ae88..904e41a 100644 --- a/Distribution/GameData/CommunityResourcePack/CRP.version +++ b/Distribution/GameData/CommunityResourcePack/CRP.version @@ -9,8 +9,8 @@ }, "VERSION":{ "MAJOR":1, - "MINOR":3, - "PATCH":0, + "MINOR":4, + "PATCH":2, "BUILD":0 }, "KSP_VERSION":{ @@ -25,7 +25,7 @@ }, "KSP_VERSION_MAX":{ "MAJOR":1, - "MINOR":8, - "PATCH":9 - } + "MINOR":99, + "PATCH":99 + } } diff --git a/Distribution/GameData/REPOSoftTech/DeepFreeze/Changelog.txt b/Distribution/GameData/REPOSoftTech/DeepFreeze/Changelog.txt index 6a0d4a0..1f59095 100644 --- a/Distribution/GameData/REPOSoftTech/DeepFreeze/Changelog.txt +++ b/Distribution/GameData/REPOSoftTech/DeepFreeze/Changelog.txt @@ -1,4 +1,7 @@ -V0.29.0.0 +V0.30.0.0 +Re-Compile for KSP 1.11.x +Add EVA construction capabilities to the CRY-300R (Can move it only, can't put in inventories) and the RS-X20R Glykerol Container (can be put in inventories as well). +V0.29.0.0 Re-Compile for KSP 1.10.x V0.28.0.0 Re-Compile for KSP 1.9.x diff --git a/Distribution/GameData/REPOSoftTech/DeepFreeze/DeepFreezeContinued.version b/Distribution/GameData/REPOSoftTech/DeepFreeze/DeepFreezeContinued.version index 8a18ff7..1b7bc48 100644 --- a/Distribution/GameData/REPOSoftTech/DeepFreeze/DeepFreezeContinued.version +++ b/Distribution/GameData/REPOSoftTech/DeepFreeze/DeepFreezeContinued.version @@ -2,8 +2,8 @@ "NAME":"DeepFreeze Continued...", "URL":"http://ksp-avc.cybutek.net/version.php?id=183", "DOWNLOAD":"http://spacedock.info/mod/142/DeepFreeze%20Continued...", -"VERSION":{"MAJOR":0,"MINOR":29,"PATCH":0,"BUILD":0}, -"KSP_VERSION":{"MAJOR":1,"MINOR":10,"PATCH":0}, -"KSP_VERSION_MIN":{"MAJOR":1,"MINOR":10,"PATCH":0}, -"KSP_VERSION_MAX":{"MAJOR":1,"MINOR":10,"PATCH":99} +"VERSION":{"MAJOR":0,"MINOR":30,"PATCH":0,"BUILD":0}, +"KSP_VERSION":{"MAJOR":1,"MINOR":11,"PATCH":0}, +"KSP_VERSION_MIN":{"MAJOR":1,"MINOR":11,"PATCH":0}, +"KSP_VERSION_MAX":{"MAJOR":1,"MINOR":11,"PATCH":99} } \ No newline at end of file diff --git a/Distribution/GameData/REPOSoftTech/DeepFreeze/Parts/CRY0300RFreezer.cfg b/Distribution/GameData/REPOSoftTech/DeepFreeze/Parts/CRY0300RFreezer.cfg index 09df297..6dd7f7d 100644 --- a/Distribution/GameData/REPOSoftTech/DeepFreeze/Parts/CRY0300RFreezer.cfg +++ b/Distribution/GameData/REPOSoftTech/DeepFreeze/Parts/CRY0300RFreezer.cfg @@ -74,4 +74,9 @@ PART PartHasDoor = False cryopodstateclosedstring = True } + MODULE + { + name = ModuleCargoPart + packedVolume = -1 + } } diff --git a/Distribution/GameData/REPOSoftTech/DeepFreeze/Parts/GlykerolRadialTank.cfg b/Distribution/GameData/REPOSoftTech/DeepFreeze/Parts/GlykerolRadialTank.cfg index 82b85ac..b837777 100644 --- a/Distribution/GameData/REPOSoftTech/DeepFreeze/Parts/GlykerolRadialTank.cfg +++ b/Distribution/GameData/REPOSoftTech/DeepFreeze/Parts/GlykerolRadialTank.cfg @@ -35,4 +35,9 @@ PART amount = 25 maxAmount = 25 } + MODULE + { + name = ModuleCargoPart + packedVolume = 100 + } } diff --git a/Source/Properties/AssemblyInfo.cs b/Source/Properties/AssemblyInfo.cs index 9dd3ee2..ada4d25 100644 --- a/Source/Properties/AssemblyInfo.cs +++ b/Source/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // 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.29.0.0")] -[assembly: AssemblyFileVersion("0.29.0.0")] -[assembly: KSPAssembly("DeepFreeze", 0, 29)] \ No newline at end of file +[assembly: AssemblyVersion("0.30.0.0")] +[assembly: AssemblyFileVersion("0.30.0.0")] +[assembly: KSPAssembly("DeepFreeze", 0, 30)] \ No newline at end of file