diff --git a/CHANGES.txt b/CHANGES.txt index 20ef8543b..ca5a88505 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +Contract Configurator 1.30.4 +- Fixed major issue when Breaking Ground wasn't installed (thanks boribori). + Contract Configurator 1.30.3 - Deployed Science from Breaking Ground no longer generates tons of message spam. Instead, the messages (including screen messages) are intercepted and combined into a single more useful message. - Re-enable the reload contracts button (may or may not work). diff --git a/GameData/ContractConfigurator/CC_RemoteTech.dll b/GameData/ContractConfigurator/CC_RemoteTech.dll index 600f8caa3..6f8065e7c 100644 Binary files a/GameData/ContractConfigurator/CC_RemoteTech.dll and b/GameData/ContractConfigurator/CC_RemoteTech.dll differ diff --git a/GameData/ContractConfigurator/ContractConfigurator.dll b/GameData/ContractConfigurator/ContractConfigurator.dll index 725717f87..a8ce81ef0 100644 Binary files a/GameData/ContractConfigurator/ContractConfigurator.dll and b/GameData/ContractConfigurator/ContractConfigurator.dll differ diff --git a/GameData/ContractConfigurator/ContractConfigurator.version b/GameData/ContractConfigurator/ContractConfigurator.version index ce5a905e1..8999f78d4 100644 --- a/GameData/ContractConfigurator/ContractConfigurator.version +++ b/GameData/ContractConfigurator/ContractConfigurator.version @@ -2,7 +2,7 @@ "NAME":"Contract Configurator", "URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/master/GameData/ContractConfigurator/ContractConfigurator.version", "DOWNLOAD":"https://github.com/jrossignol/ContractConfigurator/releases", - "CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/1.30.3/CHANGES.txt", + "CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/1.30.4/CHANGES.txt", "GITHUB":{ "USERNAME":"jrossignol", "REPOSITORY":"ContractConfigurator", @@ -11,7 +11,7 @@ "VERSION":{ "MAJOR":1, "MINOR":30, - "PATCH":3, + "PATCH":4, "BUILD":0 }, "KSP_VERSION":{ diff --git a/GameData/ContractConfigurator/KerKonConConExt.dll b/GameData/ContractConfigurator/KerKonConConExt.dll index b9703bc25..2fbd4fa64 100644 Binary files a/GameData/ContractConfigurator/KerKonConConExt.dll and b/GameData/ContractConfigurator/KerKonConConExt.dll differ diff --git a/source/CC_RemoteTech/Properties/AssemblyInfo.cs b/source/CC_RemoteTech/Properties/AssemblyInfo.cs index 8bcde72e2..9804bead9 100644 --- a/source/CC_RemoteTech/Properties/AssemblyInfo.cs +++ b/source/CC_RemoteTech/Properties/AssemblyInfo.cs @@ -33,8 +33,8 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0")] -[assembly: AssemblyFileVersion("1.30.3")] -[assembly: AssemblyInformationalVersion("1.30.3")] +[assembly: AssemblyFileVersion("1.30.4")] +[assembly: AssemblyInformationalVersion("1.30.4")] [assembly: KSPAssembly("CC_RemoteTech", 1, 0)] [assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)] [assembly: KSPAssemblyDependency("RemoteTech", 1, 7)] diff --git a/source/ContractConfigurator/Properties/AssemblyInfo.cs b/source/ContractConfigurator/Properties/AssemblyInfo.cs index 326812762..21ef28828 100644 --- a/source/ContractConfigurator/Properties/AssemblyInfo.cs +++ b/source/ContractConfigurator/Properties/AssemblyInfo.cs @@ -39,6 +39,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0")] -[assembly: AssemblyFileVersion("1.30.3")] -[assembly: AssemblyInformationalVersion("1.30.3")] +[assembly: AssemblyFileVersion("1.30.4")] +[assembly: AssemblyInformationalVersion("1.30.4")] [assembly: KSPAssembly("ContractConfigurator", 1, 0)] diff --git a/source/ContractConfigurator/ScenarioModules/ScienceReporter.cs b/source/ContractConfigurator/ScenarioModules/ScienceReporter.cs index c112fcef2..5f7c689a7 100644 --- a/source/ContractConfigurator/ScenarioModules/ScienceReporter.cs +++ b/source/ContractConfigurator/ScenarioModules/ScienceReporter.cs @@ -20,8 +20,8 @@ public class ScienceReporter : ScenarioModule { static FieldInfo messageListField = typeof(MessageSystem).GetFields(BindingFlags.Instance | BindingFlags.NonPublic).Where(fi => fi.FieldType == typeof(List)).First(); static List messageList = null; - static string deployedScienceTag = Localizer.GetStringByTag("#autoLOC_8002254"); - static string deployedScienceMessageTitle = Localizer.GetStringByTag("#cc.science.deployedScienceReport"); + static string deployedScienceTag = null; + static string deployedScienceMessageTitle = null; int lastMessageCount = 0; List recentScience = new List(); @@ -37,6 +37,9 @@ public override void OnAwake() { Destroy(this); } + + deployedScienceTag = Localizer.GetStringByTag("#autoLOC_8002254"); + deployedScienceMessageTitle = Localizer.GetStringByTag("#cc.science.deployedScienceReport"); } void Start() diff --git a/source/KerKonConConExt/Properties/AssemblyInfo.cs b/source/KerKonConConExt/Properties/AssemblyInfo.cs index bc173aead..a1b7910d5 100644 --- a/source/KerKonConConExt/Properties/AssemblyInfo.cs +++ b/source/KerKonConConExt/Properties/AssemblyInfo.cs @@ -32,8 +32,8 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0")] -[assembly: AssemblyFileVersion("1.30.3")] -[assembly: AssemblyInformationalVersion("1.30.3")] +[assembly: AssemblyFileVersion("1.30.4")] +[assembly: AssemblyInformationalVersion("1.30.4")] [assembly: KSPAssembly("KerKonConConExt", 1, 0)] [assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)] [assembly: KSPAssemblyDependency("KerbalKonstructs", 0, 9)]