diff --git a/CC.UI/CC.UI.csproj b/CC.UI/CC.UI.csproj index 7371ea2..2178b53 100644 --- a/CC.UI/CC.UI.csproj +++ b/CC.UI/CC.UI.csproj @@ -13,7 +13,8 @@ 512 7.3 - + true full diff --git a/ChangeLog.md b/ChangeLog.md index eb5eca3..b4a90f4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,11 @@ # Configurable Containers Change Log +## v2.6.2.2 / TBD + +* Compiled for KSP 1.12.5 +* Changed max KSP version to 1.12.99 +* Made the shared warning configuration import optional for standalone clones + ## v2.6.2.1 / 2022-04-01 * Compiled for KSP 1.12.3 diff --git a/ConfigurableContainers.csproj b/ConfigurableContainers.csproj index 9642f4a..2cf1fa9 100644 --- a/ConfigurableContainers.csproj +++ b/ConfigurableContainers.csproj @@ -9,7 +9,8 @@ ConfigurableContainers v4.8 - + true full diff --git a/GameData/ConfigurableContainers/ConfigurableContainers.version b/GameData/ConfigurableContainers/ConfigurableContainers.version index 70a7e2a..00b9701 100644 --- a/GameData/ConfigurableContainers/ConfigurableContainers.version +++ b/GameData/ConfigurableContainers/ConfigurableContainers.version @@ -8,7 +8,7 @@ "MAJOR":2, "MINOR":6, "PATCH":2, - "BUILD":1 + "BUILD":2 }, "KSP_VERSION_MIN": { @@ -20,6 +20,6 @@ { "MAJOR":1, "MINOR":12, - "PATCH":3 + "PATCH":99 } } diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 456618f..7e89597 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -27,7 +27,7 @@ #if NIGHTBUILD [assembly: AssemblyVersion("2.6.*")] #else -[assembly: AssemblyVersion("2.6.2.1")] +[assembly: AssemblyVersion("2.6.2.2")] #endif [assembly: KSPAssembly("ConfigurableContainers", 2, 6)] @@ -44,7 +44,7 @@ public class CCModInfo : KSP_AVC_Info public CCModInfo() { MinKSPVersion = new Version(1, 12, 3); - MaxKSPVersion = new Version(1, 12, 3); + MaxKSPVersion = new Version(1, 12, 99); VersionURL = "https://github.com/allista/ConfigurableContainers/tree/master/GameData/ConfigurableContainers/ConfigurableContainers.version";