From 892f8ce0c44ecabe1b141850b02d878e2ccfbb68 Mon Sep 17 00:00:00 2001 From: tobid7 Date: Sun, 25 Jan 2026 21:12:16 +0100 Subject: [PATCH] Update License Header Text --- backends/3ds/include/pd-3ds.hpp | 3 +-- backends/3ds/include/pd-3ds/bknd-gfx.hpp | 3 +-- backends/3ds/include/pd-3ds/bknd-hid.hpp | 3 +-- .../3ds/include/pd-3ds/linearAllocator.hpp | 23 +++++++++++++++++ backends/3ds/source/bknd-gfx.cpp | 3 +-- backends/3ds/source/bknd-hid.cpp | 3 +-- backends/3ds/source/pd-3ds.cpp | 3 +-- backends/desktop/include/pd-desktop.hpp | 3 +-- .../desktop/include/pd-desktop/bknd-gfx.hpp | 3 +-- .../desktop/include/pd-desktop/bknd-hid.hpp | 3 +-- backends/desktop/source/bknd-gfx.cpp | 3 +-- backends/desktop/source/bknd-hid.cpp | 3 +-- backends/desktop/source/pd-desktop.cpp | 3 +-- include/palladium | 23 +++++++++++++++++ include/pd/core/bit_util.hpp | 3 +-- include/pd/core/color.hpp | 2 +- include/pd/core/common.hpp | 2 +- include/pd/core/core.hpp | 2 +- include/pd/core/fnv.hpp | 2 +- include/pd/core/fquat.hpp | 2 +- include/pd/core/io.hpp | 2 +- include/pd/core/mat.hpp | 3 +-- include/pd/core/strings.hpp | 2 +- include/pd/core/timer.hpp | 2 +- include/pd/core/timetrace.hpp | 2 +- include/pd/core/tween.hpp | 2 +- include/pd/core/vec.hpp | 3 +-- include/pd/core/vec2.hpp | 2 +- include/pd/core/vec3.hpp | 2 +- include/pd/core/vec4.hpp | 2 +- include/pd/drivers/drivers.hpp | 2 +- include/pd/drivers/gfx.hpp | 2 +- include/pd/drivers/hid.hpp | 2 +- include/pd/drivers/os.hpp | 2 +- include/pd/drivers/snd.hpp | 2 +- include/pd/image/image.hpp | 3 +-- include/pd/image/img_blur.hpp | 3 +-- include/pd/image/img_convert.hpp | 3 +-- include/pd/lithium/command.hpp | 2 +- include/pd/lithium/drawlist.hpp | 3 +-- include/pd/lithium/font.hpp | 3 +-- include/pd/lithium/fonts.hpp | 2 +- include/pd/lithium/lithium.hpp | 3 +-- include/pd/lithium/rect.hpp | 2 +- include/pd/lithium/renderer.hpp | 3 +-- include/pd/lithium/texture.hpp | 2 +- include/pd/lithium/vertex.hpp | 2 +- include/pd/ui7/container/button.hpp | 2 +- include/pd/ui7/container/checkbox.hpp | 2 +- include/pd/ui7/container/coloredit.hpp | 2 +- include/pd/ui7/container/container.hpp | 2 +- include/pd/ui7/container/dragdata.hpp | 2 +- include/pd/ui7/container/dynobj.hpp | 3 +-- include/pd/ui7/container/image.hpp | 2 +- include/pd/ui7/container/label.hpp | 2 +- include/pd/ui7/container/slider.hpp | 2 +- include/pd/ui7/containers.hpp | 2 +- include/pd/ui7/flags.hpp | 2 +- include/pd/ui7/id.hpp | 2 +- include/pd/ui7/input_api.hpp | 3 +-- include/pd/ui7/io.hpp | 3 +-- include/pd/ui7/layout.hpp | 3 +-- include/pd/ui7/menu.hpp | 3 +-- include/pd/ui7/theme.hpp | 2 +- include/pd/ui7/ui7.hpp | 3 +-- include/pd/ui7/viewport.hpp | 3 +-- source/core/bit_util.cpp | 2 +- source/core/color.cpp | 3 +-- source/core/io.cpp | 2 +- source/core/mat.cpp | 3 +-- source/core/strings.cpp | 2 +- source/core/timer.cpp | 3 +-- source/core/timetrace.cpp | 2 +- source/drivers/gfx.cpp | 3 +-- source/drivers/hid.cpp | 23 +++++++++++++++++ source/drivers/os.cpp | 2 +- source/external/stb.cpp | 23 +++++++++++++++++ source/image/image.cpp | 3 +-- source/image/img_blur.cpp | 3 +-- source/image/img_convert.cpp | 2 +- source/lithium/command.cpp | 23 +++++++++++++++++ source/lithium/drawlist.cpp | 3 +-- source/lithium/font.cpp | 3 +-- source/lithium/fonts.cpp | 2 +- source/lithium/renderer.cpp | 3 +-- source/ui7/container/button.cpp | 2 +- source/ui7/container/checkbox.cpp | 2 +- source/ui7/container/coloredit.cpp | 2 +- source/ui7/container/container.cpp | 2 +- source/ui7/container/dragdata.cpp | 2 +- source/ui7/container/dynobj.cpp | 3 +-- source/ui7/container/image.cpp | 2 +- source/ui7/container/label.cpp | 2 +- source/ui7/container/slider.cpp | 2 +- source/ui7/io.cpp | 2 +- source/ui7/layout.cpp | 2 +- source/ui7/menu.cpp | 3 +-- source/ui7/theme.cpp | 2 +- source/ui7/ui7.cpp | 2 +- test/source/main.cpp | 23 +++++++++++++++++ tools/lazyvec/include/lazyvec.hpp | 23 +++++++++++++++++ tools/lazyvec/source/lazyconstructors.cpp | 23 +++++++++++++++++ tools/lazyvec/source/lazyfuncs.cpp | 23 +++++++++++++++++ tools/lazyvec/source/lazyoperation.cpp | 23 +++++++++++++++++ tools/lazyvec/source/lazyops.cpp | 23 +++++++++++++++++ tools/lazyvec/source/lazyswap.cpp | 23 +++++++++++++++++ tools/lazyvec/source/lazytemplate.cpp | 25 ++++++++++++++++++- tools/lazyvec/source/main.cpp | 2 +- tools/pdfm/source/main.cpp | 6 ++--- tools/pdlm/source/main.cpp | 2 +- tools/ppam/source/main.cpp | 4 +-- 111 files changed, 401 insertions(+), 142 deletions(-) diff --git a/backends/3ds/include/pd-3ds.hpp b/backends/3ds/include/pd-3ds.hpp index 9ffd6d7..2ff42ab 100755 --- a/backends/3ds/include/pd-3ds.hpp +++ b/backends/3ds/include/pd-3ds.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/3ds/include/pd-3ds/bknd-gfx.hpp b/backends/3ds/include/pd-3ds/bknd-gfx.hpp index 0af07a8..ea8d330 100755 --- a/backends/3ds/include/pd-3ds/bknd-gfx.hpp +++ b/backends/3ds/include/pd-3ds/bknd-gfx.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/3ds/include/pd-3ds/bknd-hid.hpp b/backends/3ds/include/pd-3ds/bknd-hid.hpp index ee8077f..057ed2c 100755 --- a/backends/3ds/include/pd-3ds/bknd-hid.hpp +++ b/backends/3ds/include/pd-3ds/bknd-hid.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/3ds/include/pd-3ds/linearAllocator.hpp b/backends/3ds/include/pd-3ds/linearAllocator.hpp index 887f335..d83ec6a 100644 --- a/backends/3ds/include/pd-3ds/linearAllocator.hpp +++ b/backends/3ds/include/pd-3ds/linearAllocator.hpp @@ -1,5 +1,28 @@ #pragma once +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include <3ds.h> #include diff --git a/backends/3ds/source/bknd-gfx.cpp b/backends/3ds/source/bknd-gfx.cpp index 01b60d8..b7eed35 100755 --- a/backends/3ds/source/bknd-gfx.cpp +++ b/backends/3ds/source/bknd-gfx.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/3ds/source/bknd-hid.cpp b/backends/3ds/source/bknd-hid.cpp index 73d06f0..6f27fb3 100755 --- a/backends/3ds/source/bknd-hid.cpp +++ b/backends/3ds/source/bknd-hid.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/3ds/source/pd-3ds.cpp b/backends/3ds/source/pd-3ds.cpp index 419883f..4097e1c 100755 --- a/backends/3ds/source/pd-3ds.cpp +++ b/backends/3ds/source/pd-3ds.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/desktop/include/pd-desktop.hpp b/backends/desktop/include/pd-desktop.hpp index 10c7010..0efeca6 100755 --- a/backends/desktop/include/pd-desktop.hpp +++ b/backends/desktop/include/pd-desktop.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/desktop/include/pd-desktop/bknd-gfx.hpp b/backends/desktop/include/pd-desktop/bknd-gfx.hpp index 8364f9b..a41f7b1 100755 --- a/backends/desktop/include/pd-desktop/bknd-gfx.hpp +++ b/backends/desktop/include/pd-desktop/bknd-gfx.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/desktop/include/pd-desktop/bknd-hid.hpp b/backends/desktop/include/pd-desktop/bknd-hid.hpp index 85dc3fc..67f3f16 100755 --- a/backends/desktop/include/pd-desktop/bknd-hid.hpp +++ b/backends/desktop/include/pd-desktop/bknd-hid.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/desktop/source/bknd-gfx.cpp b/backends/desktop/source/bknd-gfx.cpp index 176167a..ecbd163 100755 --- a/backends/desktop/source/bknd-gfx.cpp +++ b/backends/desktop/source/bknd-gfx.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/desktop/source/bknd-hid.cpp b/backends/desktop/source/bknd-hid.cpp index 1e392d1..95d7852 100755 --- a/backends/desktop/source/bknd-hid.cpp +++ b/backends/desktop/source/bknd-hid.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backends/desktop/source/pd-desktop.cpp b/backends/desktop/source/pd-desktop.cpp index ff01a7f..743102a 100755 --- a/backends/desktop/source/pd-desktop.cpp +++ b/backends/desktop/source/pd-desktop.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/palladium b/include/palladium index 8f1b876..dc33e5b 100755 --- a/include/palladium +++ b/include/palladium @@ -1,5 +1,28 @@ #pragma once +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include #include #include diff --git a/include/pd/core/bit_util.hpp b/include/pd/core/bit_util.hpp index b46e2d5..7b2f253 100755 --- a/include/pd/core/bit_util.hpp +++ b/include/pd/core/bit_util.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/color.hpp b/include/pd/core/color.hpp index c123b5d..d57c249 100755 --- a/include/pd/core/color.hpp +++ b/include/pd/core/color.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/common.hpp b/include/pd/core/common.hpp index d88fc2c..4f26668 100755 --- a/include/pd/core/common.hpp +++ b/include/pd/core/common.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/core.hpp b/include/pd/core/core.hpp index e475b48..f7be474 100755 --- a/include/pd/core/core.hpp +++ b/include/pd/core/core.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/fnv.hpp b/include/pd/core/fnv.hpp index 57b858f..a3278ad 100644 --- a/include/pd/core/fnv.hpp +++ b/include/pd/core/fnv.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/fquat.hpp b/include/pd/core/fquat.hpp index 033e1bc..2d77995 100644 --- a/include/pd/core/fquat.hpp +++ b/include/pd/core/fquat.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/io.hpp b/include/pd/core/io.hpp index 8ab13a8..ba34909 100755 --- a/include/pd/core/io.hpp +++ b/include/pd/core/io.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/mat.hpp b/include/pd/core/mat.hpp index 8624794..7340db1 100755 --- a/include/pd/core/mat.hpp +++ b/include/pd/core/mat.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/strings.hpp b/include/pd/core/strings.hpp index 7018227..226233e 100644 --- a/include/pd/core/strings.hpp +++ b/include/pd/core/strings.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/timer.hpp b/include/pd/core/timer.hpp index 66509b5..6054da9 100755 --- a/include/pd/core/timer.hpp +++ b/include/pd/core/timer.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/timetrace.hpp b/include/pd/core/timetrace.hpp index af13e20..5ea3b1a 100644 --- a/include/pd/core/timetrace.hpp +++ b/include/pd/core/timetrace.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/tween.hpp b/include/pd/core/tween.hpp index f9421a7..aa29b74 100755 --- a/include/pd/core/tween.hpp +++ b/include/pd/core/tween.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/vec.hpp b/include/pd/core/vec.hpp index 1f068bc..f840b63 100755 --- a/include/pd/core/vec.hpp +++ b/include/pd/core/vec.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/vec2.hpp b/include/pd/core/vec2.hpp index fbb3199..9a3ace5 100755 --- a/include/pd/core/vec2.hpp +++ b/include/pd/core/vec2.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/vec3.hpp b/include/pd/core/vec3.hpp index 8d6e245..c945cde 100755 --- a/include/pd/core/vec3.hpp +++ b/include/pd/core/vec3.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/core/vec4.hpp b/include/pd/core/vec4.hpp index dd31ae0..09c5df9 100755 --- a/include/pd/core/vec4.hpp +++ b/include/pd/core/vec4.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/drivers/drivers.hpp b/include/pd/drivers/drivers.hpp index d83f809..195b603 100755 --- a/include/pd/drivers/drivers.hpp +++ b/include/pd/drivers/drivers.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/drivers/gfx.hpp b/include/pd/drivers/gfx.hpp index 817d4da..d123739 100755 --- a/include/pd/drivers/gfx.hpp +++ b/include/pd/drivers/gfx.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/drivers/hid.hpp b/include/pd/drivers/hid.hpp index 4366e37..9315d0e 100755 --- a/include/pd/drivers/hid.hpp +++ b/include/pd/drivers/hid.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/drivers/os.hpp b/include/pd/drivers/os.hpp index aea24f5..26df548 100755 --- a/include/pd/drivers/os.hpp +++ b/include/pd/drivers/os.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/drivers/snd.hpp b/include/pd/drivers/snd.hpp index 8a0a103..b04a170 100644 --- a/include/pd/drivers/snd.hpp +++ b/include/pd/drivers/snd.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/image/image.hpp b/include/pd/image/image.hpp index 382cc8f..25d48d8 100755 --- a/include/pd/image/image.hpp +++ b/include/pd/image/image.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/image/img_blur.hpp b/include/pd/image/img_blur.hpp index 56ba1b0..aa0a109 100644 --- a/include/pd/image/img_blur.hpp +++ b/include/pd/image/img_blur.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/image/img_convert.hpp b/include/pd/image/img_convert.hpp index d02fcd6..b8601eb 100644 --- a/include/pd/image/img_convert.hpp +++ b/include/pd/image/img_convert.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/command.hpp b/include/pd/lithium/command.hpp index d7663e5..eadeb1a 100644 --- a/include/pd/lithium/command.hpp +++ b/include/pd/lithium/command.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/drawlist.hpp b/include/pd/lithium/drawlist.hpp index abce21b..df81a67 100755 --- a/include/pd/lithium/drawlist.hpp +++ b/include/pd/lithium/drawlist.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/font.hpp b/include/pd/lithium/font.hpp index 369ee79..480c553 100644 --- a/include/pd/lithium/font.hpp +++ b/include/pd/lithium/font.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/fonts.hpp b/include/pd/lithium/fonts.hpp index 1f866b3..ea99a50 100644 --- a/include/pd/lithium/fonts.hpp +++ b/include/pd/lithium/fonts.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/lithium.hpp b/include/pd/lithium/lithium.hpp index 99ff498..aa182e1 100755 --- a/include/pd/lithium/lithium.hpp +++ b/include/pd/lithium/lithium.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/rect.hpp b/include/pd/lithium/rect.hpp index 61aacfe..b4953a2 100755 --- a/include/pd/lithium/rect.hpp +++ b/include/pd/lithium/rect.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/renderer.hpp b/include/pd/lithium/renderer.hpp index 522f846..64b7d2a 100644 --- a/include/pd/lithium/renderer.hpp +++ b/include/pd/lithium/renderer.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/texture.hpp b/include/pd/lithium/texture.hpp index 9822c25..bcde309 100755 --- a/include/pd/lithium/texture.hpp +++ b/include/pd/lithium/texture.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/lithium/vertex.hpp b/include/pd/lithium/vertex.hpp index 73ad257..ca7fa8f 100755 --- a/include/pd/lithium/vertex.hpp +++ b/include/pd/lithium/vertex.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/button.hpp b/include/pd/ui7/container/button.hpp index c6dc579..e2cfbca 100755 --- a/include/pd/ui7/container/button.hpp +++ b/include/pd/ui7/container/button.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/checkbox.hpp b/include/pd/ui7/container/checkbox.hpp index 6cb68ba..8d65cd6 100755 --- a/include/pd/ui7/container/checkbox.hpp +++ b/include/pd/ui7/container/checkbox.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/coloredit.hpp b/include/pd/ui7/container/coloredit.hpp index 10524b6..56869d1 100755 --- a/include/pd/ui7/container/coloredit.hpp +++ b/include/pd/ui7/container/coloredit.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/container.hpp b/include/pd/ui7/container/container.hpp index b356e2c..421e21e 100644 --- a/include/pd/ui7/container/container.hpp +++ b/include/pd/ui7/container/container.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/dragdata.hpp b/include/pd/ui7/container/dragdata.hpp index 9177fdb..c5997db 100755 --- a/include/pd/ui7/container/dragdata.hpp +++ b/include/pd/ui7/container/dragdata.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/dynobj.hpp b/include/pd/ui7/container/dynobj.hpp index e202b83..36437d2 100755 --- a/include/pd/ui7/container/dynobj.hpp +++ b/include/pd/ui7/container/dynobj.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/image.hpp b/include/pd/ui7/container/image.hpp index 49780a9..3550ffd 100755 --- a/include/pd/ui7/container/image.hpp +++ b/include/pd/ui7/container/image.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/label.hpp b/include/pd/ui7/container/label.hpp index 46ea9e0..b0dbb4c 100755 --- a/include/pd/ui7/container/label.hpp +++ b/include/pd/ui7/container/label.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/container/slider.hpp b/include/pd/ui7/container/slider.hpp index 2fb032d..5b0fa67 100644 --- a/include/pd/ui7/container/slider.hpp +++ b/include/pd/ui7/container/slider.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/containers.hpp b/include/pd/ui7/containers.hpp index 59911d1..026b9a4 100755 --- a/include/pd/ui7/containers.hpp +++ b/include/pd/ui7/containers.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/flags.hpp b/include/pd/ui7/flags.hpp index c273943..9941514 100755 --- a/include/pd/ui7/flags.hpp +++ b/include/pd/ui7/flags.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/id.hpp b/include/pd/ui7/id.hpp index 59f5f42..c10c8bb 100755 --- a/include/pd/ui7/id.hpp +++ b/include/pd/ui7/id.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/input_api.hpp b/include/pd/ui7/input_api.hpp index 0b5abc6..6f976ab 100644 --- a/include/pd/ui7/input_api.hpp +++ b/include/pd/ui7/input_api.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/io.hpp b/include/pd/ui7/io.hpp index d741aef..50b4b2e 100644 --- a/include/pd/ui7/io.hpp +++ b/include/pd/ui7/io.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/layout.hpp b/include/pd/ui7/layout.hpp index bdeed8b..3298485 100644 --- a/include/pd/ui7/layout.hpp +++ b/include/pd/ui7/layout.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/menu.hpp b/include/pd/ui7/menu.hpp index f29a474..50324e4 100644 --- a/include/pd/ui7/menu.hpp +++ b/include/pd/ui7/menu.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/theme.hpp b/include/pd/ui7/theme.hpp index 867d8c7..c82bf97 100755 --- a/include/pd/ui7/theme.hpp +++ b/include/pd/ui7/theme.hpp @@ -2,7 +2,7 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/ui7.hpp b/include/pd/ui7/ui7.hpp index aff0318..1608191 100644 --- a/include/pd/ui7/ui7.hpp +++ b/include/pd/ui7/ui7.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/include/pd/ui7/viewport.hpp b/include/pd/ui7/viewport.hpp index b27a6ef..5973312 100755 --- a/include/pd/ui7/viewport.hpp +++ b/include/pd/ui7/viewport.hpp @@ -2,8 +2,7 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/core/bit_util.cpp b/source/core/bit_util.cpp index e2e8226..96b0570 100755 --- a/source/core/bit_util.cpp +++ b/source/core/bit_util.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/core/color.cpp b/source/core/color.cpp index 4f90472..fab5fa5 100755 --- a/source/core/color.cpp +++ b/source/core/color.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/core/io.cpp b/source/core/io.cpp index 9e7b8ed..030c90b 100755 --- a/source/core/io.cpp +++ b/source/core/io.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/core/mat.cpp b/source/core/mat.cpp index 0d92c53..c2238b9 100644 --- a/source/core/mat.cpp +++ b/source/core/mat.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/core/strings.cpp b/source/core/strings.cpp index a4c70a4..bbbe4c5 100644 --- a/source/core/strings.cpp +++ b/source/core/strings.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/core/timer.cpp b/source/core/timer.cpp index c978425..847586d 100755 --- a/source/core/timer.cpp +++ b/source/core/timer.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/core/timetrace.cpp b/source/core/timetrace.cpp index 4430df1..9ba4e4e 100755 --- a/source/core/timetrace.cpp +++ b/source/core/timetrace.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/drivers/gfx.cpp b/source/drivers/gfx.cpp index 451633f..742820b 100755 --- a/source/drivers/gfx.cpp +++ b/source/drivers/gfx.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/drivers/hid.cpp b/source/drivers/hid.cpp index b9ddd1d..5c3fdf9 100755 --- a/source/drivers/hid.cpp +++ b/source/drivers/hid.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include namespace PD { diff --git a/source/drivers/os.cpp b/source/drivers/os.cpp index 0ff40ca..b0b9683 100755 --- a/source/drivers/os.cpp +++ b/source/drivers/os.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/external/stb.cpp b/source/external/stb.cpp index af4e67d..e7b2bf2 100755 --- a/source/external/stb.cpp +++ b/source/external/stb.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #define PD_IMAGE_IMPLEMENTATION #include #define PD_TRUETYPE_IMPLEMENTATION diff --git a/source/image/image.cpp b/source/image/image.cpp index ac145d8..eaa0a2b 100644 --- a/source/image/image.cpp +++ b/source/image/image.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/image/img_blur.cpp b/source/image/img_blur.cpp index a5a9494..d28bf50 100644 --- a/source/image/img_blur.cpp +++ b/source/image/img_blur.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/image/img_convert.cpp b/source/image/img_convert.cpp index 487b21c..f4acce1 100644 --- a/source/image/img_convert.cpp +++ b/source/image/img_convert.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/lithium/command.cpp b/source/lithium/command.cpp index b792ca3..6d98ec6 100644 --- a/source/lithium/command.cpp +++ b/source/lithium/command.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include PD_API PD::Li::Command::Ref PD::Li::CmdPool::NewCmd() { diff --git a/source/lithium/drawlist.cpp b/source/lithium/drawlist.cpp index c53d761..fa99899 100644 --- a/source/lithium/drawlist.cpp +++ b/source/lithium/drawlist.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/lithium/font.cpp b/source/lithium/font.cpp index 22e4cd1..5a8a9b7 100644 --- a/source/lithium/font.cpp +++ b/source/lithium/font.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/lithium/fonts.cpp b/source/lithium/fonts.cpp index 62aa7ca..a83738e 100644 --- a/source/lithium/fonts.cpp +++ b/source/lithium/fonts.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/lithium/renderer.cpp b/source/lithium/renderer.cpp index b0a231e..1b9eb8f 100644 --- a/source/lithium/renderer.cpp +++ b/source/lithium/renderer.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/button.cpp b/source/ui7/container/button.cpp index f8e446a..02bb9c8 100755 --- a/source/ui7/container/button.cpp +++ b/source/ui7/container/button.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/checkbox.cpp b/source/ui7/container/checkbox.cpp index 010b97e..0a9d630 100755 --- a/source/ui7/container/checkbox.cpp +++ b/source/ui7/container/checkbox.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/coloredit.cpp b/source/ui7/container/coloredit.cpp index 7df3c31..db5d831 100755 --- a/source/ui7/container/coloredit.cpp +++ b/source/ui7/container/coloredit.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/container.cpp b/source/ui7/container/container.cpp index e104328..549ea8f 100755 --- a/source/ui7/container/container.cpp +++ b/source/ui7/container/container.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/dragdata.cpp b/source/ui7/container/dragdata.cpp index 853f8a6..7e041f5 100755 --- a/source/ui7/container/dragdata.cpp +++ b/source/ui7/container/dragdata.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/dynobj.cpp b/source/ui7/container/dynobj.cpp index cbb5439..96863e0 100755 --- a/source/ui7/container/dynobj.cpp +++ b/source/ui7/container/dynobj.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/image.cpp b/source/ui7/container/image.cpp index 22413c3..662401c 100755 --- a/source/ui7/container/image.cpp +++ b/source/ui7/container/image.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/label.cpp b/source/ui7/container/label.cpp index 99759c4..9cf9e75 100755 --- a/source/ui7/container/label.cpp +++ b/source/ui7/container/label.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/container/slider.cpp b/source/ui7/container/slider.cpp index 42d8005..646919d 100644 --- a/source/ui7/container/slider.cpp +++ b/source/ui7/container/slider.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/io.cpp b/source/ui7/io.cpp index abaaef3..e9ac341 100755 --- a/source/ui7/io.cpp +++ b/source/ui7/io.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/layout.cpp b/source/ui7/layout.cpp index 1885b67..6391fc1 100644 --- a/source/ui7/layout.cpp +++ b/source/ui7/layout.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/menu.cpp b/source/ui7/menu.cpp index 9740a3a..89dbf17 100755 --- a/source/ui7/menu.cpp +++ b/source/ui7/menu.cpp @@ -1,7 +1,6 @@ /* MIT License - -Copyright (c) 2024 - 2025 tobid7 +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/theme.cpp b/source/ui7/theme.cpp index 8da3d95..0999d7a 100755 --- a/source/ui7/theme.cpp +++ b/source/ui7/theme.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/source/ui7/ui7.cpp b/source/ui7/ui7.cpp index 96a2d77..aa803c7 100644 --- a/source/ui7/ui7.cpp +++ b/source/ui7/ui7.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/test/source/main.cpp b/test/source/main.cpp index fc4fdaf..ad1c60f 100755 --- a/test/source/main.cpp +++ b/test/source/main.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include #ifdef __3DS__ #include diff --git a/tools/lazyvec/include/lazyvec.hpp b/tools/lazyvec/include/lazyvec.hpp index 900b066..14b71fb 100644 --- a/tools/lazyvec/include/lazyvec.hpp +++ b/tools/lazyvec/include/lazyvec.hpp @@ -1,5 +1,28 @@ #pragma once +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + /** Header for all source file functions */ #include // yes this tool requires at least c++ 20 diff --git a/tools/lazyvec/source/lazyconstructors.cpp b/tools/lazyvec/source/lazyconstructors.cpp index 110ab81..cea6c79 100644 --- a/tools/lazyvec/source/lazyconstructors.cpp +++ b/tools/lazyvec/source/lazyconstructors.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include constexpr std::string_view _construct = R"text( diff --git a/tools/lazyvec/source/lazyfuncs.cpp b/tools/lazyvec/source/lazyfuncs.cpp index 9da6a49..f9dcef9 100644 --- a/tools/lazyvec/source/lazyfuncs.cpp +++ b/tools/lazyvec/source/lazyfuncs.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include constexpr std::string_view _funcs = R"text( diff --git a/tools/lazyvec/source/lazyoperation.cpp b/tools/lazyvec/source/lazyoperation.cpp index dbf9bfb..6caea47 100644 --- a/tools/lazyvec/source/lazyoperation.cpp +++ b/tools/lazyvec/source/lazyoperation.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include constexpr std::string_view _op_template = R"text( diff --git a/tools/lazyvec/source/lazyops.cpp b/tools/lazyvec/source/lazyops.cpp index 5a45530..0208951 100644 --- a/tools/lazyvec/source/lazyops.cpp +++ b/tools/lazyvec/source/lazyops.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include /** diff --git a/tools/lazyvec/source/lazyswap.cpp b/tools/lazyvec/source/lazyswap.cpp index e978c4a..ab9a505 100644 --- a/tools/lazyvec/source/lazyswap.cpp +++ b/tools/lazyvec/source/lazyswap.cpp @@ -1,3 +1,26 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include #include diff --git a/tools/lazyvec/source/lazytemplate.cpp b/tools/lazyvec/source/lazytemplate.cpp index f3b4632..579de71 100644 --- a/tools/lazyvec/source/lazytemplate.cpp +++ b/tools/lazyvec/source/lazytemplate.cpp @@ -1,10 +1,33 @@ +/* +MIT License +Copyright (c) 2024 - 2026 René Amthor (tobid7) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ + #include constexpr std::string_view _template = R"text(#pragma once /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tools/lazyvec/source/main.cpp b/tools/lazyvec/source/main.cpp index 0a6eeaf..f155905 100755 --- a/tools/lazyvec/source/main.cpp +++ b/tools/lazyvec/source/main.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tools/pdfm/source/main.cpp b/tools/pdfm/source/main.cpp index c4c3f00..8148b24 100644 --- a/tools/pdfm/source/main.cpp +++ b/tools/pdfm/source/main.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -34,7 +34,7 @@ constexpr std::string_view pdfh_text = R"(#pragma once /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -75,7 +75,7 @@ extern PD::u8 pFontsDataRaw[]; constexpr std::string_view pdfs_text = R"(/* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tools/pdlm/source/main.cpp b/tools/pdlm/source/main.cpp index d7174e3..006cbca 100755 --- a/tools/pdlm/source/main.cpp +++ b/tools/pdlm/source/main.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tools/ppam/source/main.cpp b/tools/ppam/source/main.cpp index e3ca06b..00899eb 100755 --- a/tools/ppam/source/main.cpp +++ b/tools/ppam/source/main.cpp @@ -1,6 +1,6 @@ /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -32,7 +32,7 @@ constexpr std::string_view ppa_text = R"(#pragma once /* MIT License -Copyright (c) 2024 - 2025 René Amthor (tobid7) +Copyright (c) 2024 - 2026 René Amthor (tobid7) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal