Skip to content

Commit 3716401

Browse files
committed
Release 1.0.1.0 (LisiasT) for KSP >= 1.2.2
1 parent 6db852c commit 3716401

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Module Manager Watch Dog :: Changes
22

3+
* 2021-0907: 1.0.1.0 (LisiasT) for KSP >= 1.2.2
4+
+ Promoted to Release
5+
+ Revamping the Redist checks, promoting modularity and selective deployment
6+
+ Adding checks for KSP 1.12.x due changes on how DLLs are loaded.
7+
- Prevents MM and MM /L forks from stomping each other toes.
38
* 2021-0705: 1.0.0.0 BETA (LisiasT) for KSP >= 1.2.2
49
+ Added rules to be enforced for:
510
- Scale Redist not having duplicated DLLs, being present when needed and on the correct place

CHANGE_LOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Module Manager Watch Dog :: Change Log
22

3+
* 2021-0907: 1.0.1.0 (LisiasT) for KSP >= 1.2.2
4+
+ Promoted to Release
5+
+ Revamping the Redist checks, promoting modularity and selective deployment
6+
+ Adding checks for KSP 1.12.x due changes on how DLLs are loaded.
7+
- Prevents MM and MM /L forks from stomping each other toes.
38
* 2021-0705: 1.0.0.0 BETA (LisiasT) for KSP >= 1.2.2
49
+ Added rules to be enforced for:
510
- Scale Redist not having duplicated DLLs, being present when needed and on the correct place

CONFIG.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ DLLS="WatchDogForInterstellarRedist WatchDogForScaleRedist"
1414
PROJECT_BRANCH=`git branch | grep \* | cut -d ' ' -f2`
1515
if [ "$PROJECT_BRANCH" == "master" ] ; then
1616
# Release mode
17-
PROJECT_STATE="-Beta"
17+
PROJECT_STATE=""
1818
else
1919
# Note: Add a leading dash when this value is present!
20-
PROJECT_STATE="-Beta"
20+
PROJECT_STATE=""
2121
fi
2222

2323
VERSION=$( cat $VERSIONFILE | tr '\n' ' ' | sed -n -E 's/^.*?"VERSION\":\{.*"MAJOR":([0-9]+?),.*?"MINOR":([0-9]+?),.*?"PATCH":([0-9]+?),.*?"BUILD":([0-9]+?).*?\}.*$/\1.\2.\3.\4/p' )

ModuleManagerWatchDog.version

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"CHANGE_LOG_URL": "https://raw.githubusercontent.com/net-lisias-ksp/ModuleManagerWatchDog/master/CHANGES.md",
66

77
"VERSION":{
8-
"MAJOR":0,
9-
"MINOR":1,
10-
"PATCH":0,
8+
"MAJOR":1,
9+
"MINOR":0,
10+
"PATCH":1,
1111
"BUILD":0
1212
},
1313
"KSP_VERSION_MIN":{

0 commit comments

Comments
 (0)