Skip to content

Commit cefc8ee

Browse files
committed
internal: change license to MIT
1 parent c146ae8 commit cefc8ee

File tree

7 files changed

+27
-85
lines changed

7 files changed

+27
-85
lines changed

LICENSE.md

Lines changed: 21 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,21 @@
1-
Restricted Public Software License
2-
============================
3-
4-
Version 1.3.1
5-
© MrTJP 2013
6-
7-
0. Definitions
8-
--------------
9-
RPSL: Restricted Public Software License
10-
11-
Minecraft: Denotes a copy of the Minecraft game licensed by Mojang AB
12-
13-
User: Anybody that interacts with the software in one of the following ways:
14-
- play
15-
- decompile
16-
- recompile or compile
17-
- modify
18-
- distribute
19-
20-
Mod: The mod code designated by the present license, in source form, binary
21-
form, as obtained standalone, as part of a wider distribution or resulting from
22-
the compilation of the original or modified sources.
23-
24-
Dependency: Code required for the Mod to work properly. This includes
25-
dependencies required to compile the code as well as any file or modification
26-
that is explicitly or implicitly required for the Mod to work.
27-
28-
Developer: Any User who is recognized as having significant contribution to
29-
the development of the Mod.
30-
31-
Repository: The official repository presented by the Developers where the
32-
Mod source is available.
33-
34-
1. Scope
35-
--------
36-
37-
The present license is granted to any User of the Mod. As a prerequisite,
38-
a User must own a legally acquired copy of Minecraft. All Dependencies of
39-
this Mod must also be legally acquired.
40-
41-
2. Liability
42-
------------
43-
44-
This Mod is provided 'as is' with no warranties, implied or otherwise. The
45-
Developers take no responsibility for anything that happens.
46-
47-
3. Play rights
48-
--------------
49-
50-
The User is allowed to install this Mod on a client or a server and to play
51-
without restriction.
52-
53-
4. Modification rights
54-
----------------------
55-
56-
The User has the right to look at the Mod source code and modify it. No matter
57-
how heavily it was modified, it cannot be used for anything more than to
58-
contribute it to the actual Mod.
59-
60-
5. Derivation rights
61-
--------------------
62-
63-
The User has the rights to write code that extends or instanciate the Mod classes
64-
or interfaces, refer to its objects, or calls its functions. This code is known
65-
as "derived" code. If any User derives code from this Mod, clear and explicit
66-
credits must be given to every Developer of this Mod, as well as means of locating
67-
the Mod source. Any part of the code that is copied without proof of written
68-
permission from a Developer is not considered derived.
69-
70-
6. Distribution of original or modified Mod
71-
-------------------------------------------
72-
73-
By default this Mod may only be distributed on its own by the Developers.
74-
It may be included in a mod pack with other mods, as long as it is
75-
(a)non-profit and (b)legal. URL shorteners or other attempts to make money is
76-
strictly forbidden without advance written permission.
77-
78-
A User is allowed to freely copy and distribute the API files found under the
79-
API package or from a separate download, so long as it is not edited in any way.
1+
MIT License
2+
3+
Copyright (c) 2023 MrTJP, ChickenBones, covers1624
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

src/core/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
modLoader="scorge"
22
loaderVersion="[3.1,)"
33
issueTrackerURL="https://github.com/MrTJP/ProjectRed"
4-
license="RPSL"
4+
license="MIT"
55

66
[[mods]]
77
modId="projectred-core"

src/expansion/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
modLoader="javafml"
22
loaderVersion="[28,)"
33
issueTrackerURL="https://github.com/MrTJP/ProjectRed"
4-
license="RPSL"
4+
license="MIT"
55

66
[[mods]]
77
modId="projectred-expansion"

src/exploration/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
modLoader="javafml"
22
loaderVersion="[28,)"
33
issueTrackerURL="https://github.com/MrTJP/ProjectRed"
4-
license="RPSL"
4+
license="MIT"
55

66
[[mods]]
77
modId="projectred-exploration"

src/illumination/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
modLoader="javafml"
22
loaderVersion="[28,)"
33
issueTrackerURL="https://github.com/MrTJP/ProjectRed"
4-
license="RPSL"
4+
license="MIT"
55

66
[[mods]]
77
modId="projectred-illumination"

src/integration/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
modLoader="javafml"
22
loaderVersion="[28,)"
33
issueTrackerURL="https://github.com/MrTJP/ProjectRed"
4-
license="RPSL"
4+
license="MIT"
55

66
[[mods]]
77
modId="projectred-integration"

src/transmission/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
modLoader="javafml"
22
loaderVersion="[28,)"
33
issueTrackerURL="https://github.com/MrTJP/ProjectRed"
4-
license="RPSL"
4+
license="MIT"
55

66
[[mods]]
77
modId="projectred-transmission"

0 commit comments

Comments
 (0)