From f9a4fc2f9696bee4b005cfe2aa36c9536b1aae6d Mon Sep 17 00:00:00 2001 From: Vasile Vilvoiu Date: Sat, 26 Aug 2023 17:34:51 +0300 Subject: Update copyright message in visible places. --- LICENSE | 2 +- src/libsstv.template.h | 4 ++-- src/luts.c | 2 +- util/genluts.py | 5 +++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index e25529a..810aee4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Vasile Vilvoiu +Copyright (c) 2018-2023 Vasile Vilvoiu 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/src/libsstv.template.h b/src/libsstv.template.h index ceda0c4..362ecbd 100644 --- a/src/libsstv.template.h +++ b/src/libsstv.template.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -311,4 +311,4 @@ extern sstv_error_t sstv_encode(void *ctx, sstv_signal_t *signal); } #endif -#endif \ No newline at end of file +#endif diff --git a/src/luts.c b/src/luts.c index 7e73b88..ccb4259 100644 --- a/src/luts.c +++ b/src/luts.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) + * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) * * libsstv is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. diff --git a/util/genluts.py b/util/genluts.py index 4bf07c5..2647280 100644 --- a/util/genluts.py +++ b/util/genluts.py @@ -1,11 +1,12 @@ import sys import numpy as np +import datetime f = open('src/luts.c', 'w') # header f.write('/*\n') -f.write(' * Copyright (c) 2018 Vasile Vilvoiu (YO7JBP) \n') +f.write(' * Copyright (c) 2018-{} Vasile Vilvoiu (YO7JBP) \n'.format(datetime.datetime.now().date().strftime("%Y"))) f.write(' *\n') f.write(' * libsstv is free software; you can redistribute it and/or modify\n') f.write(' * it under the terms of the MIT license. See LICENSE for details.\n') @@ -33,4 +34,4 @@ for s in sn * 32767: f.write(str(int(np.around(s))) + ', ') f.write('};\n\n') -f.close() \ No newline at end of file +f.close() -- cgit v1.2.3