Skip to content

Commit

Permalink
Updated to KSP 1.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
formicant committed Nov 5, 2016
1 parent 5bb0194 commit a79473a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 17 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
{
"MAJOR": 1,
"MINOR": 2,
"PATCH": 0,
"BUILD": 3
"PATCH": 1,
"BUILD": 1
},
"KSP_VERSION":
{
"MAJOR": 1,
"MINOR": 2,
"PATCH": 0
"PATCH": 1
},
"KSP_VERSION_MIN":
{
Expand All @@ -31,6 +31,6 @@
{
"MAJOR": 1,
"MINOR": 2,
"PATCH": 0
"PATCH": 1
},
}
14 changes: 3 additions & 11 deletions src/CriticalTemperatureGauge/CriticalTemperatureGauge.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,15 @@
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="Assembly-CSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\_Lib\1.2.0 x64\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp-firstpass, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\_Lib\1.2.0 x64\Assembly-CSharp-firstpass.dll</HintPath>
<HintPath>..\..\..\_Lib\1.2.1 x64\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\_Lib\1.2.0 x64\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\_Lib\1.2.0 x64\UnityEngine.UI.dll</HintPath>
<HintPath>..\..\..\_Lib\1.2.1 x64\UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/CriticalTemperatureGauge/PartTemperatureState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class PartTemperatureState : PartModule
{
[KSPField(guiActive = true, guiActiveEditor = false, guiName = "Core temperature")]
public string CoreTemperatureMenuLabel;
[KSPField(guiActive = true, guiActiveEditor = false, guiName = "Skin\u2009 temperature"/* U+2009 Thin Space */)]
[KSPField(guiActive = true, guiActiveEditor = false, guiName = "\u2009Skin temperature"/* U+2009 Thin Space */)]
public string SkinTemperatureMenuLabel;

BaseField CoreTemperatureField { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/CriticalTemperatureGauge/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.0.3")]
[assembly: AssemblyVersion("1.2.1.1")]

// Use KSPAssembly to allow other DLLs to make this DLL a dependency in a
// non-hacky way in KSP. Format is (AssemblyProduct, major, minor), and it
Expand Down

0 comments on commit a79473a

Please sign in to comment.