From b3c81c3bd904b66f43aa8710baa6a6281d567971 Mon Sep 17 00:00:00 2001 From: Lisias Date: Fri, 5 Mar 2021 13:51:51 -0300 Subject: [PATCH] Release 0.0.7.3 (LisiasT) for KSP >= 1.8 --- CHANGES.md | 4 ++++ CHANGE_LOG.md | 4 ++++ KSP_Recall.version | 2 +- Source/KSP-Recall/Properties/Version.tt | 4 ++-- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7dfa87e..ae07324 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # KSP-Recall :: Changes +* 2021-0305: 0.0.7.3 (LisiasT) for KSP >= 1.8.0 + + (Properly) Implements a ~~ugly hack~~, I mean, a workaround for the KSP 1.11.x bug on recovering funds described on Issue [#12](https://github.com/net-lisias-ksp/KSP-Recall/issues/12). + - Thanks a lot to [firethorn6](https://forum.kerbalspaceprogram.com/index.php?/profile/210389-firethorn6/) and [DarthPointer](https://forum.kerbalspaceprogram.com/index.php?/profile/203932-darthpointer/) for reporting the problem and further help on diagnosing it and testing the solution! + + Fixes a deployment mishap for CurseForge * 2021-0303: 0.0.7.2 **BETA** (LisiasT) for KSP >= 1.8.0 + Enhances further more that ~~ugly hack~~, I mean, a workaround for the KSP 1.11.x bug on recovering funds described on Issue [#12](https://github.com/net-lisias-ksp/KSP-Recall/issues/12). - Most, if not all, Add'Ons are expected to be supported directly or indirectly this time. diff --git a/CHANGE_LOG.md b/CHANGE_LOG.md index 6b72830..f790f0d 100644 --- a/CHANGE_LOG.md +++ b/CHANGE_LOG.md @@ -1,5 +1,9 @@ # KSP-Recall :: Change Log +* 2021-0305: 0.0.7.3 (LisiasT) for KSP >= 1.8.0 + + (Properly) Implements a ~~ugly hack~~, I mean, a workaround for the KSP 1.11.x bug on recovering funds described on Issue [#12](https://github.com/net-lisias-ksp/KSP-Recall/issues/12). + - Thanks a lot to [firethorn6](https://forum.kerbalspaceprogram.com/index.php?/profile/210389-firethorn6/) and [DarthPointer](https://forum.kerbalspaceprogram.com/index.php?/profile/203932-darthpointer/) for reporting the problem and further help on diagnosing it and testing the solution! + + Fixes a deployment mishap for CurseForge * 2021-0303: 0.0.7.2 **BETA** (LisiasT) for KSP >= 1.8.0 + Enhances further more that ~~ugly hack~~, I mean, a workaround for the KSP 1.11.x bug on recovering funds described on Issue [#12](https://github.com/net-lisias-ksp/KSP-Recall/issues/12). - Most, if not all, Add'Ons are expected to be supported directly or indirectly this time. diff --git a/KSP_Recall.version b/KSP_Recall.version index 28bf8a7..648db0f 100644 --- a/KSP_Recall.version +++ b/KSP_Recall.version @@ -8,7 +8,7 @@ "MAJOR":0, "MINOR":0, "PATCH":7, - "BUILD":2 + "BUILD":3 }, "KSP_VERSION_MIN":{ "MAJOR":1, diff --git a/Source/KSP-Recall/Properties/Version.tt b/Source/KSP-Recall/Properties/Version.tt index afad800..dc96e76 100644 --- a/Source/KSP-Recall/Properties/Version.tt +++ b/Source/KSP-Recall/Properties/Version.tt @@ -84,9 +84,9 @@ namespace <#= PROJECT_NAME #> public const int build = <#= build #>; public const string Number = "<#= major #>.<#= minor #>.<#= patch #>.<#= build #>"; #if DEBUG - public const string Text = Number + " /L *BETA* DEBUG"; + public const string Text = Number + " /L DEBUG"; #else - public const string Text = Number + " /L *BETA*"; + public const string Text = Number + " /L"; #endif } }