Skip to content

Commit

Permalink
Update version and remove debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
drewcassidy committed Dec 20, 2020
1 parent 5f6712f commit 3173dd9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Binary file modified GameData/ConformalDecals/Plugins/ConformalDecals.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions GameData/ConformalDecals/Versioning/ConformalDecals.version
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"KSP_VERSION":
{
"MAJOR":1,
"MINOR":10,
"PATCH":1
"MINOR":11,
"PATCH":0
},
"KSP_VERSION_MIN":{
"MAJOR":1,
Expand All @@ -22,7 +22,7 @@
},
"KSP_VERSION_MAX":{
"MAJOR":1,
"MINOR":10,
"MINOR":11,
"PATCH":99
}
}
1 change: 0 additions & 1 deletion Source/ConformalDecals/Text/TextRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public static class TextRenderer {
/// 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);

Expand Down
5 changes: 3 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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
------
Expand Down

0 comments on commit 3173dd9

Please sign in to comment.