Skip to content

Commit

Permalink
1.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jrossignol committed Jul 30, 2016
1 parent 052bdc1 commit 011a348
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Contract Configurator 1.16.2
- Fix exception error messaging.

Contract Configurator 1.16.1
- Silence Research Bodies error (thanks Liondrome).
- Fixed problems with ResearchBodies support (it was offering some contracts that it shouldn't have).
Expand Down
Binary file modified GameData/ContractConfigurator/CC_RemoteTech.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/1.16.1/CHANGES.txt",
"CHANGE_LOG_URL":"https://raw.githubusercontent.com/jrossignol/ContractConfigurator/1.16.2/CHANGES.txt",
"GITHUB":{
"USERNAME":"jrossignol",
"REPOSITORY":"ContractConfigurator",
Expand All @@ -11,7 +11,7 @@
"VERSION":{
"MAJOR":1,
"MINOR":16,
"PATCH":1,
"PATCH":2,
"BUILD":0
},
"KSP_VERSION":{
Expand Down
Binary file modified GameData/ContractConfigurator/KerKonConConExt.dll
Binary file not shown.
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("1.16.1")]
[assembly: AssemblyInformationalVersion("1.16.1")]
[assembly: AssemblyFileVersion("1.16.2")]
[assembly: AssemblyInformationalVersion("1.16.2")]
[assembly: KSPAssembly("CC_RemoteTech", 1, 0)]
[assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)]
[assembly: KSPAssemblyDependency("RemoteTech", 1, 7)]
4 changes: 2 additions & 2 deletions source/ContractConfigurator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0")]
[assembly: AssemblyFileVersion("1.16.1")]
[assembly: AssemblyInformationalVersion("1.16.1")]
[assembly: AssemblyFileVersion("1.16.2")]
[assembly: AssemblyInformationalVersion("1.16.2")]
[assembly: KSPAssembly("ContractConfigurator", 1, 0)]
2 changes: 1 addition & 1 deletion source/ContractConfigurator/Util/LoggingUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private static void CaptureException(Exception e)
CaptureException(e.InnerException);
capturedLog += "Rethrow as ";
}
capturedLog += string.Format("{0}: {1}\n{2}\n", e.GetType() + e.Message, e.StackTrace);
capturedLog += string.Format("{0}: {1}\n{2}\n", e.GetType(), e.Message, e.StackTrace);
}

public static void Log(LogLevel logLevel, System.Object obj, string message)
Expand Down
4 changes: 2 additions & 2 deletions source/KerKonConConExt/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0")]
[assembly: AssemblyFileVersion("1.16.1")]
[assembly: AssemblyInformationalVersion("1.16.1")]
[assembly: AssemblyFileVersion("1.16.2")]
[assembly: AssemblyInformationalVersion("1.16.2")]
[assembly: KSPAssembly("KerKonConConExt", 1, 0)]
[assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)]
[assembly: KSPAssemblyDependency("KerbalKonstructs", 0, 9)]

0 comments on commit 011a348

Please sign in to comment.