Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions GameData/ProceduralParts/ProceduralParts.version
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@
"BUILD" : 0
},
"DOWNLOAD" : "https://github.com/Starwaster/ProceduralParts/releases",
"KSP_VERSION" :
"KSP_VERSION_MIN" :
{
"MAJOR" : 1,
"MINOR" : 3,
"PATCH" : 0
},
"KSP_VERSION_MAX" :
{
"MAJOR" : 1,
"MINOR" : 3,
"PATCH" : 1
}
}

3 changes: 2 additions & 1 deletion Source/zzVersionChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ 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 == 3 && Versioning.Revision == 0;
return Versioning.version_major == 1 && Versioning.version_minor == 3
&& Versioning.Revision >= 0 && Versioning.Revision <= 1;

/*-----------------------------------------------*\
| IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! |
Expand Down
13 changes: 9 additions & 4 deletions version-gen
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,17 @@ my $metadata = {
{
USERNAME => "Swamp-Ig",
REPOSITORY => "ProceduralParts"


},
KSP_VERSION_MIN => {
MAJOR => 1,
MINOR => 3,
PATCH => 0
},
KSP_VERSION => {
KSP_VERSION_MAX => {
MAJOR => 1,
MINOR => 2,
PATCH => 2,
MINOR => 3,
PATCH => 1
},
};

Expand Down