Skip to content

Commit

Permalink
0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrossignol committed Mar 21, 2015
1 parent edec0e9 commit 6aad3a7
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 9 deletions.
Binary file modified GameData/ContractConfigurator/CC_RemoteTech.dll
Binary file not shown.
Binary file modified GameData/ContractConfigurator/CC_SCANsat.dll
Binary file not shown.
Binary file modified GameData/ContractConfigurator/ContractConfigurator.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions GameData/ContractConfigurator/ContractConfigurator.version
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -11,7 +11,7 @@
"VERSION":{
"MAJOR":0,
"MINOR":7,
"PATCH":0,
"PATCH":1,
"BUILD":0
},
"KSP_VERSION":{
Expand Down
4 changes: 2 additions & 2 deletions source/CC_RemoteTech/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
4 changes: 2 additions & 2 deletions source/CC_SCANsat/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
3 changes: 2 additions & 1 deletion source/ContractConfigurator/ConfiguredContract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
4 changes: 2 additions & 2 deletions source/ContractConfigurator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

0 comments on commit 6aad3a7

Please sign in to comment.