talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit f71b7d749e9f98e458a313675e61f64007f38b8c
parent 8e424cfd66a9c02412355e1c24299b67ef365f62
Author: Paul Mangan <paul@claws-mail.org>
Date:   Thu, 29 Mar 2012 06:30:01 +0000

2012-03-29 [paul]	3.8.0cvs35

	* AUTHORS
	* src/gtk/authors.h
	* src/gtk/quicksearch.c
		add 'ha', short version of 'has_attachment' in quick search
		Patch by Andreas Rönnquist

Diffstat:
MAUTHORS | 1+
MChangeLog | 8++++++++
MPATCHSETS | 1+
Mconfigure.ac | 2+-
Msrc/gtk/authors.h | 1+
Msrc/gtk/quicksearch.c | 2++
6 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/AUTHORS b/AUTHORS @@ -288,3 +288,4 @@ contributors (in addition to the above; based on Changelog) Hanno Meyer-Thurow Bodo Graumann Michael Shell + Andreas Rönnquist diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,11 @@ +2012-03-29 [paul] 3.8.0cvs35 + + * AUTHORS + * src/gtk/authors.h + * src/gtk/quicksearch.c + add 'ha', short version of 'has_attachment' in quick search + Patch by Andreas Rönnquist + 2012-03-26 [mones] 3.8.0cvs34 * src/common/plugin.c diff --git a/PATCHSETS b/PATCHSETS @@ -4351,3 +4351,4 @@ ( cvs diff -u -r 1.213.2.205 -r 1.213.2.206 src/folder.c; cvs diff -u -r 1.94.2.228 -r 1.94.2.229 src/messageview.c; cvs diff -u -r 1.19.2.28 -r 1.19.2.29 src/messageview.h; cvs diff -u -r 1.60.2.59 -r 1.60.2.60 src/procmsg.h; cvs diff -u -r 1.395.2.444 -r 1.395.2.445 src/summaryview.c; cvs diff -u -r 1.96.2.237 -r 1.96.2.238 src/textview.c; cvs diff -u -r 1.12.2.29 -r 1.12.2.30 src/textview.h; ) > 3.8.0cvs32.patchset ( cvs diff -u -r 1.94.2.229 -r 1.94.2.230 src/messageview.c; cvs diff -u -r 1.96.2.238 -r 1.96.2.239 src/textview.c; ) > 3.8.0cvs33.patchset ( cvs diff -u -r 1.13.2.43 -r 1.13.2.44 src/common/plugin.c; ) > 3.8.0cvs34.patchset +( cvs diff -u -r 1.100.2.82 -r 1.100.2.83 AUTHORS; cvs diff -u -r 1.1.2.77 -r 1.1.2.78 src/gtk/authors.h; cvs diff -u -r 1.1.2.107 -r 1.1.2.108 src/gtk/quicksearch.c; ) > 3.8.0cvs35.patchset diff --git a/configure.ac b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=8 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=34 +EXTRA_VERSION=35 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/gtk/authors.h b/src/gtk/authors.h @@ -220,6 +220,7 @@ static char *CONTRIBS_LIST[] = { "David Relson", "Chad Robinson", "Paul Rolland", +"Andreas Rönnquist", "Luca Rosellini", "Guy Rouillier", "Stephan Sachse", diff --git a/src/gtk/quicksearch.c b/src/gtk/quicksearch.c @@ -504,6 +504,7 @@ static gchar *search_descr_strings[] = { "E S", N_("true if execute \"S\" succeeds"), "f S", N_("messages originating from user S"), "F", N_("forwarded messages"), + "ha", N_("messages which have attachments"), "h S", N_("messages which contain header S"), "i S", N_("messages which contain S in Message-ID header"), "I S", N_("messages which contain S in In-Reply-To header"), @@ -1180,6 +1181,7 @@ static gchar *expand_search_string(const gchar *search_string) { "f", "from", 1, TRUE, TRUE }, { "F", "forwarded", 0, FALSE, FALSE }, { "h", "headers_part", 1, TRUE, TRUE }, + { "ha", "has_attachments", 0, FALSE, FALSE }, { "i", "header \"Message-ID\"", 1, TRUE, TRUE }, { "I", "inreplyto", 1, TRUE, TRUE }, { "k", "colorlabel", 1, FALSE, FALSE },