From d658324ef79d409f561da6c17ab8de918c194db4 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Thu, 21 Feb 2019 17:25:33 +0100 Subject: [PATCH] Bump copyright year --- README.md | 2 +- precomp.cpp | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0db1461..00d8701 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Legal stuff License ------- -Copyright 2006-2018 Christian Schneider +Copyright 2006-2019 Christian Schneider Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/precomp.cpp b/precomp.cpp index 1265c96..031ae6c 100644 --- a/precomp.cpp +++ b/precomp.cpp @@ -1,4 +1,4 @@ -/* Copyright 2006-2018 Christian Schneider +/* Copyright 2006-2019 Christian Schneider Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -339,9 +339,9 @@ enum { // msg = Buffer for error messages (256 bytes buffer size are enough) DLL void get_copyright_msg(char* msg) { if (V_MINOR2 == 0) { - sprintf(msg, "Precomp DLL v%i.%i (c) 2006-2018 by Christian Schneider",V_MAJOR,V_MINOR); + sprintf(msg, "Precomp DLL v%i.%i (c) 2006-2019 by Christian Schneider",V_MAJOR,V_MINOR); } else { - sprintf(msg, "Precomp DLL v%i.%i.%i (c) 2006-2018 by Christian Schneider",V_MAJOR,V_MINOR,V_MINOR2); + sprintf(msg, "Precomp DLL v%i.%i.%i (c) 2006-2019 by Christian Schneider",V_MAJOR,V_MINOR,V_MINOR2); } } @@ -625,7 +625,7 @@ int init(int argc, char* argv[]) { printf("Precomp v%i.%i.%i %s %s - %s version",V_MAJOR,V_MINOR,V_MINOR2,V_OS,V_BIT,V_STATE); } printf(" - %s\n",V_MSG); - printf("Free for non-commercial use - Copyright 2006-2018 by Christian Schneider\n"); + printf("Free for non-commercial use - Copyright 2006-2019 by Christian Schneider\n"); printf(" preflate v0.3.5 support - Copyright 2018 by Dirk Steinke\n\n"); // init compression and memory level count @@ -1315,7 +1315,7 @@ int init_comfort(int argc, char* argv[]) { printf("Precomp Comfort v%i.%i.%i %s %s - %s version",V_MAJOR,V_MINOR,V_MINOR2,V_OS,V_BIT,V_STATE); } printf(" - %s\n",V_MSG); - printf("Free for non-commercial use - Copyright 2006-2018 by Christian Schneider\n\n"); + printf("Free for non-commercial use - Copyright 2006-2019 by Christian Schneider\n\n"); // init compression and memory level count bool use_zlib_level[81];