Skip to content

Commit

Permalink
Merge pull request #13 from raidernick/master
Browse files Browse the repository at this point in the history
update for ksp 1.7.x
  • Loading branch information
raidernick authored Oct 31, 2019
2 parents 17eab5d + 6f0e220 commit cb594a2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
Binary file modified RealHeat/Plugins/RealHeat.dll
Binary file not shown.
3 changes: 3 additions & 0 deletions RealHeat/Readme_RH.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Extract the RealHeat folder to GameData.

Changelog:

v5.0
* Recompile for KSP 1.7.3

v4.9
* Recompile for KSP 1.6.1

Expand Down
12 changes: 6 additions & 6 deletions RealHeat/RealHeat.version
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@
"REPOSITORY": "RealHeat"
},
"VERSION": {
"MAJOR": 4,
"MINOR": 9,
"MAJOR": 5,
"MINOR": 0,
"PATCH": 0,
"BUILD": 0
},
"KSP_VERSION": {
"MAJOR": 1,
"MINOR": 6,
"PATCH": 1,
"MINOR": 7,
"PATCH": 3,
"BUILD": 0
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
"MINOR": 6,
"MINOR": 7,
"PATCH": 0,
"BUILD": 0
},
"KSP_VERSION_MAX": {
"MAJOR": 1,
"MINOR": 6,
"MINOR": 7,
"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 == 6 && Versioning.version_major == 1;
return Versioning.version_minor == 7 && Versioning.version_major == 1;

/*-----------------------------------------------*\
| IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! |
Expand Down
4 changes: 2 additions & 2 deletions Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

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

[assembly: KSPAssembly("RealHeat", 4, 0)]
[assembly: KSPAssemblyDependency("ModularFlightIntegrator", 1, 0)]

0 comments on commit cb594a2

Please sign in to comment.