summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasile Vilvoiu <vasi@vilvoiu.ro>2023-08-26 17:34:51 +0300
committerVasile Vilvoiu <vasi@vilvoiu.ro>2023-08-26 17:34:51 +0300
commitf9a4fc2f9696bee4b005cfe2aa36c9536b1aae6d (patch)
treedda05ffff9a7904af7b02c78bc71dc15e04437aa
parent2e0a4a18bd40f6c3ca244ab907dc539658472df6 (diff)
Update copyright message in visible places.
-rw-r--r--LICENSE2
-rw-r--r--src/libsstv.template.h4
-rw-r--r--src/luts.c2
-rw-r--r--util/genluts.py5
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) <vasi.vilvoiu@gmail.com>
+ * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com>
*
* 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) <vasi.vilvoiu@gmail.com>
+ * Copyright (c) 2018-2023 Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com>
*
* 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) <vasi.vilvoiu@gmail.com>\n')
+f.write(' * Copyright (c) 2018-{} Vasile Vilvoiu (YO7JBP) <vasi.vilvoiu@gmail.com>\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()