From 3697ed99d3aef46cb8de4c573657123459c22abb Mon Sep 17 00:00:00 2001 Message-Id: <3697ed99d3aef46cb8de4c573657123459c22abb.1714173430.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 17 Feb 2013 16:14:06 +0000 Subject: [PATCH] disobedience: tinker with About... box Organization: Straylight/Edgeware From: Richard Kettlewell --- README | 2 +- disobedience/menu.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README b/README index 9df61fa..71176aa 100644 --- a/README +++ b/README @@ -265,7 +265,7 @@ Copyright "Nothing but another drug, a licence that you buy and sell" DisOrder - select and play digital audio files -Copyright (C) 2003-2009 Richard Kettlewell +Copyright (C) 2003-2013 Richard Kettlewell Portions copyright (C) 2007 Ross Younger Portions copyright (C) 2007 Mark Wooding Portions extracted from MPG321, http://mpg321.sourceforge.net/ diff --git a/disobedience/menu.c b/disobedience/menu.c index 272242f..b398606 100644 --- a/disobedience/menu.c +++ b/disobedience/menu.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2006-2009 Richard Kettlewell + * Copyright (C) 2006-2009, 2011, 2013 Richard Kettlewell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -154,7 +154,7 @@ static void about_popup_got_version(void attribute((unused)) *v, if(!value) value = "[error]"; - byte_xasprintf(&server_version_string, "Server version %s", value); + byte_xasprintf(&server_version_string, "DisOrder server version %s", value); byte_xasprintf(&short_version_string, "Disobedience %s", disorder_short_version_string); w = gtk_dialog_new_with_buttons("About Disobedience", @@ -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 2003-2011 Richard Kettlewell et al"), + gtk_label_new("\xC2\xA9 2003-2013 Richard Kettlewell et al"), FALSE/*expand*/, FALSE/*fill*/, 1/*padding*/); @@ -406,7 +406,7 @@ GtkWidget *menubar(GtkWidget *w) { GTK_STOCK_HELP, /* extra_data */ }, { - (char *)"/Help/About DisOrder", /* path */ + (char *)"/Help/About Disobedience", /* path */ 0, /* accelerator */ about_popup, /* callback */ 0, /* callback_action */ -- [mdw]