Skip to content

Commit

Permalink
Prep for v3.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ferram4 committed Apr 30, 2016
1 parent c753398 commit 0028e5f
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"VERSION" : {
"MAJOR" : 3,
"MINOR" : 1,
"PATCH" : 6
"PATCH" : 7
},
"KSP_VERSION_MIN" : {
"MAJOR" : 1,
"MINOR" : 1,
"PATCH" : 0
"PATCH" : 2
},
"KSP_VERSION_MAX" : {
"MAJOR" : 1,
"MINOR" : 1,
"PATCH" : 1
"PATCH" : 2
}
}

Binary file not shown.
Binary file modified KerbalJointReinforcement/KerbalJointReinforcement.v12.suo
Binary file not shown.
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 == 1 && Versioning.version_major == 1 && Versioning.Revision >= 2;

/*-----------------------------------------------*\
| IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Kerbal Joint Reinforcement, v3.1.6
Kerbal Joint Reinforcement, v3.1.7
Copyright 2015, Michael Ferrara, aka Ferram4
This file is part of Kerbal Joint Reinforcement.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Kerbal Joint Reinforcement, v3.1.6
Kerbal Joint Reinforcement, v3.1.7
Copyright 2015, Michael Ferrara, aka Ferram4
This file is part of Kerbal Joint Reinforcement.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Kerbal Joint Reinforcement, v3.1.6
Kerbal Joint Reinforcement, v3.1.7
Copyright 2015, Michael Ferrara, aka Ferram4
This file is part of Kerbal Joint Reinforcement.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Kerbal Joint Reinforcement, v3.1.6
Kerbal Joint Reinforcement, v3.1.7
Copyright 2015, Michael Ferrara, aka Ferram4
This file is part of Kerbal Joint Reinforcement.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Kerbal Joint Reinforcement, v3.1.6
Kerbal Joint Reinforcement, v3.1.7
Copyright 2015, Michael Ferrara, aka Ferram4
This file is part of Kerbal Joint Reinforcement.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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("3.1.5.0")]
[assembly: AssemblyFileVersion("3.1.5.0")]
[assembly: AssemblyVersion("3.1.7.0")]
[assembly: AssemblyFileVersion("3.1.7.0")]
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Kerbal Joint Reinforcement, v3.1.6
Kerbal Joint Reinforcement, v3.1.7
==========================

Physics stabilizer plugin for Kerbal Space Program
Expand Down Expand Up @@ -119,6 +119,10 @@ These types are currently not used, but removing the a in front of them will cau
***********************
****** CHANGELOG ******
***********************
v3.1.7
Features
--Recompile to ensure KSP 1.1.2 compatibility, especially within CompatibilityChecker utility

v3.1.6
Features
--Update to ensure KSP 1.1.1 compatibility
Expand Down

0 comments on commit 0028e5f

Please sign in to comment.