From 794335c3bf6edc30ea5e6213f0a448108e4fde2f Mon Sep 17 00:00:00 2001 From: gotmachine <24925209+gotmachine@users.noreply.github.com> Date: Sun, 20 Oct 2024 20:08:39 +0200 Subject: [PATCH] 1.36.1 hotfix release for issue #273 --- GameData/KSPCommunityFixes/KSPCommunityFixes.version | 2 +- .../MMPatches/ModSupport/UniversalStorage.cfg | 4 ++++ KSPCommunityFixes/Properties/AssemblyInfo.cs | 4 ++-- README.md | 6 ++++++ 4 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 GameData/KSPCommunityFixes/MMPatches/ModSupport/UniversalStorage.cfg diff --git a/GameData/KSPCommunityFixes/KSPCommunityFixes.version b/GameData/KSPCommunityFixes/KSPCommunityFixes.version index 1c5aa63..efa1a24 100644 --- a/GameData/KSPCommunityFixes/KSPCommunityFixes.version +++ b/GameData/KSPCommunityFixes/KSPCommunityFixes.version @@ -2,7 +2,7 @@ "NAME": "KSPCommunityFixes", "URL": "https://raw.githubusercontent.com/KSPModdingLibs/KSPCommunityFixes/master/GameData/KSPCommunityFixes/KSPCommunityFixes.version", "DOWNLOAD": "https://github.com/KSPModdingLibs/KSPCommunityFixes/releases", - "VERSION": {"MAJOR": 1, "MINOR": 36, "PATCH": 0, "BUILD": 0}, + "VERSION": {"MAJOR": 1, "MINOR": 36, "PATCH": 1, "BUILD": 0}, "KSP_VERSION": {"MAJOR": 1, "MINOR": 12, "PATCH": 5}, "KSP_VERSION_MIN": {"MAJOR": 1, "MINOR": 8, "PATCH": 0}, "KSP_VERSION_MAX": {"MAJOR": 1, "MINOR": 12, "PATCH": 5} diff --git a/GameData/KSPCommunityFixes/MMPatches/ModSupport/UniversalStorage.cfg b/GameData/KSPCommunityFixes/MMPatches/ModSupport/UniversalStorage.cfg new file mode 100644 index 0000000..48f3c2a --- /dev/null +++ b/GameData/KSPCommunityFixes/MMPatches/ModSupport/UniversalStorage.cfg @@ -0,0 +1,4 @@ +@KSP_COMMUNITY_FIXES:NEEDS[UniversalStorage2] +{ + @ForceSyncSceneSwitch = false +} \ No newline at end of file diff --git a/KSPCommunityFixes/Properties/AssemblyInfo.cs b/KSPCommunityFixes/Properties/AssemblyInfo.cs index c69bac5..cde42d9 100644 --- a/KSPCommunityFixes/Properties/AssemblyInfo.cs +++ b/KSPCommunityFixes/Properties/AssemblyInfo.cs @@ -30,8 +30,8 @@ // Revision // [assembly: AssemblyVersion("1.36.1.0")] -[assembly: AssemblyFileVersion("1.36.0.0")] +[assembly: AssemblyFileVersion("1.36.1.0")] -[assembly: KSPAssembly("KSPCommunityFixes", 1, 36, 0)] +[assembly: KSPAssembly("KSPCommunityFixes", 1, 36, 1)] [assembly: KSPAssemblyDependency("MultipleModulePartAPI", 1, 0, 0)] [assembly: KSPAssemblyDependency("ModuleManager", 1, 0)] diff --git a/README.md b/README.md index dc06254..1a44f08 100644 --- a/README.md +++ b/README.md @@ -200,6 +200,12 @@ If doing so in the `Debug` configuration and if your KSP install is modified to ### Changelog +##### 1.36.1 +Hotfix release for [issue #273](https://github.com/KSPModdingLibs/KSPCommunityFixes/issues/273) : [**ForceSyncSceneSwitch**](https://github.com/KSPModdingLibs/KSPCommunityFixes/pull/250) patch incompatibility with [Universal Storage 2](https://github.com/linuxgurugamer/universal-storage-2/). The patch will now be disabled when US2 is installed. + +Note that this patch [might be causing other issues](https://github.com/KSPModdingLibs/KSPCommunityFixes/issues/260), but so far we haven't been able to confirm them. + + ##### 1.36.0 **User facing changes** - New KSP performance patch : [**FasterPartFindTransform**](https://github.com/KSPModdingLibs/KSPCommunityFixes/pull/255) [KSP 1.12.3 - 1.12.5] : Faster, and minimal GC alloc relacements for the Part FindModelTransform* and FindHeirarchyTransform* methods.