diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2011-01-17 02:23:38 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2011-01-17 02:23:38 +0000 |
commit | 1659717c7e8c18be01154b00cc20ef830ebf169b (patch) | |
tree | e11c5409735fea005ea89e8f89abfe2f16e622e4 | |
parent | 9f7138a0d75b5d30bf2daf12252bb19ec5b773ef (diff) |
added build revision to the about dialog.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2796 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/about.c | 5 | ||||
-rw-r--r-- | src/version.h.in | 4 |
3 files changed, 11 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2011-01-17 + * src/version.h.in + src/about.c: added build revision to the about dialog. + +2011-01-17 + * src/summaryview.c: summary_get_tmp_marked_msg_list(): don't use full copy for saving flags. diff --git a/src/about.c b/src/about.c index fc40081a..4721ea0e 100644 --- a/src/about.c +++ b/src/about.c @@ -1,6 +1,6 @@ /* * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2010 Hiroyuki Yamamoto + * Copyright (C) 1999-2011 Hiroyuki Yamamoto * * 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 @@ -104,7 +104,8 @@ static void about_create(void) pixmap = stock_pixbuf_widget(window, STOCK_PIXMAP_SYLPHEED_LOGO); gtk_box_pack_start(GTK_BOX(vbox), pixmap, FALSE, FALSE, 0); - label = gtk_label_new("version "VERSION); + label = gtk_label_new("Version " VERSION + " (Build: " Xstr(BUILD_REVISION) ")"); gtk_label_set_selectable(GTK_LABEL(label), TRUE); gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); diff --git a/src/version.h.in b/src/version.h.in index 8e7affa6..d0b7141f 100644 --- a/src/version.h.in +++ b/src/version.h.in @@ -1,6 +1,6 @@ /* * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2009 Hiroyuki Yamamoto + * Copyright (C) 1999-2011 Hiroyuki Yamamoto * * 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 @@ -28,4 +28,6 @@ #define EXTRA_VERSION "@EXTRA_VERSION@" #define PROG_VERSION "Sylpheed " VERSION +#define BUILD_REVISION @BUILD_REVISION@ + #endif /* __VERSION_H__ */ |