Skip to content

Commit

Permalink
Merge pull request #2 from PhineasFreak/KSP-1.2-Updates
Browse files Browse the repository at this point in the history
Update for KSP 1.2
  • Loading branch information
NathanKell authored Mar 22, 2017
2 parents a1d474e + 25de772 commit 5d5c045
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 29 deletions.
1 change: 0 additions & 1 deletion Source/AtmData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Linq;
using System.Text;
using UnityEngine;
using KSP;

namespace RealHeat
{
Expand Down
5 changes: 1 addition & 4 deletions Source/AtmTempCurve.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
using System;
using System.IO;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using UnityEngine;
using KSP;

namespace RealHeat
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Checkers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static bool IsCompatible()
// Even if you don't lock down functionality, you should return true if your users
// can expect a future update to be available.
//
return Versioning.version_minor == 1 && Versioning.version_major == 1;
return Versioning.version_minor == 2 && Versioning.version_major == 1;

/*-----------------------------------------------*\
| IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! |
Expand Down
6 changes: 3 additions & 3 deletions Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NathanKell and ferram4")]
[assembly: AssemblyProduct("RealHeat")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyCopyright("Copyright © 2015 - 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -33,8 +33,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.4.3.0")]
[assembly: AssemblyFileVersion("0.4.3.0")]
[assembly: AssemblyVersion("0.4.4.0")]
[assembly: AssemblyFileVersion("0.4.4.0")]

[assembly: KSPAssembly("RealHeat", 4, 0)]
[assembly: KSPAssemblyDependency("ModularFlightIntegrator", 1, 0)]
4 changes: 0 additions & 4 deletions Source/RealHeat.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using UnityEngine;
using KSP;

namespace RealHeat
{
Expand Down
10 changes: 0 additions & 10 deletions Source/RealHeat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,6 @@
<HintPath>..\..\..\..\..\..\Games\KSP_win64\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="KSPCore, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\Games\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\KSPCore.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="KSPUtil, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\Games\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\KSPUtil.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ModularFlightIntegrator">
<HintPath>..\..\..\..\..\..\Games\RO_113\GameData\ModularFlightIntegrator\ModularFlightIntegrator.dll</HintPath>
<Private>False</Private>
Expand Down
7 changes: 1 addition & 6 deletions Source/Utils.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using UnityEngine;
using KSP;
using UnityEngine;

namespace RealHeat
{
Expand Down

0 comments on commit 5d5c045

Please sign in to comment.