commit b6438b455fbd30c402a0fec1b7efec3b1e308744
parent b73f55066422614a992765b374db5dbf23804b57
Author: Paul Mangan <paul@claws-mail.org>
Date: Sun, 23 Jan 2011 08:56:29 +0000
2011-01-23 [paul] 3.7.8cvs43
* src/gtk/about.c
it's 2011, update copyright line
Diffstat:
4 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2011-01-23 [paul] 3.7.8cvs43
+
+ * src/gtk/about.c
+ it's 2011, update copyright line
+
2011-01-23 [paul] 3.7.8cvs42
* manual/advanced.xml
diff --git a/PATCHSETS b/PATCHSETS
@@ -4116,3 +4116,4 @@
( cvs diff -u -r 1.1.2.3 -r 1.1.2.4 claws-mail.desktop; ) > 3.7.8cvs40.patchset
( cvs diff -u -r 1.49.2.136 -r 1.49.2.137 src/procmime.c; ) > 3.7.8cvs41.patchset
( cvs diff -u -r 1.1.2.54 -r 1.1.2.55 manual/advanced.xml; cvs diff -u -r 1.204.2.198 -r 1.204.2.199 src/prefs_common.c; cvs diff -u -r 1.103.2.130 -r 1.103.2.131 src/prefs_common.h; cvs diff -u -r 1.96.2.229 -r 1.96.2.230 src/textview.c; ) > 3.7.8cvs42.patchset
+( cvs diff -u -r 1.4.2.77 -r 1.4.2.78 src/gtk/about.c; ) > 3.7.8cvs43.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=7
MICRO_VERSION=8
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=42
+EXTRA_VERSION=43
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/gtk/about.c b/src/gtk/about.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2010 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 1999-2011 Hiroyuki Yamamoto and the Claws Mail team
*
* 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
@@ -143,8 +143,8 @@ static GtkWidget *about_create_child_page_info(void)
NULL);
#ifdef GENERIC_UMPC
gtk_text_buffer_insert(buffer, &iter, _(
- "\n\nCopyright (C) 1999-2010\nHiroyuki Yamamoto <hiro-y@kcn.ne.jp>\n"
- "and the Claws Mail team"), -1);
+ "\n\nCopyright (C) 1999-2011\nThe Claws Mail Team\n"
+ " and Hiroyuki Yamamoto"), -1);
#endif
gtk_text_buffer_insert_with_tags_by_name(buffer, &iter, (_("\n\nSystem Information\n")), -1,
"underlined-list-title", NULL);
@@ -708,8 +708,8 @@ static void about_create(void)
gtk_box_pack_start(GTK_BOX(vbox2), button, FALSE, FALSE, 0);
#ifndef GENERIC_UMPC
label = gtk_label_new
- (_("Copyright (C) 1999-2010\nHiroyuki Yamamoto <hiro-y@kcn.ne.jp>\n"
- "and the Claws Mail team"));
+ (_("Copyright (C) 1999-2011\nThe Claws Mail Team\n"
+ "and Hiroyuki Yamamoto"));
gtk_label_set_selectable(GTK_LABEL(label), TRUE);
gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_CENTER);
gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);