mirror of
https://github.com/drewcassidy/KSP-Conformal-Decals.git
synced 2024-09-01 18:23:54 +00:00
Update version and remove debug statement
This commit is contained in:
parent
5f6712f476
commit
3173dd914a
Binary file not shown.
@ -12,8 +12,8 @@
|
|||||||
"KSP_VERSION":
|
"KSP_VERSION":
|
||||||
{
|
{
|
||||||
"MAJOR":1,
|
"MAJOR":1,
|
||||||
"MINOR":10,
|
"MINOR":11,
|
||||||
"PATCH":1
|
"PATCH":0
|
||||||
},
|
},
|
||||||
"KSP_VERSION_MIN":{
|
"KSP_VERSION_MIN":{
|
||||||
"MAJOR":1,
|
"MAJOR":1,
|
||||||
@ -22,7 +22,7 @@
|
|||||||
},
|
},
|
||||||
"KSP_VERSION_MAX":{
|
"KSP_VERSION_MAX":{
|
||||||
"MAJOR":1,
|
"MAJOR":1,
|
||||||
"MINOR":10,
|
"MINOR":11,
|
||||||
"PATCH":99
|
"PATCH":99
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,6 @@ namespace ConformalDecals.Text {
|
|||||||
/// Update text immediately without using job queue
|
/// Update text immediately without using job queue
|
||||||
public static TextRenderOutput UpdateText(DecalText oldText, DecalText newText) {
|
public static TextRenderOutput UpdateText(DecalText oldText, DecalText newText) {
|
||||||
if (newText == null) throw new ArgumentNullException(nameof(newText));
|
if (newText == null) throw new ArgumentNullException(nameof(newText));
|
||||||
Logging.Log($"Rendering text {newText}");
|
|
||||||
|
|
||||||
if (!(oldText is null)) UnregisterText(oldText);
|
if (!(oldText is null)) UnregisterText(oldText);
|
||||||
|
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
v0.2.7
|
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:
|
- Fixes:
|
||||||
- Fixed certain non-ascii strings not rendering correctly under certain circumstances.
|
- Fixed certain non-ascii strings not rendering correctly under certain circumstances.
|
||||||
- Yet another attempted fix for the planet text glitch.
|
- Yet another attempted fix for the planet text glitch.
|
||||||
- Changes:
|
|
||||||
- Small optimizations and simplified text rendering.
|
|
||||||
|
|
||||||
v0.2.6
|
v0.2.6
|
||||||
------
|
------
|
||||||
|
Loading…
Reference in New Issue
Block a user