Skip to content

Commit

Permalink
Release 1.0.0.0 (LisiasT) for KSP >= 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisias committed Jan 16, 2021
1 parent eabc5bd commit 7fbef0e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 32 deletions.
26 changes: 2 additions & 24 deletions CHANGES.md
@@ -1,26 +1,4 @@
# TweakScale Companion :: Firespitter :: Changes

* 2020-1228: 0.0.2.2 RC (LisiasT) for KSP >= 1.4
+ Copes with KSPe new installment checks.
+ Promoted to Release Candidate! #HURRAY
* 2020-0917: 0.0.2.1 Beta (LisiasT) for KSP >= 1.4
+ 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)
* 2020-0829: 0.0.2.0 Beta (LisiasT) for KSP >= 1.4
+ Promoting the stunt to Beta! :)
+ Patches overhaul.
- Complete rewrite of the patches.
- Following current TweakScale standards
- Some crafts using the old patches will need to be reworked.
+ Updating the linking to use the latest TweakScale Beta
- Prevents linking against the (current) release of TweakScale, what will render some problems at runtime.
- KSPe.Light also changed a bit, and the version bump ended up causing an unhappy DLL redirection at loading time.
* 2020-0716: 0.0.1.1 (LisiasT) for KSP >= 1.4 Alpha
+ Revised code for the `FSbuyoancy` scaler.
- Now I works correctly, and I know why! :D
+ Better (and safer) deactivation code using info gathered from [TweakScale](https://github.com/net-lisias-ksp/TweakScale/issues/125)
+ Startup check for dependencies
* 2020-0531: 0.0.1.0 (LisiasT) for KSP >= 1.4 Alpha
+ Initial Public Release
+ Closes Issues:
- [#1](https://github.com/net-lisias-ksp/TweakScaleCompantion_FS/issues/1) Weird issue with SXT parts using FSBuoyancy
- [#2](https://github.com/net-lisias-ksp/TweakScaleCompantion_FS/issues/2) Properly Support FSBuoyancy
* 2020-0116: 1.0.0.0 (LisiasT) for KSP >= 1.4
+ TweakScale Companion for Firespitter goes gold! #HURRAY
2 changes: 2 additions & 0 deletions CHANGE_LOG.md
@@ -1,5 +1,7 @@
# TweakScale Companion :: Firespitter :: Change Log

* 2020-0116: 1.0.0.0 (LisiasT) for KSP >= 1.4
+ TweakScale Companion for Firespitter goes gold! #HURRAY
* 2020-1228: 0.0.2.2 RC (LisiasT) for KSP >= 1.4
+ Copes with KSPe new installment checks.
+ Promoted to Release Candidate! #HURRAY
Expand Down
4 changes: 2 additions & 2 deletions CONFIG.inc
Expand Up @@ -9,10 +9,10 @@ DLLS="TweakScaleCompanion_FS TweakScalerFSBuoyancy"
PROJECT_BRANCH=`git branch | grep \* | cut -d ' ' -f2`
if [ "$PROJECT_BRANCH" == "master" ] ; then
# Release mode
PROJECT_STATE="-RC"
PROJECT_STATE=""
else
# Note: Add a leading dash when this value is present!
PROJECT_STATE="-RC"
PROJECT_STATE=""
fi

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' )
4 changes: 2 additions & 2 deletions Source/TweakScaleCompanion_FS/Properties/Version.tt
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 RC DEBUG";
public const string Text = Number + " /L DEBUG";
#else
public const string Text = Number + " /L RC";
public const string Text = Number + " /L";
#endif
public const string Vendor = "TweakScaleCompanion";
}
Expand Down
2 changes: 1 addition & 1 deletion Source/TweakScaleCompanion_FS/Startup.cs
Expand Up @@ -31,7 +31,7 @@ internal class Startup : MonoBehaviour
private void Start()
{
Log.init();
Log.force("Version {0} Alpha", Version.Text);
Log.force("Version {0}", Version.Text);

try
{
Expand Down
6 changes: 3 additions & 3 deletions TweakScaleCompanion.FS.version
Expand Up @@ -5,10 +5,10 @@
"CHANGE_LOG" : "https://raw.githubusercontent.com/net-lisias-ksp/TweakScaleCompanion_FS/master/CHANGE_LOG.md",
"CHANGE_LOG_URL": "https://raw.githubusercontent.com/net-lisias-ksp/TweakScaleCompanion_FS/master/CHANGES.md",
"VERSION":{
"MAJOR":0,
"MAJOR":1,
"MINOR":0,
"PATCH":2,
"BUILD":2
"PATCH":0,
"BUILD":0
},
"KSP_VERSION_MIN":{
"MAJOR":1,
Expand Down

0 comments on commit 7fbef0e

Please sign in to comment.