Skip to content

Commit

Permalink
Update RealHeat for KSP 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Phineas Freak committed Mar 25, 2019
1 parent a56e45c commit 17eab5d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
Binary file removed RealHeat/Plugins/ModularFlightIntegrator.dll
Binary file not shown.
Binary file modified RealHeat/Plugins/RealHeat.dll
Binary file not shown.
5 changes: 4 additions & 1 deletion RealHeat/Readme_RH.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ Right now it will:
* Recalculate background radiation temperature (and the density-based interpolation factor used there and in other things) based on the above.

Installation:
Extract RealHeat folder and ModularFlightIntegrator folders to GameData.
Extract the RealHeat folder to GameData.

Changelog:

v4.9
* Recompile for KSP 1.6.1

v4.8
* Recompile for KSP 1.5.1

Expand Down
8 changes: 4 additions & 4 deletions RealHeat/RealHeat.version
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@
},
"VERSION": {
"MAJOR": 4,
"MINOR": 8,
"MINOR": 9,
"PATCH": 0,
"BUILD": 0
},
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 5,
"MINOR": 6,
"PATCH": 1,
"BUILD": 0
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 5,
"MINOR": 6,
"PATCH": 0,
"BUILD": 0
},
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 5,
"MINOR": 6,
"PATCH": 99,
"BUILD": 0
}
Expand Down
2 changes: 1 addition & 1 deletion Source/Checkers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,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 == 5 && Versioning.version_major == 1;
return Versioning.version_minor == 6 && 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 @@ -11,7 +11,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NathanKell and ferram4 and rsparkyc")]
[assembly: AssemblyProduct("RealHeat")]
[assembly: AssemblyCopyright("Copyright © 2015 - 2018")]
[assembly: AssemblyCopyright("Copyright © 2015 - 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

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

[assembly: AssemblyVersion("0.4.8.0")]
[assembly: AssemblyFileVersion("0.4.8.0")]
[assembly: AssemblyVersion("0.4.9.0")]
[assembly: AssemblyFileVersion("0.4.9.0")]

[assembly: KSPAssembly("RealHeat", 4, 0)]
[assembly: KSPAssemblyDependency("ModularFlightIntegrator", 1, 0)]
6 changes: 3 additions & 3 deletions Source/RealHeat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Dependencies\1.5.1\Assembly-CSharp.dll</HintPath>
<HintPath>..\..\Dependencies\1.6.1\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ModularFlightIntegrator, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Dependencies\1.5.1\ModularFlightIntegrator.dll</HintPath>
<HintPath>..\..\Dependencies\1.6.1\ModularFlightIntegrator.dll</HintPath>
</Reference>
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Dependencies\1.5.1\UnityEngine.dll</HintPath>
<HintPath>..\..\Dependencies\1.6.1\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
Expand Down

0 comments on commit 17eab5d

Please sign in to comment.