Skip to content

Commit

Permalink
v4.8 for KSP 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Caskey committed Nov 4, 2018
1 parent 435f27a commit a56e45c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 deletions.
Binary file added 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
@@ -1,5 +1,5 @@
RealHeat
by NathanKell and ferram4
by NathanKell and ferram4 (maintained by rsparkyc)
License: CC-BY-SA

This is a simple mod to correct some temperature-related things in KSP's thermal model. Later it will replace things wholesale, building on the work of goozeman and SRFirefox in addition to those above.
Expand All @@ -14,6 +14,9 @@ Extract RealHeat folder and ModularFlightIntegrator folders to GameData.

Changelog:

v4.8
* Recompile for KSP 1.5.1

v4.7
* Recompile for KSP 1.4.5

Expand Down
10 changes: 5 additions & 5 deletions RealHeat/RealHeat.version
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@
},
"VERSION": {
"MAJOR": 4,
"MINOR": 7,
"MINOR": 8,
"PATCH": 0,
"BUILD": 0
},
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 4,
"PATCH": 5,
"MINOR": 5,
"PATCH": 1,
"BUILD": 0
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 4,
"MINOR": 5,
"PATCH": 0,
"BUILD": 0
},
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 4,
"MINOR": 5,
"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 == 4 && Versioning.version_major == 1;
return Versioning.version_minor == 5 && 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 @@ -9,7 +9,7 @@
[assembly: AssemblyTitle("RealHeat")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NathanKell and ferram4")]
[assembly: AssemblyCompany("NathanKell and ferram4 and rsparkyc")]
[assembly: AssemblyProduct("RealHeat")]
[assembly: AssemblyCopyright("Copyright © 2015 - 2018")]
[assembly: AssemblyTrademark("")]
Expand All @@ -36,8 +36,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

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

[assembly: KSPAssembly("RealHeat", 4, 0)]
[assembly: KSPAssemblyDependency("ModularFlightIntegrator", 1, 0)]
10 changes: 5 additions & 5 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.4.5\Assembly-CSharp.dll</HintPath>
<HintPath>..\..\Dependencies\1.5.1\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ModularFlightIntegrator">
<HintPath>..\..\..\..\..\..\Games\RO_131\GameData\ModularFlightIntegrator\ModularFlightIntegrator.dll</HintPath>
<Private>False</Private>
<Reference Include="ModularFlightIntegrator, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Dependencies\1.5.1\ModularFlightIntegrator.dll</HintPath>
</Reference>
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Dependencies\1.4.5\UnityEngine.dll</HintPath>
<HintPath>..\..\Dependencies\1.5.1\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
Expand Down

0 comments on commit a56e45c

Please sign in to comment.