Compare commits

...

4 Commits

Author SHA1 Message Date
Daniel Saukel 82ac4c47b6 Bump latest Minecraft version 2023-09-28 19:16:32 +02:00
Daniel Saukel 9d2cf7af79 Bump year 2023-09-28 19:16:23 +02:00
Daniel Saukel 05dfd8cb03 Fix door signs 2023-09-28 19:15:33 +02:00
Daniel Saukel 276fca5988 Fix global sign creation 2023-09-28 19:12:26 +02:00
251 changed files with 341 additions and 269 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,6 +1,6 @@
## DungeonsXL Donors Addon
(C) 2020-2022 Daniel Saukel, All Rights Reserved.
(C) 2020-2023 Daniel Saukel, All Rights Reserved.
This module is a plugin with additional features made for donors.

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/
@ -9,8 +9,8 @@ import de.erethon.dungeonsxl.api.DungeonsAPI;
import de.erethon.dungeonsxl.api.sign.Rocker;
import de.erethon.dungeonsxl.api.world.InstanceWorld;
import de.erethon.dungeonsxl.player.DPermission;
import de.erethon.bedrock.misc.BlockUtil;
import de.erethon.bedrock.misc.EnumUtil;
import de.erethon.dungeonsxl.util.BlockUtilCompat;
import de.erethon.dungeonsxl.world.DGameWorld;
import de.erethon.dungeonsxxl.DungeonsXXL;
import de.erethon.dungeonsxxl.world.block.GlowingBlock;
@ -104,7 +104,7 @@ public class GlowingBlockSign extends Rocker {
}
((DGameWorld) getGameWorld()).addGameBlock(
glowingBlock = new GlowingBlock(DungeonsXXL.getInstance(), BlockUtil.getAttachedBlock(getSign().getBlock()), color, time));
glowingBlock = new GlowingBlock(DungeonsXXL.getInstance(), BlockUtilCompat.getAttachedBlock(getSign().getBlock()), color, time));
active = true;
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/
@ -10,8 +10,8 @@ import de.erethon.dungeonsxl.api.world.InstanceWorld;
import de.erethon.dungeonsxl.player.DPermission;
import de.erethon.dungeonsxl.sign.passive.InteractSign;
import de.erethon.dungeonsxl.trigger.InteractTrigger;
import de.erethon.bedrock.misc.BlockUtil;
import de.erethon.bedrock.misc.NumberUtil;
import de.erethon.dungeonsxl.util.BlockUtilCompat;
import de.erethon.dungeonsxl.world.DGameWorld;
import org.bukkit.block.Sign;
@ -54,7 +54,7 @@ public class InteractWallSign extends InteractSign {
@Override
public void initialize() {
InteractTrigger trigger = InteractTrigger.getOrCreate(NumberUtil.parseInt(getSign().getLine(1)),
BlockUtil.getAttachedBlock(getSign().getBlock()), (DGameWorld) getGameWorld());
BlockUtilCompat.getAttachedBlock(getSign().getBlock()), (DGameWorld) getGameWorld());
if (trigger != null) {
trigger.addListener(this);
addTrigger(trigger);

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Daniel Saukel
* Copyright (C) 2020-2023 Daniel Saukel
*
* All rights reserved.
*/

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2014-2022 Daniel Saukel
* Copyright (C) 2014-2023 Daniel Saukel
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012-2022 Frank Baumann
* Copyright (C) 2012-2023 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

Some files were not shown because too many files have changed in this diff Show More