aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-02-28 07:25:41 +0000
committerJuan J. Martinez <jjm@usebox.net>2023-02-28 07:25:41 +0000
commitd3864eb2f5bbdedffaae5cc8e1f00e1f93a4b770 (patch)
tree37f3d61a93b4b2bf1ab4ee8caa93bbde6fb1b48e
parentc93c3ab607bdc383752f4d1a016d9197d5f4f02c (diff)
downloadubox-msx-lib-d3864eb2f5bbdedffaae5cc8e1f00e1f93a4b770.tar.gz
ubox-msx-lib-d3864eb2f5bbdedffaae5cc8e1f00e1f93a4b770.zip
Copyright year bump
-rw-r--r--COPYING2
-rw-r--r--docs/footer.md2
-rw-r--r--game/README.md2
-rw-r--r--include/mplayer.h2
-rw-r--r--include/spman.h2
-rw-r--r--include/ubox.h2
-rwxr-xr-xtools/mkcas.py4
-rwxr-xr-xtools/mkdeps.py2
-rwxr-xr-xtools/png2scr.py4
9 files changed, 11 insertions, 11 deletions
diff --git a/COPYING b/COPYING
index 837e671..994c7ab 100644
--- a/COPYING
+++ b/COPYING
@@ -1,5 +1,5 @@
ubox MSX lib
-Copyright (C) 2020-2022 by Juan J. Martinez <jjm@usebox.net>
+Copyright (C) 2020-2023 by Juan J. Martinez <jjm@usebox.net>
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/docs/footer.md b/docs/footer.md
index 4c7fc2f..c1224ec 100644
--- a/docs/footer.md
+++ b/docs/footer.md
@@ -1,3 +1,3 @@
-----
-**Copyright &copy; 2020-2022 Juan J. Martinez (jjm at usebox.net)**
+**Copyright &copy; 2020-2023 Juan J. Martinez (jjm at usebox.net)**
Licensed [CC BY NC SA 4.0](http://creativecommons.org/licenses/by-nc-sa/4.0/).
diff --git a/game/README.md b/game/README.md
index c0ff4d0..0dbf40e 100644
--- a/game/README.md
+++ b/game/README.md
@@ -14,7 +14,7 @@ specially optimised; but you can see that it moves the player and 7 enemies
just fine and **it is a good example on how to write a game in C for the MSX**.
GREEN, a demo for ubox MSX lib
- Copyright (C) 2020-2022 by Juan J. Martinez <jjm@usebox.net>
+ Copyright (C) 2020-2023 by Juan J. Martinez <jjm@usebox.net>
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/mplayer.h b/include/mplayer.h
index 173d9ca..8d36516 100644
--- a/include/mplayer.h
+++ b/include/mplayer.h
@@ -1,6 +1,6 @@
/*
* mplayer lib
- * Copyright (C) 2020-2022 by Juan J. Martinez <jjm@usebox.net>
+ * Copyright (C) 2020-2023 by Juan J. Martinez <jjm@usebox.net>
*
* 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/spman.h b/include/spman.h
index 2afedd8..d31dc3e 100644
--- a/include/spman.h
+++ b/include/spman.h
@@ -1,6 +1,6 @@
/*
* spman lib
- * Copyright (C) 2020-2022 by Juan J. Martinez <jjm@usebox.net>
+ * Copyright (C) 2020-2023 by Juan J. Martinez <jjm@usebox.net>
*
* 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/ubox.h b/include/ubox.h
index 6b19915..ea3ebe0 100644
--- a/include/ubox.h
+++ b/include/ubox.h
@@ -1,6 +1,6 @@
/*
* ubox MSX lib
- * Copyright (C) 2020-2022 by Juan J. Martinez <jjm@usebox.net>
+ * Copyright (C) 2020-2023 by Juan J. Martinez <jjm@usebox.net>
*
* 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/mkcas.py b/tools/mkcas.py
index 267270d..edb121b 100755
--- a/tools/mkcas.py
+++ b/tools/mkcas.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2020-2022 by Juan J. Martinez <jjm@usebox.net>
+# Copyright (C) 2020-2023 by Juan J. Martinez <jjm@usebox.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -48,7 +48,7 @@ def main():
parser = ArgumentParser(
description="Make a CAS file for the MSX",
- epilog="Copyright (C) 2020-2022 Juan J Martinez <jjm@usebox.net>",
+ epilog="Copyright (C) 2020-2023 Juan J Martinez <jjm@usebox.net>",
)
parser.add_argument(
diff --git a/tools/mkdeps.py b/tools/mkdeps.py
index 4576f0c..ee33c52 100755
--- a/tools/mkdeps.py
+++ b/tools/mkdeps.py
@@ -16,7 +16,7 @@ def main():
parser = ArgumentParser(
description="mkdeps for SDCC",
- epilog="Copyright (C) 2021-2022 Juan J Martinez <jjm@usebox.net>",
+ epilog="Copyright (C) 2021-2023 Juan J Martinez <jjm@usebox.net>",
)
parser.add_argument(
diff --git a/tools/png2scr.py b/tools/png2scr.py
index 5d08915..9a23691 100755
--- a/tools/png2scr.py
+++ b/tools/png2scr.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2018-2022 by Juan J. Martinez <jjm@usebox.net>
+# Copyright (C) 2018-2023 by Juan J. Martinez <jjm@usebox.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -56,7 +56,7 @@ def main():
parser = ArgumentParser(
description="PNG to SCR file",
- epilog="Copyright (C) 2018-2022 Juan J Martinez <jjm@usebox.net>",
+ epilog="Copyright (C) 2018-2023 Juan J Martinez <jjm@usebox.net>",
)
parser.add_argument(