diff --git a/GameData/ConformalDecals/Plugins/ConformalDecals.dll b/GameData/ConformalDecals/Plugins/ConformalDecals.dll index fe26fc2..e1786fe 100644 Binary files a/GameData/ConformalDecals/Plugins/ConformalDecals.dll and b/GameData/ConformalDecals/Plugins/ConformalDecals.dll differ diff --git a/GameData/ConformalDecals/Versioning/ConformalDecals.version b/GameData/ConformalDecals/Versioning/ConformalDecals.version index 22d2b3b..b68583a 100644 --- a/GameData/ConformalDecals/Versioning/ConformalDecals.version +++ b/GameData/ConformalDecals/Versioning/ConformalDecals.version @@ -12,8 +12,8 @@ "KSP_VERSION": { "MAJOR":1, - "MINOR":10, - "PATCH":1 + "MINOR":11, + "PATCH":0 }, "KSP_VERSION_MIN":{ "MAJOR":1, @@ -22,7 +22,7 @@ }, "KSP_VERSION_MAX":{ "MAJOR":1, - "MINOR":10, + "MINOR":11, "PATCH":99 } } diff --git a/Source/ConformalDecals/Text/TextRenderer.cs b/Source/ConformalDecals/Text/TextRenderer.cs index a807873..457bcfe 100644 --- a/Source/ConformalDecals/Text/TextRenderer.cs +++ b/Source/ConformalDecals/Text/TextRenderer.cs @@ -31,7 +31,6 @@ namespace ConformalDecals.Text { /// Update text immediately without using job queue public static TextRenderOutput UpdateText(DecalText oldText, DecalText newText) { if (newText == null) throw new ArgumentNullException(nameof(newText)); - Logging.Log($"Rendering text {newText}"); if (!(oldText is null)) UnregisterText(oldText); diff --git a/changelog.txt b/changelog.txt index a53a127..a5c5f46 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,10 +1,11 @@ v0.2.7 ------ +- Supported KSP versions: 1.8.x to 1.11.x +- Notes: + - Attaching decal parts in flight using engineer kerbals is not supported. - Fixes: - Fixed certain non-ascii strings not rendering correctly under certain circumstances. - Yet another attempted fix for the planet text glitch. -- Changes: - - Small optimizations and simplified text rendering. v0.2.6 ------