diff --git a/GameData/ContractConfigurator/CC_RemoteTech.dll b/GameData/ContractConfigurator/CC_RemoteTech.dll index 85135fa1a..b31ec21c9 100644 Binary files a/GameData/ContractConfigurator/CC_RemoteTech.dll and b/GameData/ContractConfigurator/CC_RemoteTech.dll differ diff --git a/GameData/ContractConfigurator/CC_SCANsat.dll b/GameData/ContractConfigurator/CC_SCANsat.dll index 454a43c4e..5c3daa6ba 100644 Binary files a/GameData/ContractConfigurator/CC_SCANsat.dll and b/GameData/ContractConfigurator/CC_SCANsat.dll differ diff --git a/GameData/ContractConfigurator/ContractConfigurator.dll b/GameData/ContractConfigurator/ContractConfigurator.dll index e42e0665b..f93790339 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 03ff72e66..71be4fdcf 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/0.7.0/CHANGES.txt", + "CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/0.7.1/CHANGES.txt", "GITHUB":{ "USERNAME":"jrossignol", "REPOSITORY":"ContractConfigurator", @@ -11,7 +11,7 @@ "VERSION":{ "MAJOR":0, "MINOR":7, - "PATCH":0, + "PATCH":1, "BUILD":0 }, "KSP_VERSION":{ diff --git a/source/CC_RemoteTech/Properties/AssemblyInfo.cs b/source/CC_RemoteTech/Properties/AssemblyInfo.cs index 2d193bb5f..2c49d1828 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("0.7.0")] -[assembly: AssemblyInformationalVersion("0.7.0")] +[assembly: AssemblyFileVersion("0.7.1")] +[assembly: AssemblyInformationalVersion("0.7.1")] [assembly: KSPAssembly("CC_RemoteTech", 1, 0)] [assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)] [assembly: KSPAssemblyDependency("RemoteTech", 1, 6)] diff --git a/source/CC_SCANsat/Properties/AssemblyInfo.cs b/source/CC_SCANsat/Properties/AssemblyInfo.cs index 81bf805ed..df7d7a88a 100644 --- a/source/CC_SCANsat/Properties/AssemblyInfo.cs +++ b/source/CC_SCANsat/Properties/AssemblyInfo.cs @@ -34,8 +34,8 @@ // übernehmen, indem Sie "*" eingeben: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0")] -[assembly: AssemblyFileVersion("0.7.0")] -[assembly: AssemblyInformationalVersion("0.7.0")] +[assembly: AssemblyFileVersion("0.7.1")] +[assembly: AssemblyInformationalVersion("0.7.1")] [assembly: KSPAssembly("CC_SCANsat", 1, 0)] [assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)] [assembly: KSPAssemblyDependency("SCANsat", 1, 0)] diff --git a/source/ContractConfigurator/ConfiguredContract.cs b/source/ContractConfigurator/ConfiguredContract.cs index 46a97e8ad..9a7abc5f8 100644 --- a/source/ContractConfigurator/ConfiguredContract.cs +++ b/source/ContractConfigurator/ConfiguredContract.cs @@ -351,10 +351,11 @@ private bool SelectContractType() // Check the requirements for our selection if (selectedContractType.MeetRequirements(this)) { + LoggingUtil.LogVerbose(this, selectedContractType.name + " was not generated: requirement not met."); contractType = selectedContractType; return true; } - // Remote the selection, and try again + // Remove the selection, and try again else { validContractTypes.Remove(selectedContractType); diff --git a/source/ContractConfigurator/ExpressionParser/Parsers/Classes/VesselParser.cs b/source/ContractConfigurator/ExpressionParser/Parsers/Classes/VesselParser.cs index 916dd8c8c..9f0fc6d9d 100644 --- a/source/ContractConfigurator/ExpressionParser/Parsers/Classes/VesselParser.cs +++ b/source/ContractConfigurator/ExpressionParser/Parsers/Classes/VesselParser.cs @@ -134,6 +134,8 @@ internal override Vessel ParseIdentifier(Token token) { return null; } + Debug.Log("parsing vessel for identifier '" + identifier + "'"); + Debug.Log("result = " + ContractVesselTracker.Instance.GetAssociatedVessel(identifier)); return ContractVesselTracker.Instance.GetAssociatedVessel(identifier); } diff --git a/source/ContractConfigurator/Properties/AssemblyInfo.cs b/source/ContractConfigurator/Properties/AssemblyInfo.cs index 59660ded9..5a252351e 100644 --- a/source/ContractConfigurator/Properties/AssemblyInfo.cs +++ b/source/ContractConfigurator/Properties/AssemblyInfo.cs @@ -34,6 +34,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0")] -[assembly: AssemblyFileVersion("0.7.0")] -[assembly: AssemblyInformationalVersion("0.7.0")] +[assembly: AssemblyFileVersion("0.7.1")] +[assembly: AssemblyInformationalVersion("0.7.1")] [assembly: KSPAssembly("ContractConfigurator", 1, 0)]