From 5ef4fbb62da1ee8dd60fb6b8732b28437ad17b39 Mon Sep 17 00:00:00 2001 From: Matt Waltz Date: Tue, 16 Jan 2024 22:00:46 -0700 Subject: [PATCH] update copyright year --- LICENSE | 2 +- Makefile | 2 +- README.md | 2 +- src/appvar.c | 2 +- src/appvar.h | 2 +- src/bpp.h | 2 +- src/clean.c | 2 +- src/clean.h | 2 +- src/color.c | 2 +- src/color.h | 2 +- src/compress.c | 2 +- src/compress.h | 2 +- src/convert.c | 2 +- src/convert.h | 2 +- src/icon.c | 2 +- src/icon.h | 2 +- src/image.c | 2 +- src/image.h | 2 +- src/log.c | 2 +- src/log.h | 2 +- src/main.c | 2 +- src/memory.c | 2 +- src/memory.h | 2 +- src/options.c | 4 ++-- src/options.h | 2 +- src/output-appvar.c | 2 +- src/output-asm.c | 2 +- src/output-basic.c | 2 +- src/output-bin.c | 2 +- src/output-c.c | 2 +- src/output.c | 2 +- src/output.h | 2 +- src/palette.c | 2 +- src/palette.h | 2 +- src/parser.c | 2 +- src/parser.h | 2 +- src/strings.c | 2 +- src/strings.h | 2 +- src/tileset.c | 2 +- src/tileset.h | 2 +- src/version.h | 2 +- test/test.sh | 2 +- 42 files changed, 43 insertions(+), 43 deletions(-) diff --git a/LICENSE b/LICENSE index 975f4a2..88459f7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2017-2023 Matt "MateoConLechuga" Waltz +Copyright 2017-2024 Matt "MateoConLechuga" Waltz Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/Makefile b/Makefile index 6914b70..900642e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2022 Matt "MateoConLechuga" Waltz +# Copyright 2017-2024 Matt "MateoConLechuga" Waltz # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index 4be8bd5..5c6d70b 100644 --- a/README.md +++ b/README.md @@ -333,7 +333,7 @@ It primarily is used for the TI-84+CE and related calculator series, however can -------------------------------------------------------------------------------- Credits: - (c) 2017-2023 by Matt "MateoConLechuga" Waltz. + (c) 2017-2024 by Matt "MateoConLechuga" Waltz. This program utilizes the following libraries: libimagequant: (c) 2009-2022 by Kornel Lesiński. diff --git a/src/appvar.c b/src/appvar.c index c8845e0..da1939d 100644 --- a/src/appvar.c +++ b/src/appvar.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/appvar.h b/src/appvar.h index db84b85..624767c 100644 --- a/src/appvar.h +++ b/src/appvar.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/bpp.h b/src/bpp.h index 6371140..dec2e87 100644 --- a/src/bpp.h +++ b/src/bpp.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/clean.c b/src/clean.c index b92096b..419d6b0 100644 --- a/src/clean.c +++ b/src/clean.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/clean.h b/src/clean.h index 9551891..64779fc 100644 --- a/src/clean.h +++ b/src/clean.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/color.c b/src/color.c index 2bf7966..d3416e8 100644 --- a/src/color.c +++ b/src/color.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/color.h b/src/color.h index 9affb34..4281b4c 100644 --- a/src/color.h +++ b/src/color.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/compress.c b/src/compress.c index 1375722..e9c3b8c 100644 --- a/src/compress.c +++ b/src/compress.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/compress.h b/src/compress.h index dca9598..60487a0 100644 --- a/src/compress.h +++ b/src/compress.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/convert.c b/src/convert.c index d3779fa..cb3ec53 100644 --- a/src/convert.c +++ b/src/convert.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/convert.h b/src/convert.h index ed8df6d..a691422 100644 --- a/src/convert.h +++ b/src/convert.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/icon.c b/src/icon.c index 1f5279e..9ddc504 100644 --- a/src/icon.c +++ b/src/icon.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/icon.h b/src/icon.h index c7e29e4..f81c757 100644 --- a/src/icon.h +++ b/src/icon.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/image.c b/src/image.c index 2e446a3..c99bcfd 100644 --- a/src/image.c +++ b/src/image.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/image.h b/src/image.h index b1cac73..3689387 100644 --- a/src/image.h +++ b/src/image.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/log.c b/src/log.c index c6176a7..3667fdc 100644 --- a/src/log.c +++ b/src/log.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/log.h b/src/log.h index c02d842..39919e2 100644 --- a/src/log.h +++ b/src/log.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/main.c b/src/main.c index c78c31b..12ec911 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/memory.c b/src/memory.c index d315052..ee6564a 100644 --- a/src/memory.c +++ b/src/memory.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/memory.h b/src/memory.h index f392b58..df81396 100644 --- a/src/memory.h +++ b/src/memory.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/options.c b/src/options.c index 257bac5..552540c 100644 --- a/src/options.c +++ b/src/options.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -373,7 +373,7 @@ static void options_show(const char *prgm) LOG_PRINT("--------------------------------------------------------------------------------\n"); LOG_PRINT("\n"); LOG_PRINT("Credits:\n"); - LOG_PRINT(" (c) 2017-2023 by Matt \"MateoConLechuga\" Waltz.\n"); + LOG_PRINT(" (c) 2017-2024 by Matt \"MateoConLechuga\" Waltz.\n"); LOG_PRINT("\n"); LOG_PRINT(" This program utilizes the following libraries:\n"); LOG_PRINT(" libimagequant: (c) 2009-2022 by Kornel Lesiński.\n"); diff --git a/src/options.h b/src/options.h index 9303119..bcab1e2 100644 --- a/src/options.h +++ b/src/options.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/output-appvar.c b/src/output-appvar.c index 4e04bab..a66a572 100644 --- a/src/output-appvar.c +++ b/src/output-appvar.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/output-asm.c b/src/output-asm.c index 36b4ce8..9308c66 100644 --- a/src/output-asm.c +++ b/src/output-asm.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/output-basic.c b/src/output-basic.c index c45d69f..109ad29 100644 --- a/src/output-basic.c +++ b/src/output-basic.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/output-bin.c b/src/output-bin.c index 7273ce2..c908053 100644 --- a/src/output-bin.c +++ b/src/output-bin.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/output-c.c b/src/output-c.c index 28060b7..ec75895 100644 --- a/src/output-c.c +++ b/src/output-c.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/output.c b/src/output.c index 4e88fba..a020ea3 100644 --- a/src/output.c +++ b/src/output.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/output.h b/src/output.h index fe613ce..b017d85 100644 --- a/src/output.h +++ b/src/output.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/palette.c b/src/palette.c index 0d9f4de..d2c74d8 100644 --- a/src/palette.c +++ b/src/palette.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/palette.h b/src/palette.h index 439278e..59b46b1 100644 --- a/src/palette.h +++ b/src/palette.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/parser.c b/src/parser.c index a67993f..e656a33 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/parser.h b/src/parser.h index 6856d1e..42720ec 100644 --- a/src/parser.h +++ b/src/parser.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/strings.c b/src/strings.c index 566cf38..d743779 100644 --- a/src/strings.c +++ b/src/strings.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/strings.h b/src/strings.h index 801f04f..46ed87e 100644 --- a/src/strings.h +++ b/src/strings.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/tileset.c b/src/tileset.c index 939f0b0..e9fad60 100644 --- a/src/tileset.c +++ b/src/tileset.c @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/tileset.h b/src/tileset.h index a104119..d101ae5 100644 --- a/src/tileset.h +++ b/src/tileset.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/version.h b/src/version.h index a9ec48d..0c6586c 100644 --- a/src/version.h +++ b/src/version.h @@ -1,5 +1,5 @@ /* - * Copyright 2017-2023 Matt "MateoConLechuga" Waltz + * Copyright 2017-2024 Matt "MateoConLechuga" Waltz * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/test.sh b/test/test.sh index 388a9b2..caeca07 100755 --- a/test/test.sh +++ b/test/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2017-2023 Matt "MateoConLechuga" Waltz +# Copyright 2017-2024 Matt "MateoConLechuga" Waltz # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: