From 4f68df608e3ae059ce634be65a3b3e303bfa6acd Mon Sep 17 00:00:00 2001 From: chrysn Date: Thu, 12 Sep 2024 11:19:11 +0200 Subject: [PATCH] Icons: Fix copyright text line --- .icons/app.png.license | 2 +- .icons/board.png.license | 2 +- .icons/rebuild.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.icons/app.png.license b/.icons/app.png.license index a38f152..9936472 100644 --- a/.icons/app.png.license +++ b/.icons/app.png.license @@ -1,3 +1,3 @@ SPDX-License-Identifier: CC-BY-3.0 -SPDX-License-CopyrightText: delapouite +SPDX-FileCopyrightText: delapouite Original file from https://game-icons.net/1x1/delapouite/keyboard.html diff --git a/.icons/board.png.license b/.icons/board.png.license index 9eeedc3..7c0ab3b 100644 --- a/.icons/board.png.license +++ b/.icons/board.png.license @@ -1,3 +1,3 @@ SPDX-License-Identifier: CC-BY-3.0 -SPDX-License-CopyrightText: lorc +SPDX-FileCopyrightText: lorc Original file from https://game-icons.net/1x1/lorc/circuitry.html diff --git a/.icons/rebuild.py b/.icons/rebuild.py index f176a01..1e5900b 100644 --- a/.icons/rebuild.py +++ b/.icons/rebuild.py @@ -20,5 +20,5 @@ with open(outname + ".license", "w") as licensefile: # String is split up because reuse tools would otherwise think this applies here print("SPDX-License" + "-Identifier: CC-BY-3.0", file=licensefile) - print(f"SPDX-License-CopyrightText: {author}", file=licensefile) + print("SPDX-" + f"FileCopyrightText: {author}", file=licensefile) print(f"Original file from https://game-icons.net/1x1/{author}/{iconname}.html", file=licensefile)