Skip to content

Commit

Permalink
Release 0.0.7.0 **BETA** for KSP >= 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisias committed Mar 3, 2021
1 parent aa341d5 commit 6656cf8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# KSP-Recall :: Changes

* 2021-0302: 0.0.7.0 **BETA** (LisiasT) for KSP >= 1.8.0
+ 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).
+ **Attention please**
- **DO NOT** use this on "production". This thing may be unsafe, as I used some dirty tricks that can backfire later.
- Not all add'ons are guaranteed to work yet, I need to study some affected add'ons in order to detect the most simple way to support them.
* 2021-0209: 0.0.6.1 (LisiasT) for KSP >= 1.8.0
+ Updating the KSPe.Light, with a fix on the installment check
+ Some minor fixes on the stats of the Sanity Checks.
Expand Down
5 changes: 5 additions & 0 deletions CHANGE_LOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# KSP-Recall :: Change Log

* 2021-0302: 0.0.7.0 **BETA** (LisiasT) for KSP >= 1.8.0
+ 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).
+ **Attention please**
- **DO NOT** use this on "production". This thing may be unsafe, as I used some dirty tricks that can backfire later.
- Not all add'ons are guaranteed to work yet, I need to study some affected add'ons in order to detect the most simple way to support them.
* 2021-0209: 0.0.6.1 (LisiasT) for KSP >= 1.8.0
+ Updating the KSPe.Light, with a fix on the installment check
+ Some minor fixes on the stats of the Sanity Checks.
Expand Down
6 changes: 3 additions & 3 deletions KSP_Recall.version
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"VERSION":{
"MAJOR":0,
"MINOR":0,
"PATCH":6,
"BUILD":1
"PATCH":7,
"BUILD":0
},
"KSP_VERSION_MIN":{
"MAJOR":1,
Expand All @@ -18,6 +18,6 @@
"KSP_VERSION_MAX":{
"MAJOR":1,
"MINOR":11,
"PATCH":0
"PATCH":1
}
}
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 DEBUG";
public const string Text = Number + " /L *BETA* DEBUG";
#else
public const string Text = Number + " /L";
public const string Text = Number + " /L *BETA*";
#endif
}
}

0 comments on commit 6656cf8

Please sign in to comment.