Skip to content

Commit

Permalink
Update versioning
Browse files Browse the repository at this point in the history
* Versioning updated to DRE 7.8.2 for KSP 1.12 (min = KSP 1.8, no max)
* No further warnings will be issued for further KSP updates. (KSP 1.12 is supposed to be the last update but if there ever is another update it will be disregarded by the version checker)
  • Loading branch information
Starwaster committed Aug 5, 2021
1 parent c62c8dd commit 059c774
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions DeadlyReentry/DeadlyReentry.version
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@
{
"MAJOR" : 7,
"MINOR" : 8,
"PATCH" : 1
"PATCH" : 2
},

"KSP_VERSION":
{
"MAJOR": 1,
"MINOR": 10,
"PATCH": 1
"MINOR": 12,
},

"KSP_VERSION_MIN":
Expand All @@ -32,7 +31,7 @@
"KSP_VERSION_MAX":
{
"MAJOR": 1,
"MINOR": 10,
"MINOR": 99,
"PATCH": 99
}
}
2 changes: 1 addition & 1 deletion Source/Checkers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,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_major == 1 && (Versioning.version_minor >= 8 && Versioning.version_minor <= 10);
return Versioning.version_major == 1 && (Versioning.version_minor >= 8);

/*-----------------------------------------------*\
| 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 @@ -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("7.8.1")]
[assembly: AssemblyVersion("7.8.2")]
//[assembly: AssemblyFileVersion("7.0.*.*")]
[assembly: KSPAssembly("DeadlyReentry", 7, 8, 1)]
[assembly: KSPAssembly("DeadlyReentry", 7, 8, 2)]
//[assembly: KSPAssemblyDependency("ModularFlightIntegrator", 1, 0)]

0 comments on commit 059c774

Please sign in to comment.