Skip to content

Commit

Permalink
0.6.5; Fixed problem with Sun and Mun showing up as just "the" in som…
Browse files Browse the repository at this point in the history
…e parameters.
  • Loading branch information
jrossignol committed Feb 9, 2015
1 parent 608c5ec commit 048dce8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Contract Configurator 0.6.5
- Fix rare NullReference exception on VesselParameter save (thanks cupe).
- Fix Sun and Mun appearing as simply "the" in some parameters (thanks Invader Myk).

Contract Configurator 0.6.4
- Replace buggy stock ReachSpace parameter with a custom one (thanks Yemo and SETI users).
Expand Down
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 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.6.4")]
[assembly: AssemblyInformationalVersion("0.6.4")]
[assembly: AssemblyFileVersion("0.6.5")]
[assembly: AssemblyInformationalVersion("0.6.5")]
[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.6.4")]
[assembly: AssemblyInformationalVersion("0.6.4")]
[assembly: AssemblyFileVersion("0.6.5")]
[assembly: AssemblyInformationalVersion("0.6.5")]
[assembly: KSPAssembly("CC_SCANsat", 1, 0)]
[assembly: KSPAssemblyDependency("ContractConfigurator", 1, 0)]
[assembly: KSPAssemblyDependency("SCANsat", 1, 0)]
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.6.4")]
[assembly: AssemblyInformationalVersion("0.6.4")]
[assembly: AssemblyFileVersion("0.6.5")]
[assembly: AssemblyInformationalVersion("0.6.5")]
[assembly: KSPAssembly("ContractConfigurator", 1, 0)]
2 changes: 1 addition & 1 deletion source/ContractConfigurator/Util/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static class Extensions
/// <returns>The name of the body, for printing purpose only.</returns>
public static string PrintName(this CelestialBody body)
{
return body.use_The_InName ? "the " : "" + body.name;
return (body.use_The_InName ? "the " : "") + body.name;
}

/// <summary>
Expand Down

0 comments on commit 048dce8

Please sign in to comment.