From 969b2947e257da777be0f2bb5340a40ef7bcdbb7 Mon Sep 17 00:00:00 2001 From: KSP-TaxiService Date: Sat, 19 Dec 2020 23:48:14 +0800 Subject: [PATCH] Bump release version to 1.9.9 --- CHANGES.md | 26 +++++++++++++++++++++++ GameData/RemoteTech/RemoteTech.version | 12 +++++------ appveyor.yml | 4 ++-- src/RemoteTech/Properties/AssemblyInfo.cs | 2 +- 4 files changed, 35 insertions(+), 9 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index bb42c63cb..d7fab5202 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,29 @@ +# Version 1.9.9 +**Released December 19, 2020** + +What's New? +=========== + +* Recompiled for KSP 1.11 +* Fixed UI issue of missing signal delay and flight computer button +* Added preventative measure for scenario of a vessel/part exiting simulation range +* Readded data protection for saved flight computer commands during loading + +Detailed Changelog +================== + +Fixed Issues +------------ + +* Issue #821: Flight UI not visible in KSP 1.11 [requested by: gjulianm] +* Issue #820: Order's queue lost when switching vessels (or going SC) [requested by: Jacchus] +* Issue #817: Severe disruption in simulation when parts disappear because they go out of simulation range [requested by: Ernesto-Alvarez] + +Pull Requests +------------- + +*** + # Version 1.9.8 **Released August 1, 2020** diff --git a/GameData/RemoteTech/RemoteTech.version b/GameData/RemoteTech/RemoteTech.version index 6cec22040..bbfc32237 100644 --- a/GameData/RemoteTech/RemoteTech.version +++ b/GameData/RemoteTech/RemoteTech.version @@ -12,22 +12,22 @@ "VERSION":{ "MAJOR":1, "MINOR":9, - "PATCH":8, + "PATCH":9, "BUILD":0 }, "KSP_VERSION":{ "MAJOR":1, - "MINOR":10, - "PATCH":1 + "MINOR":11, + "PATCH":0 }, "KSP_VERSION_MIN":{ "MAJOR":1, - "MINOR":10, + "MINOR":11, "PATCH":0 }, "KSP_VERSION_MAX":{ "MAJOR":1, - "MINOR":10, - "PATCH":1 + "MINOR":11, + "PATCH":0 } } diff --git a/appveyor.yml b/appveyor.yml index 295ff433a..5ebfa2860 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,7 +13,7 @@ #---------------------------------# # version format (you need to bump it when changing version) - version: 1.9.8 + version: 1.9.9 # branches branches: @@ -218,7 +218,7 @@ #---------------------------------# # version format (you need to bump it when changing version) - version: 1.9.8-{build}-{branch} + version: 1.9.9-{build}-{branch} # branches branches: diff --git a/src/RemoteTech/Properties/AssemblyInfo.cs b/src/RemoteTech/Properties/AssemblyInfo.cs index 427cccc79..fb4d8854a 100644 --- a/src/RemoteTech/Properties/AssemblyInfo.cs +++ b/src/RemoteTech/Properties/AssemblyInfo.cs @@ -37,7 +37,7 @@ // DLLs any time it changes. Breaking on a minor revision is probably acceptable - it's // unlikely that there wouldn't be other breaking changes on a minor version change. [assembly: AssemblyVersion("1.9")] -[assembly: AssemblyFileVersion("1.9.8")] +[assembly: AssemblyFileVersion("1.9.9")] // Use KSPAssembly to allow other DLLs to make this DLL a dependency in a // non-hacky way in KSP. Format is (AssemblyProduct, major, minor), and it