summaryrefslogtreecommitdiff
path: root/src/unittests
diff options
context:
space:
mode:
Diffstat (limited to 'src/unittests')
-rw-r--r--src/unittests/configuration.cc3
-rw-r--r--src/unittests/endian.cc3
-rw-r--r--src/unittests/enums/enums.cc3
-rw-r--r--src/unittests/enums/render/mockdrawtype.h3
-rw-r--r--src/unittests/fs/files.cc3
-rw-r--r--src/unittests/fs/virtfs/throw.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_basic.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_enumerate.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_exists.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_getrealdir.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_mountdir1.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_mountdir2.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_mountzip1.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_mountzip2.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs1_unmount.cc3
-rw-r--r--src/unittests/fs/virtfs/virtfs2.cc3
-rw-r--r--src/unittests/fs/virtfs/zip.cc3
-rw-r--r--src/unittests/gui/fonts/textchunklist.cc3
-rw-r--r--src/unittests/gui/widgets/browserbox.cc3
-rw-r--r--src/unittests/gui/widgets/staticbrowserbox.cc3
-rw-r--r--src/unittests/gui/windowmanager.cc3
-rw-r--r--src/unittests/integrity.cc3
-rw-r--r--src/unittests/render/mockdrawitem.h3
-rw-r--r--src/unittests/render/mockgraphics.cc3
-rw-r--r--src/unittests/render/mockgraphics.h3
-rw-r--r--src/unittests/resources/dye/dye.cc3
-rw-r--r--src/unittests/resources/dye/dyepalette.cc3
-rw-r--r--src/unittests/resources/map/maplayer/draw.cc3
-rw-r--r--src/unittests/resources/map/maplayer/drawfringenormal.cc3
-rw-r--r--src/unittests/resources/map/maplayer/drawfringesimple.cc3
-rw-r--r--src/unittests/resources/map/maplayer/drawspeciallayer1.cc3
-rw-r--r--src/unittests/resources/map/maplayer/drawspeciallayer2.cc3
-rw-r--r--src/unittests/resources/map/maplayer/getemptytiledrawwidth.cc3
-rw-r--r--src/unittests/resources/map/maplayer/gettiledrawwidth.cc3
-rw-r--r--src/unittests/resources/map/maplayer/updatecache.cc3
-rw-r--r--src/unittests/resources/map/maplayer/updateconditiontiles.cc3
-rw-r--r--src/unittests/resources/map/speciallayer.cc3
-rw-r--r--src/unittests/resources/mstack.cc3
-rw-r--r--src/unittests/resources/resourcemanager/resourcemanager.cc3
-rw-r--r--src/unittests/resources/sdlimagehelper.cc3
-rw-r--r--src/unittests/resources/sprite/animatedsprite.cc3
-rw-r--r--src/unittests/sdl.cc3
-rw-r--r--src/unittests/unittests.h3
-rw-r--r--src/unittests/utils/chatutils.cc3
-rw-r--r--src/unittests/utils/checkutils.cc3
-rw-r--r--src/unittests/utils/dumplibs.cc3
-rw-r--r--src/unittests/utils/itemxmlutils.cc3
-rw-r--r--src/unittests/utils/langs.cc3
-rw-r--r--src/unittests/utils/mathutils.cc3
-rw-r--r--src/unittests/utils/parameters.cc3
-rw-r--r--src/unittests/utils/stringutils.cc3
-rw-r--r--src/unittests/utils/timer.cc3
-rw-r--r--src/unittests/utils/translation/poparser.cc3
-rw-r--r--src/unittests/utils/xml.cc3
55 files changed, 110 insertions, 55 deletions
diff --git a/src/unittests/configuration.cc b/src/unittests/configuration.cc
index 438d93f4c..56f10d1f6 100644
--- a/src/unittests/configuration.cc
+++ b/src/unittests/configuration.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/endian.cc b/src/unittests/endian.cc
index 1892f39da..a8c7f95d4 100644
--- a/src/unittests/endian.cc
+++ b/src/unittests/endian.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/enums/enums.cc b/src/unittests/enums/enums.cc
index 8ae7884e1..e5e1ac481 100644
--- a/src/unittests/enums/enums.cc
+++ b/src/unittests/enums/enums.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2015-2019 The ManaPlus Developers
+ * Copyright (C) 2015-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/enums/render/mockdrawtype.h b/src/unittests/enums/render/mockdrawtype.h
index fa6d6b0dd..e4534037e 100644
--- a/src/unittests/enums/render/mockdrawtype.h
+++ b/src/unittests/enums/render/mockdrawtype.h
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2017-2019 The ManaPlus Developers
+ * Copyright (C) 2017-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/files.cc b/src/unittests/fs/files.cc
index d46749bcb..79f9910b8 100644
--- a/src/unittests/fs/files.cc
+++ b/src/unittests/fs/files.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/throw.cc b/src/unittests/fs/virtfs/throw.cc
index 00f36ade3..64a6a22f1 100644
--- a/src/unittests/fs/virtfs/throw.cc
+++ b/src/unittests/fs/virtfs/throw.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs.cc b/src/unittests/fs/virtfs/virtfs.cc
index 473dcf4f4..c516ea823 100644
--- a/src/unittests/fs/virtfs/virtfs.cc
+++ b/src/unittests/fs/virtfs/virtfs.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_basic.cc b/src/unittests/fs/virtfs/virtfs1_basic.cc
index 7571a8214..78ea43698 100644
--- a/src/unittests/fs/virtfs/virtfs1_basic.cc
+++ b/src/unittests/fs/virtfs/virtfs1_basic.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_enumerate.cc b/src/unittests/fs/virtfs/virtfs1_enumerate.cc
index a5f8c1ce6..c4e54d7c9 100644
--- a/src/unittests/fs/virtfs/virtfs1_enumerate.cc
+++ b/src/unittests/fs/virtfs/virtfs1_enumerate.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_exists.cc b/src/unittests/fs/virtfs/virtfs1_exists.cc
index 9f1c670eb..31b42b689 100644
--- a/src/unittests/fs/virtfs/virtfs1_exists.cc
+++ b/src/unittests/fs/virtfs/virtfs1_exists.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_getrealdir.cc b/src/unittests/fs/virtfs/virtfs1_getrealdir.cc
index d0366a3a2..3229cc72e 100644
--- a/src/unittests/fs/virtfs/virtfs1_getrealdir.cc
+++ b/src/unittests/fs/virtfs/virtfs1_getrealdir.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_mountdir1.cc b/src/unittests/fs/virtfs/virtfs1_mountdir1.cc
index 1e073c406..26f32fae0 100644
--- a/src/unittests/fs/virtfs/virtfs1_mountdir1.cc
+++ b/src/unittests/fs/virtfs/virtfs1_mountdir1.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_mountdir2.cc b/src/unittests/fs/virtfs/virtfs1_mountdir2.cc
index 4164bcc98..0c0538178 100644
--- a/src/unittests/fs/virtfs/virtfs1_mountdir2.cc
+++ b/src/unittests/fs/virtfs/virtfs1_mountdir2.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_mountzip1.cc b/src/unittests/fs/virtfs/virtfs1_mountzip1.cc
index d2580b680..2e1deda06 100644
--- a/src/unittests/fs/virtfs/virtfs1_mountzip1.cc
+++ b/src/unittests/fs/virtfs/virtfs1_mountzip1.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_mountzip2.cc b/src/unittests/fs/virtfs/virtfs1_mountzip2.cc
index 899219390..d583c2a8d 100644
--- a/src/unittests/fs/virtfs/virtfs1_mountzip2.cc
+++ b/src/unittests/fs/virtfs/virtfs1_mountzip2.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs1_unmount.cc b/src/unittests/fs/virtfs/virtfs1_unmount.cc
index ecc08caff..573b4690d 100644
--- a/src/unittests/fs/virtfs/virtfs1_unmount.cc
+++ b/src/unittests/fs/virtfs/virtfs1_unmount.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/virtfs2.cc b/src/unittests/fs/virtfs/virtfs2.cc
index c28d6a14c..759cb48cc 100644
--- a/src/unittests/fs/virtfs/virtfs2.cc
+++ b/src/unittests/fs/virtfs/virtfs2.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/fs/virtfs/zip.cc b/src/unittests/fs/virtfs/zip.cc
index 2699a68d7..4db5acdb5 100644
--- a/src/unittests/fs/virtfs/zip.cc
+++ b/src/unittests/fs/virtfs/zip.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2017-2019 The ManaPlus Developers
+ * Copyright (C) 2017-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/gui/fonts/textchunklist.cc b/src/unittests/gui/fonts/textchunklist.cc
index 4b4ed3d0d..3f365578e 100644
--- a/src/unittests/gui/fonts/textchunklist.cc
+++ b/src/unittests/gui/fonts/textchunklist.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/gui/widgets/browserbox.cc b/src/unittests/gui/widgets/browserbox.cc
index 737cf547c..e87ff9786 100644
--- a/src/unittests/gui/widgets/browserbox.cc
+++ b/src/unittests/gui/widgets/browserbox.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2012-2019 The ManaPlus Developers
+ * Copyright (C) 2012-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/gui/widgets/staticbrowserbox.cc b/src/unittests/gui/widgets/staticbrowserbox.cc
index 4efd3f87c..a598edbde 100644
--- a/src/unittests/gui/widgets/staticbrowserbox.cc
+++ b/src/unittests/gui/widgets/staticbrowserbox.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2012-2019 The ManaPlus Developers
+ * Copyright (C) 2012-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/gui/windowmanager.cc b/src/unittests/gui/windowmanager.cc
index 166ef964f..394b78cb9 100644
--- a/src/unittests/gui/windowmanager.cc
+++ b/src/unittests/gui/windowmanager.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/integrity.cc b/src/unittests/integrity.cc
index 3d370b36d..a2d07f4a5 100644
--- a/src/unittests/integrity.cc
+++ b/src/unittests/integrity.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/render/mockdrawitem.h b/src/unittests/render/mockdrawitem.h
index 1e4e615d5..77b1adf81 100644
--- a/src/unittests/render/mockdrawitem.h
+++ b/src/unittests/render/mockdrawitem.h
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2017-2019 The ManaPlus Developers
+ * Copyright (C) 2017-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/render/mockgraphics.cc b/src/unittests/render/mockgraphics.cc
index d2ba71f0a..4f6501fa4 100644
--- a/src/unittests/render/mockgraphics.cc
+++ b/src/unittests/render/mockgraphics.cc
@@ -2,7 +2,8 @@
* The ManaPlus Client
* Copyright (C) 2004-2009 The Mana World Development Team
* Copyright (C) 2009-2010 The Mana Developers
- * Copyright (C) 2011-2019 The ManaPlus Developers
+ * Copyright (C) 2011-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/render/mockgraphics.h b/src/unittests/render/mockgraphics.h
index 69898c1f5..953240ffc 100644
--- a/src/unittests/render/mockgraphics.h
+++ b/src/unittests/render/mockgraphics.h
@@ -2,7 +2,8 @@
* The ManaPlus Client
* Copyright (C) 2004-2009 The Mana World Development Team
* Copyright (C) 2009-2010 The Mana Developers
- * Copyright (C) 2011-2019 The ManaPlus Developers
+ * Copyright (C) 2011-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/dye/dye.cc b/src/unittests/resources/dye/dye.cc
index 52613cd60..38c6ea8fb 100644
--- a/src/unittests/resources/dye/dye.cc
+++ b/src/unittests/resources/dye/dye.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/dye/dyepalette.cc b/src/unittests/resources/dye/dyepalette.cc
index 6318977bc..d5301ae31 100644
--- a/src/unittests/resources/dye/dyepalette.cc
+++ b/src/unittests/resources/dye/dyepalette.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/draw.cc b/src/unittests/resources/map/maplayer/draw.cc
index b4e488005..b9c3a24ce 100644
--- a/src/unittests/resources/map/maplayer/draw.cc
+++ b/src/unittests/resources/map/maplayer/draw.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/drawfringenormal.cc b/src/unittests/resources/map/maplayer/drawfringenormal.cc
index 6f68d77e7..2c0cfb4dd 100644
--- a/src/unittests/resources/map/maplayer/drawfringenormal.cc
+++ b/src/unittests/resources/map/maplayer/drawfringenormal.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/drawfringesimple.cc b/src/unittests/resources/map/maplayer/drawfringesimple.cc
index ad2c87434..64581970c 100644
--- a/src/unittests/resources/map/maplayer/drawfringesimple.cc
+++ b/src/unittests/resources/map/maplayer/drawfringesimple.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/drawspeciallayer1.cc b/src/unittests/resources/map/maplayer/drawspeciallayer1.cc
index 8e60592f7..ddee7eebf 100644
--- a/src/unittests/resources/map/maplayer/drawspeciallayer1.cc
+++ b/src/unittests/resources/map/maplayer/drawspeciallayer1.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/drawspeciallayer2.cc b/src/unittests/resources/map/maplayer/drawspeciallayer2.cc
index b40ac745b..5ce9463b9 100644
--- a/src/unittests/resources/map/maplayer/drawspeciallayer2.cc
+++ b/src/unittests/resources/map/maplayer/drawspeciallayer2.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/getemptytiledrawwidth.cc b/src/unittests/resources/map/maplayer/getemptytiledrawwidth.cc
index 9d84b6635..de355abca 100644
--- a/src/unittests/resources/map/maplayer/getemptytiledrawwidth.cc
+++ b/src/unittests/resources/map/maplayer/getemptytiledrawwidth.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/gettiledrawwidth.cc b/src/unittests/resources/map/maplayer/gettiledrawwidth.cc
index 12c24d402..4dc0802f1 100644
--- a/src/unittests/resources/map/maplayer/gettiledrawwidth.cc
+++ b/src/unittests/resources/map/maplayer/gettiledrawwidth.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/updatecache.cc b/src/unittests/resources/map/maplayer/updatecache.cc
index 41046ff98..15b21384f 100644
--- a/src/unittests/resources/map/maplayer/updatecache.cc
+++ b/src/unittests/resources/map/maplayer/updatecache.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/maplayer/updateconditiontiles.cc b/src/unittests/resources/map/maplayer/updateconditiontiles.cc
index 199563cff..c80580769 100644
--- a/src/unittests/resources/map/maplayer/updateconditiontiles.cc
+++ b/src/unittests/resources/map/maplayer/updateconditiontiles.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/map/speciallayer.cc b/src/unittests/resources/map/speciallayer.cc
index c3b1f78b8..13de6d144 100644
--- a/src/unittests/resources/map/speciallayer.cc
+++ b/src/unittests/resources/map/speciallayer.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/mstack.cc b/src/unittests/resources/mstack.cc
index ffd9326ea..36d5d5693 100644
--- a/src/unittests/resources/mstack.cc
+++ b/src/unittests/resources/mstack.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2015-2019 The ManaPlus Developers
+ * Copyright (C) 2015-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/resourcemanager/resourcemanager.cc b/src/unittests/resources/resourcemanager/resourcemanager.cc
index 39871e3c7..3411775b2 100644
--- a/src/unittests/resources/resourcemanager/resourcemanager.cc
+++ b/src/unittests/resources/resourcemanager/resourcemanager.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/sdlimagehelper.cc b/src/unittests/resources/sdlimagehelper.cc
index a115f7a8b..5a75b8fa3 100644
--- a/src/unittests/resources/sdlimagehelper.cc
+++ b/src/unittests/resources/sdlimagehelper.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2014-2019 The ManaPlus Developers
+ * Copyright (C) 2014-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/resources/sprite/animatedsprite.cc b/src/unittests/resources/sprite/animatedsprite.cc
index 1f5f6f9ef..5995a1874 100644
--- a/src/unittests/resources/sprite/animatedsprite.cc
+++ b/src/unittests/resources/sprite/animatedsprite.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/sdl.cc b/src/unittests/sdl.cc
index b9dc74299..7847a27eb 100644
--- a/src/unittests/sdl.cc
+++ b/src/unittests/sdl.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/unittests.h b/src/unittests/unittests.h
index 04c908e4e..67df3c5c4 100644
--- a/src/unittests/unittests.h
+++ b/src/unittests/unittests.h
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2017-2019 The ManaPlus Developers
+ * Copyright (C) 2017-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/chatutils.cc b/src/unittests/utils/chatutils.cc
index 5e06baaca..e85a3e45e 100644
--- a/src/unittests/utils/chatutils.cc
+++ b/src/unittests/utils/chatutils.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2012-2019 The ManaPlus Developers
+ * Copyright (C) 2012-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/checkutils.cc b/src/unittests/utils/checkutils.cc
index cef9651f9..6b9d9dc79 100644
--- a/src/unittests/utils/checkutils.cc
+++ b/src/unittests/utils/checkutils.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/dumplibs.cc b/src/unittests/utils/dumplibs.cc
index dab6fa11e..be9527a87 100644
--- a/src/unittests/utils/dumplibs.cc
+++ b/src/unittests/utils/dumplibs.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2017-2019 The ManaPlus Developers
+ * Copyright (C) 2017-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/itemxmlutils.cc b/src/unittests/utils/itemxmlutils.cc
index 8572d3ca5..c17db0d9f 100644
--- a/src/unittests/utils/itemxmlutils.cc
+++ b/src/unittests/utils/itemxmlutils.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2014-2019 The ManaPlus Developers
+ * Copyright (C) 2014-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/langs.cc b/src/unittests/utils/langs.cc
index f7f9c28d6..9d86c401d 100644
--- a/src/unittests/utils/langs.cc
+++ b/src/unittests/utils/langs.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/mathutils.cc b/src/unittests/utils/mathutils.cc
index 9adc125ef..3f36c3f0c 100644
--- a/src/unittests/utils/mathutils.cc
+++ b/src/unittests/utils/mathutils.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2013-2019 The ManaPlus Developers
+ * Copyright (C) 2013-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/parameters.cc b/src/unittests/utils/parameters.cc
index 2a6171818..975a207ed 100644
--- a/src/unittests/utils/parameters.cc
+++ b/src/unittests/utils/parameters.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2012-2019 The ManaPlus Developers
+ * Copyright (C) 2012-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/stringutils.cc b/src/unittests/utils/stringutils.cc
index cf0fb9764..b9a1d6f78 100644
--- a/src/unittests/utils/stringutils.cc
+++ b/src/unittests/utils/stringutils.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2012-2019 The ManaPlus Developers
+ * Copyright (C) 2012-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/timer.cc b/src/unittests/utils/timer.cc
index ef789b398..52f0e9252 100644
--- a/src/unittests/utils/timer.cc
+++ b/src/unittests/utils/timer.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2012-2019 The ManaPlus Developers
+ * Copyright (C) 2012-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/translation/poparser.cc b/src/unittests/utils/translation/poparser.cc
index bf5abaca4..1b4a2f366 100644
--- a/src/unittests/utils/translation/poparser.cc
+++ b/src/unittests/utils/translation/poparser.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2016-2019 The ManaPlus Developers
+ * Copyright (C) 2016-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
diff --git a/src/unittests/utils/xml.cc b/src/unittests/utils/xml.cc
index fa4bfc789..8bc75aef2 100644
--- a/src/unittests/utils/xml.cc
+++ b/src/unittests/utils/xml.cc
@@ -1,6 +1,7 @@
/*
* The ManaPlus Client
- * Copyright (C) 2014-2019 The ManaPlus Developers
+ * Copyright (C) 2014-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*