Skip to content

Commit

Permalink
Release 0.0.7.3 (LisiasT) for KSP >= 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisias committed Mar 5, 2021
1 parent 756047c commit b3c81c3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 4 additions & 0 deletions CHANGE_LOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion KSP_Recall.version
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"MAJOR":0,
"MINOR":0,
"PATCH":7,
"BUILD":2
"BUILD":3
},
"KSP_VERSION_MIN":{
"MAJOR":1,
Expand Down
4 changes: 2 additions & 2 deletions Source/KSP-Recall/Properties/Version.tt
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

0 comments on commit b3c81c3

Please sign in to comment.