Skip to content

Commit 5050fe8

Browse files
committed
Release 0.0.2.2 RC (Lisias) for KSP >= 1.4
1 parent 59f31ba commit 5050fe8

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# TweakScale Companion :: Firespitter :: Changes
22

3+
* 2020-1228: 0.0.2.2 RC (LisiasT) for KSP >= 1.4
4+
+ Copes with KSPe new installment checks.
5+
+ Promoted to Release Candidate! #HURRAY
36
* 2020-0917: 0.0.2.1 Beta (LisiasT) for KSP >= 1.4
47
+ Copes with TweakScale's new feature implemented on its Issue [#142 Add ignoreResourcesForCost to the TweakScale module attributes](https://github.com/net-lisias-ksp/TweakScale/issues/142)
58
* 2020-0829: 0.0.2.0 Beta (LisiasT) for KSP >= 1.4

CHANGE_LOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# TweakScale Companion :: Firespitter :: Change Log
22

3+
* 2020-1228: 0.0.2.2 RC (LisiasT) for KSP >= 1.4
4+
+ Copes with KSPe new installment checks.
5+
+ Promoted to Release Candidate! #HURRAY
36
* 2020-0917: 0.0.2.1 Beta (LisiasT) for KSP >= 1.4
47
+ Copes with TweakScale's new feature implemented on its Issue [#142 Add ignoreResourcesForCost to the TweakScale module attributes](https://github.com/net-lisias-ksp/TweakScale/issues/142)
58
* 2020-0829: 0.0.2.0 Beta (LisiasT) for KSP >= 1.4

CONFIG.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ DLLS="TweakScaleCompanion_FS TweakScalerFSBuoyancy"
99
PROJECT_BRANCH=`git branch | grep \* | cut -d ' ' -f2`
1010
if [ "$PROJECT_BRANCH" == "master" ] ; then
1111
# Release mode
12-
PROJECT_STATE="-BETA"
12+
PROJECT_STATE="-RC"
1313
else
1414
# Note: Add a leading dash when this value is present!
15-
PROJECT_STATE="-BETA"
15+
PROJECT_STATE="-RC"
1616
fi
1717

1818
VERSION=$( cat $PACKAGE.version | tr '\n' ' ' | sed -n -E 's/^.*?"VERSION\":\{.*"MAJOR":([0-9]+?),.*?"MINOR":([0-9]+?),.*?"PATCH":([0-9]+?),.*?"BUILD":([0-9]+?).*?\}.*$/\1.\2.\3.\4/p' )

Source/TweakScaleCompanion_FS/Properties/Version.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ namespace <#= PROJECT_NAME #>
8484
public const int build = <#= build #>;
8585
public const string Number = "<#= major #>.<#= minor #>.<#= patch #>.<#= build #>";
8686
#if DEBUG
87-
public const string Text = Number + " /L Beta DEBUG";
87+
public const string Text = Number + " /L RC DEBUG";
8888
#else
89-
public const string Text = Number + " /L Beta";
89+
public const string Text = Number + " /L RC";
9090
#endif
9191
public const string Vendor = "TweakScaleCompanion";
9292
}

TweakScaleCompanion.FS.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"MAJOR":0,
99
"MINOR":0,
1010
"PATCH":2,
11-
"BUILD":1
11+
"BUILD":2
1212
},
1313
"KSP_VERSION_MIN":{
1414
"MAJOR":1,

0 commit comments

Comments
 (0)