From 7fbef0e572f7645895f1202483acfc88f2d42b8c Mon Sep 17 00:00:00 2001 From: Lisias Date: Sat, 16 Jan 2021 18:13:05 -0300 Subject: [PATCH] Release 1.0.0.0 (LisiasT) for KSP >= 1.4 --- CHANGES.md | 26 ++----------------- CHANGE_LOG.md | 2 ++ CONFIG.inc | 4 +-- .../Properties/Version.tt | 4 +-- Source/TweakScaleCompanion_FS/Startup.cs | 2 +- TweakScaleCompanion.FS.version | 6 ++--- 6 files changed, 12 insertions(+), 32 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b2f7148..2dcd943 100644 --- a/CHANGES.md +++ b/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 diff --git a/CHANGE_LOG.md b/CHANGE_LOG.md index 15dea4e..9be53ae 100644 --- a/CHANGE_LOG.md +++ b/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 diff --git a/CONFIG.inc b/CONFIG.inc index 1351849..c94a2f6 100644 --- a/CONFIG.inc +++ b/CONFIG.inc @@ -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' ) diff --git a/Source/TweakScaleCompanion_FS/Properties/Version.tt b/Source/TweakScaleCompanion_FS/Properties/Version.tt index 2ea5749..6821978 100644 --- a/Source/TweakScaleCompanion_FS/Properties/Version.tt +++ b/Source/TweakScaleCompanion_FS/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 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"; } diff --git a/Source/TweakScaleCompanion_FS/Startup.cs b/Source/TweakScaleCompanion_FS/Startup.cs index 5b43908..f5e46a6 100644 --- a/Source/TweakScaleCompanion_FS/Startup.cs +++ b/Source/TweakScaleCompanion_FS/Startup.cs @@ -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 { diff --git a/TweakScaleCompanion.FS.version b/TweakScaleCompanion.FS.version index e76cf62..db9d056 100644 --- a/TweakScaleCompanion.FS.version +++ b/TweakScaleCompanion.FS.version @@ -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,