From efad24e3de040c2d87c66b17f36937dbb7580bce Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Fri, 18 Nov 2022 10:31:45 +0100 Subject: [PATCH 1/2] Rewrite authors/copyrights --- AUTHORS | 9 ++++++++- src/main.c | 3 +-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index e706a157..a80006a2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,6 +2,13 @@ AVRDUDE was written by: Brian S. Dean +AVRDUDE is currently maintained by: + + Hans Eirik Bull + Stefan Rueger + Xiaofan Chen + Joerg Wunsch + Contributors: Joerg Wunsch @@ -38,5 +45,5 @@ Contributors to code no longer present: Paula Tomlinson for the loaddrv sources Chris Liechti for loaddrv modifications -For minor contributions, please see the ChangeLog files. +For minor contributions, please see the ChangeLog files / Git log. diff --git a/src/main.c b/src/main.c index 23ef5aef..49c4c2b5 100644 --- a/src/main.c +++ b/src/main.c @@ -900,8 +900,7 @@ int main(int argc, char * argv []) */ msg_notice("\n"); pmsg_notice("Version %s\n", version); - imsg_notice("Copyright (c) Brian Dean, http://www.bdmicro.com/\n"); - imsg_notice("Copyright (c) Joerg Wunsch\n\n"); + imsg_notice("Copyright the AVRDUDE authors; see file AUTHORS\n\n"); if(*sys_config) { char *real_sys_config = realpath(sys_config, NULL); From 77ad26ddf41ed81b250eb1365193a0bafe807a8e Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Fri, 18 Nov 2022 21:24:10 +0100 Subject: [PATCH 2/2] Replace the hint to AUTHORS by an URL Suggested by: Hans --- src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 49c4c2b5..69db5c7c 100644 --- a/src/main.c +++ b/src/main.c @@ -900,7 +900,8 @@ int main(int argc, char * argv []) */ msg_notice("\n"); pmsg_notice("Version %s\n", version); - imsg_notice("Copyright the AVRDUDE authors; see file AUTHORS\n\n"); + imsg_notice("Copyright the AVRDUDE authors;\n"); + imsg_notice("see https://github.com/avrdudes/avrdude/blob/main/AUTHORS\n\n"); if(*sys_config) { char *real_sys_config = realpath(sys_config, NULL);