Skip to content

Commit

Permalink
Update .version file script to target KSP 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
siimav committed Mar 18, 2022
1 parent e716b36 commit 06afcba
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions makeMeta.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,20 @@ def error(self, message):
"KSP_VERSION" :
{
"MAJOR" : 1,
"MINOR" : 10,
"PATCH" : 1
"MINOR" : 12,
"PATCH" : 3
},
"KSP_VERSION_MIN":
{
"MAJOR": "1",
"MINOR": "12",
"PATCH": "0"
},
"KSP_VERSION_MAX":
{
"MAJOR": "1",
"MINOR": "12",
"PATCH": "99"
}
}
with open("RO.version", "w") as f:
Expand Down

0 comments on commit 06afcba

Please sign in to comment.