Skip to content

Commit deeab85

Browse files
committed
Legal Mambo Jambo
1 parent afc7087 commit deeab85

7 files changed

Lines changed: 24 additions & 27 deletions

File tree

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"ModuleManagerWatchDog", "Module Manager Watch Dog" and "MMWD" are trademarmarks of LisiasT
33

44
Other trademarks and registered trademarks are the property of the respective trademark holders.
5-
© 2020 LisiasT
5+
© 2020-21 LisiasT

Source/ModuleManagerWatchDog/GUI/Abstract.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
This file is part of Module Manager Watch Dog
3-
(C) 2020 Lisias T : http://lisias.net <support@lisias.net>
3+
(C) 2020-21 Lisias T : http://lisias.net <support@lisias.net>
44
55
Module Manager Watch Dog is licensed as follows:
66
77
* SKL 1.0 : https://ksp.lisias.net/SKL-1_0.txt
88
99
And you are allowed to choose the License that better suit your needs.
1010
11-
KSP-Recall is distributed in the hope that it will be useful,
11+
Module Manager Watchdog is distributed in the hope that it will be useful,
1212
but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1414
@@ -42,7 +42,7 @@ protected static void SetWindowBackground(GUIStyle style)
4242
protected static void SetTextBackground(GUIStyle style)
4343
{
4444
if (null == textTex)
45-
{
45+
{
4646
textTex = new Texture2D(1, 1);
4747
textTex.SetPixel(0, 0, new Color(0f, 0f, 0f, 0.45f));
4848
textTex.Apply();

Source/ModuleManagerWatchDog/GUI/FatalError.cs

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
/*
2-
This file is part of KSPe, a component for KSP API Extensions/L
3-
(C) 2018-20 Lisias T : http://lisias.net <support@lisias.net>
2+
This file is part of Module Manager Watch Dog
3+
(C) 2020-21 Lisias T : http://lisias.net <support@lisias.net>
44
5-
KSPe API Extensions/L is double licensed, as follows:
5+
Module Manager Watch Dog is licensed as follows:
66
77
* SKL 1.0 : https://ksp.lisias.net/SKL-1_0.txt
8-
* GPL 2.0 : https://www.gnu.org/licenses/gpl-2.0.txt
98
109
And you are allowed to choose the License that better suit your needs.
1110
12-
KSPe API Extensions/L is distributed in the hope that it will be useful,
11+
Module Manager Watchdog is distributed in the hope that it will be useful,
1312
but WITHOUT ANY WARRANTY; without even the implied warranty of
1413
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1514
1615
You should have received a copy of the SKL Standard License 1.0
17-
along with KSPe API Extensions/L. If not, see <https://ksp.lisias.net/SKL-1_0.txt>.
18-
19-
You should have received a copy of the GNU General Public License 2.0
20-
along with KSPe API Extensions/L. If not, see <https://www.gnu.org/licenses/>.
16+
along with Module Manager Watch Dog. If not, see
17+
<https://ksp.lisias.net/SKL-1_0.txt>.
2118
2219
*/
2320
using System;
@@ -84,4 +81,4 @@ public static void Show(string errorMessage, string actionMessage, Action lambda
8481
);
8582
}
8683
}
87-
}
84+
}

Source/ModuleManagerWatchDog/GUI/MessageBox.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
This file is part of Module Manager Watch Dog
3-
(C) 2020 Lisias T : http://lisias.net <support@lisias.net>
3+
(C) 2020-21 Lisias T : http://lisias.net <support@lisias.net>
44
55
Module Manager Watch Dog is licensed as follows:
66
77
* SKL 1.0 : https://ksp.lisias.net/SKL-1_0.txt
88
99
And you are allowed to choose the License that better suit your needs.
1010
11-
KSP-Recall is distributed in the hope that it will be useful,
11+
Module Manager Watchdog is distributed in the hope that it will be useful,
1212
but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1414
@@ -67,7 +67,7 @@ private Rect calculateWindow()
6767

6868
int width = Mathf.Min(maxWidth, Screen.width - 20);
6969
int height = Mathf.Min(maxHeight, Screen.height - 20);
70-
70+
7171
return new Rect(
7272
(Screen.width - width) / 2, (Screen.height - height) / 2,
7373
width, height
@@ -119,4 +119,4 @@ private void WindowFunc(int windowID)
119119
}
120120
}
121121
}
122-
}
122+
}

Source/ModuleManagerWatchDog/GUI/ShowStopperAlertBox.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
This file is part of Module Manager Watch Dog
3-
(C) 2020 Lisias T : http://lisias.net <support@lisias.net>
3+
(C) 2020-21 Lisias T : http://lisias.net <support@lisias.net>
44
55
Module Manager Watch Dog is licensed as follows:
66
77
* SKL 1.0 : https://ksp.lisias.net/SKL-1_0.txt
88
99
And you are allowed to choose the License that better suit your needs.
1010
11-
KSP-Recall is distributed in the hope that it will be useful,
11+
Module Manager Watchdog is distributed in the hope that it will be useful,
1212
but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1414
@@ -35,4 +35,4 @@ internal static void Show(string msg)
3535
Log.detail("\"Houston, we have a Problem!\" was displayed");
3636
}
3737
}
38-
}
38+
}

Source/ModuleManagerWatchDog/Startup.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
This file is part of Module Manager Watch Dog
3-
(C) 2020 Lisias T : http://lisias.net <support@lisias.net>
3+
(C) 2020-21 Lisias T : http://lisias.net <support@lisias.net>
44
55
Module Manager Watch Dog is licensed as follows:
66
77
* SKL 1.0 : https://ksp.lisias.net/SKL-1_0.txt
88
99
And you are allowed to choose the License that better suit your needs.
1010
11-
KSP-Recall is distributed in the hope that it will be useful,
11+
Module Manager Watchdog is distributed in the hope that it will be useful,
1212
but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1414
@@ -22,7 +22,7 @@ You should have received a copy of the SKL Standard License 1.0
2222
using System.Linq;
2323
using System.Reflection;
2424

25-
using UnityEngine;
25+
using UnityEngine;
2626

2727
namespace ModuleManagerWatchDog
2828
{

Source/ModuleManagerWatchDog/Util/Log.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
This file is part of Module Manager Watch Dog
3-
(C) 2020 Lisias T : http://lisias.net <support@lisias.net>
3+
(C) 2020-21 Lisias T : http://lisias.net <support@lisias.net>
44
55
Module Manager Watch Dog is licensed as follows:
66
77
* SKL 1.0 : https://ksp.lisias.net/SKL-1_0.txt
88
99
And you are allowed to choose the License that better suit your needs.
1010
11-
KSP-Recall is distributed in the hope that it will be useful,
11+
Module Manager Watchdog is distributed in the hope that it will be useful,
1212
but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1414
@@ -39,7 +39,7 @@ internal static void detail(string msg, params object[] @params)
3939
}
4040

4141
internal static void error(string msg, params object[] @params)
42-
{
42+
{
4343
UnityEngine.Debug.LogErrorFormat("[ModuleManagerWatchDog] ERROR: " + msg, @params);
4444
}
4545

0 commit comments

Comments
 (0)