From 9e4d6051b4661ec2992a638d747fa2d4e6a4e516 Mon Sep 17 00:00:00 2001 Message-Id: <9e4d6051b4661ec2992a638d747fa2d4e6a4e516.1715285281.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 30 Jul 2011 17:28:11 +0100 Subject: [PATCH] Update copyright dates in version strings Organization: Straylight/Edgeware From: Richard Kettlewell --- disobedience/menu.c | 2 +- scripts/make-version-string | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/disobedience/menu.c b/disobedience/menu.c index bae0f00..f54c2a3 100644 --- a/disobedience/menu.c +++ b/disobedience/menu.c @@ -182,7 +182,7 @@ static void about_popup_got_version(void attribute((unused)) *v, FALSE/*fill*/, 1/*padding*/); gtk_box_pack_start(GTK_BOX(vbox), - gtk_label_new("\xC2\xA9 2004-2009 Richard Kettlewell"), + gtk_label_new("\xC2\xA9 2003-2011 Richard Kettlewell et al"), FALSE/*expand*/, FALSE/*fill*/, 1/*padding*/); diff --git a/scripts/make-version-string b/scripts/make-version-string index 41a7115..f7109c7 100755 --- a/scripts/make-version-string +++ b/scripts/make-version-string @@ -25,7 +25,7 @@ if(exists $ENV{CC}) { } die "no version found\n" unless defined $version; output("%s (DisOrder) $version\n"); -output("Copyright (C) 2003-2008 Richard Kettlewell et al\n"); +output("Copyright (C) 2003-2011 Richard Kettlewell et al\n"); output("License GPLv3+: GNU GPL version 3 or later:\n"); output(" http://www.gnu.org/licenses/gpl-3.0.html\n"); output("This is free software: you are free to change and redistribute it.\n"); -- [mdw]