Skip to content

Commit 91092fa

Browse files
committed
Update copyright
1 parent 168c9a4 commit 91092fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+987
-168
lines changed

build.gradle

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
*
4+
* This file is part of The 5zig Mod
5+
* The 5zig Mod is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* The 5zig Mod is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
17+
*/
18+
119
apply plugin: 'java'
220
apply plugin: 'maven-publish'
321

examples/basic1/core/messages/localhost.properties

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#
2+
# Copyright (c) 2019-2020 5zig Reborn
3+
#
4+
# This file is part of The 5zig Mod
5+
# The 5zig Mod is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation, either version 3 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# The 5zig Mod is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU General Public License
16+
# along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
17+
#
18+
119
# This file contains all messages that should be listened on.
220
# This is accomplished by using regex patterns. When a pattern matches a server message, the
321
# onMatch() method of all registered AbstractGameListeners will be called, together with the key

examples/basic1/lang/language_de_DE.properties

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#
2+
# Copyright (c) 2019-2020 5zig Reborn
3+
#
4+
# This file is part of The 5zig Mod
5+
# The 5zig Mod is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation, either version 3 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# The 5zig Mod is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU General Public License
16+
# along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
17+
#
18+
119
modules.item.test = Test Item
220
modules.item.test.desc = Das ist ein Test Item.
321
modules.item.test.test = Test Einstellung

examples/basic1/lang/language_en_US.properties

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#
2+
# Copyright (c) 2019-2020 5zig Reborn
3+
#
4+
# This file is part of The 5zig Mod
5+
# The 5zig Mod is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation, either version 3 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# The 5zig Mod is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU General Public License
16+
# along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
17+
#
18+
119
modules.item.test = Test Item
220
modules.item.test.desc = This is a Test Item.
321
modules.item.test.test = Test Setting

gradle/wrapper/gradle-wrapper.properties

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#
2+
# Copyright (c) 2019-2020 5zig Reborn
3+
#
4+
# This file is part of The 5zig Mod
5+
# The 5zig Mod is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation, either version 3 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# The 5zig Mod is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU General Public License
16+
# along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
17+
#
18+
119
distributionBase=GRADLE_USER_HOME
220
distributionPath=wrapper/dists
321
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip

src/main/java/eu/the5zig/mod/ModAPI.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod;

src/main/java/eu/the5zig/mod/The5zigAPI.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod;

src/main/java/eu/the5zig/mod/config/IConfigItem.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.config;

src/main/java/eu/the5zig/mod/event/AccountSwitchEvent.java

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
4+
*
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
18+
*/
19+
120
package eu.the5zig.mod.event;
221

322
/**

src/main/java/eu/the5zig/mod/event/ActionBarEvent.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.event;

src/main/java/eu/the5zig/mod/event/Cancelable.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.event;

src/main/java/eu/the5zig/mod/event/ChatEvent.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.event;

src/main/java/eu/the5zig/mod/event/ChatSendEvent.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.event;

src/main/java/eu/the5zig/mod/event/ChestSetSlotEvent.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.event;

src/main/java/eu/the5zig/mod/event/Event.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.event;

src/main/java/eu/the5zig/mod/event/EventHandler.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.event;

src/main/java/eu/the5zig/mod/event/KeyPressEvent.java

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
/*
2-
* Copyright (c) 2019 5zig
2+
* Copyright (c) 2019-2020 5zig Reborn
3+
* Copyright (c) 2015-2019 5zig
34
*
4-
* This software is released under the MIT License.
5-
* https://opensource.org/licenses/MIT
5+
* This file is part of The 5zig Mod
6+
* The 5zig Mod is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* The 5zig Mod is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with The 5zig Mod. If not, see <http://www.gnu.org/licenses/>.
618
*/
719

820
package eu.the5zig.mod.event;

0 commit comments

Comments
 (0)