Skip to content

Commit 871d113

Browse files
committed
Release 1.0.1.1 (LisiasT) for KSP >= 1.2.2
1 parent 570dc8c commit 871d113

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGES.md

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

3-
* 2021-0907: 1.0.1.0 (LisiasT) for KSP >= 1.2.2
3+
* 2021-0907: 1.0.1.1 (LisiasT) for KSP >= 1.2.2
44
+ Promoted to Release
55
+ Revamping the Redist checks, promoting modularity and selective deployment
66
+ Adding checks for KSP 1.12.x due changes on how DLLs are loaded.
77
- Prevents MM and MM /L forks from stomping each other toes.
8+
* 2021-0907: 1.0.1.0 (LisiasT) for KSP >= 1.2.2
9+
+ ***Ditched*** due a deployment mishap.
810
* 2021-0705: 1.0.0.0 BETA (LisiasT) for KSP >= 1.2.2
911
+ Added rules to be enforced for:
1012
- Scale Redist not having duplicated DLLs, being present when needed and on the correct place

CHANGE_LOG.md

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

3-
* 2021-0907: 1.0.1.0 (LisiasT) for KSP >= 1.2.2
3+
* 2021-0907: 1.0.1.1 (LisiasT) for KSP >= 1.2.2
44
+ Promoted to Release
55
+ Revamping the Redist checks, promoting modularity and selective deployment
66
+ Adding checks for KSP 1.12.x due changes on how DLLs are loaded.
77
- Prevents MM and MM /L forks from stomping each other toes.
8+
* 2021-0907: 1.0.1.0 (LisiasT) for KSP >= 1.2.2
9+
+ ***Ditched*** due a deployment mishap.
810
* 2021-0705: 1.0.0.0 BETA (LisiasT) for KSP >= 1.2.2
911
+ Added rules to be enforced for:
1012
- Scale Redist not having duplicated DLLs, being present when needed and on the correct place

ModuleManagerWatchDog.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"MAJOR":1,
99
"MINOR":0,
1010
"PATCH":1,
11-
"BUILD":0
11+
"BUILD":1
1212
},
1313
"KSP_VERSION_MIN":{
1414
"MAJOR":1,

Source/ModuleManagerWatchDog/Properties/Version.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ namespace <#= PROJECT_NAME #>
8484
public const int build = <#= build #>;
8585
public const string Number = "<#= major #>.<#= minor #>.<#= patch #>.<#= build #>";
8686
#if DEBUG
87-
public const string Text = Number + " /L Beta DEBUG";
87+
public const string Text = Number + " /L DEBUG";
8888
#else
89-
public const string Text = Number + " /L Beta";
89+
public const string Text = Number + " /L";
9090
#endif
9191
}
9292
}

0 commit comments

Comments
 (0)