ref: f59d012d4d7c964fbd2bb1dfcc560fabc1328873
parent: 473f181e3e60e988c85ba8e9a8cfd6e6020848cb
author: zamfofex <zamfofex@twdb.moe>
date: Mon Jan 8 19:57:46 EST 2024
update copyright headers
--- a/.build.yml
+++ b/.build.yml
@@ -1,5 +1,5 @@
# moonfish is licensed under the AGPL (v3 or later)
-# copyright 2023 zamfofex
+# copyright 2023, 2024 zamfofex
image: alpine/latest
secrets:
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
# moonfish is licensed under the AGPL (v3 or later)
-# copyright 2023 zamfofex
+# copyright 2023, 2024 zamfofex
*
!/.gitignore
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
<!-- moonfish is licensed under the AGPL (v3 or later) -->
-<!-- copyright 2023 zamfofex -->
+<!-- copyright 2023, 2024 zamfofex -->
moonfish
===
@@ -118,7 +118,7 @@
license
---
-[AGPL] ([v3 or later][GPLv3+]) © zamfofex 2023
+[AGPL] ([v3 or later][GPLv3+]) © zamfofex 2023, 2024
[AGPL]: <https://gnu.org/licenses/agpl-3.0>
[GPLv3+]: <https://gnu.org/licenses/gpl-faq.html#VersionThreeOrLater>
--- a/chess.c
+++ b/chess.c
@@ -1,5 +1,5 @@
/* moonfish is licensed under the AGPL (v3 or later) */
-/* copyright 2023 zamfofex */
+/* copyright 2023, 2024 zamfofex */
#include "moonfish.h"
--- a/main.c
+++ b/main.c
@@ -1,5 +1,5 @@
/* moonfish is licensed under the AGPL (v3 or later) */
-/* copyright 2023 zamfofex */
+/* copyright 2023, 2024 zamfofex */
#include <stdlib.h>
#include <errno.h>
--- a/makefile
+++ b/makefile
@@ -1,5 +1,5 @@
# moonfish is licensed under the AGPL (v3 or later)
-# copyright 2023 zamfofex
+# copyright 2023, 2024 zamfofex
CFLAGS ?= -ansi -O3 -Wall -Wextra -Wpedantic
PREFIX ?= /usr/local
--- a/manifest.scm
+++ b/manifest.scm
@@ -1,4 +1,4 @@
; moonfish is licensed under the AGPL (v3 or later)
-; copyright 2023 zamfofex
+; copyright 2023, 2024 zamfofex
(specifications->manifest '("make" "gcc-toolchain" "bearssl" "cjson"))--- a/minify.sh
+++ b/minify.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# moonfish is licensed under the AGPL (v3 or later)
-# copyright 2023 zamfofex
+# copyright 2023, 2024 zamfofex
set -e
--- a/moonfish.h
+++ b/moonfish.h
@@ -1,5 +1,5 @@
/* moonfish is licensed under the AGPL (v3 or later) */
-/* copyright 2023 zamfofex */
+/* copyright 2023, 2024 zamfofex */
#ifndef MOONFISH
#define MOONFISH
--- a/moonfish.vcxproj
+++ b/moonfish.vcxproj
@@ -1,5 +1,5 @@
<!-- moonfish is licensed under the AGPL (v3 or later) -->
-<!-- copyright 2023 zamfofex -->
+<!-- copyright 2023, 2024 zamfofex -->
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
--- a/search.c
+++ b/search.c
@@ -1,5 +1,5 @@
/* moonfish is licensed under the AGPL (v3 or later) */
-/* copyright 2023 zamfofex */
+/* copyright 2023, 2024 zamfofex */
#include <stdio.h>
#include <stdlib.h>
--- a/tools/analyse.c
+++ b/tools/analyse.c
@@ -1,5 +1,5 @@
/* moonfish is licensed under the AGPL (v3 or later) */
-/* copyright 2023 zamfofex */
+/* copyright 2023, 2024 zamfofex */
#include <string.h>
#include <errno.h>
--- a/tools/lichess.c
+++ b/tools/lichess.c
@@ -1,5 +1,5 @@
/* moonfish is licensed under the AGPL (v3 or later) */
-/* copyright 2023 zamfofex */
+/* copyright 2023, 2024 zamfofex */
#include <netdb.h>
#include <string.h>
--- a/tools/play.c
+++ b/tools/play.c
@@ -1,5 +1,5 @@
/* moonfish is licensed under the AGPL (v3 or later) */
-/* copyright 2023 zamfofex */
+/* copyright 2023, 2024 zamfofex */
#include <unistd.h>
#include <string.h>
--- a/tools/tools.h
+++ b/tools/tools.h
@@ -1,5 +1,5 @@
/* moonfish is licensed under the AGPL (v3 or later) */
-/* copyright 2023 zamfofex */
+/* copyright 2023, 2024 zamfofex */
#ifndef MOONFISH_TOOLS
#define MOONFISH_TOOLS
--- a/tools/utils.c
+++ b/tools/utils.c
@@ -1,3 +1,6 @@
+/* moonfish is licensed under the AGPL (v3 or later) */
+/* copyright 2023, 2024 zamfofex */
+
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
--
⑨