2007-07-30 [paul] 2.10.0cvs80
authorPaul Mangan <paul@claws-mail.org>
Mon, 30 Jul 2007 17:35:49 +0000 (17:35 +0000)
committerPaul Mangan <paul@claws-mail.org>
Mon, 30 Jul 2007 17:35:49 +0000 (17:35 +0000)
* src/prefs_matcher.c
specify the units of age and size

ChangeLog
PATCHSETS
configure.ac
src/prefs_matcher.c

index b494e2a4a0d968bd5f5e79974669cef0bd27de93..943e9433ed4e6b93391133f654c09db5db6be79b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-30 [paul]      2.10.0cvs80
+
+       * src/prefs_matcher.c
+               specify the units of age and size
+
 2007-07-30 [paul]      2.10.0cvs79
 
        * src/main.c
index 3069a53577dccc014f1fc8f51004ec7cc9ee3b95..d2e8970d2bac563eb9163c95f227d4ab9aa9c51d 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.25.2.31 -r 1.25.2.32 src/matcher_parser_parse.y;  cvs diff -u -r 1.1.4.38 -r 1.1.4.39 src/prefs_filtering_action.c;  cvs diff -u -r 1.43.2.59 -r 1.43.2.60 src/prefs_matcher.c;  ) > 2.10.0cvs77.patchset
 ( cvs diff -u -r 1.105.2.103 -r 1.105.2.104 src/prefs_account.c;  ) > 2.10.0cvs78.patchset
 ( cvs diff -u -r 1.115.2.161 -r 1.115.2.162 src/main.c;  ) > 2.10.0cvs79.patchset
+( cvs diff -u -r 1.43.2.60 -r 1.43.2.61 src/prefs_matcher.c;  ) > 2.10.0cvs80.patchset
index 983bbfe3997cdcd5681d256a753a35422cb2c3d5..1b8e8658bf2bd36bdbafe983af9e0309e23fcb2a 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=10
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=79
+EXTRA_VERSION=80
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 4032595d7f16fdb855db67d3e6a90d5b353f3bf9..f7bc3d5814c19c932e324a4c27d903ed053882dd 100644 (file)
@@ -178,8 +178,8 @@ static struct_criteria_text criteria_text [] = {
        { N_("Newsgroups"), TRUE },
        { N_("In reply to"), TRUE },
        { N_("References"), TRUE },
-       { N_("Age greater than"), FALSE },
-       { N_("Age lower than"), FALSE },
+       { N_("Age greater than (days)"), FALSE },
+       { N_("Age less than (days)"), FALSE },
        { N_("Header"), FALSE },
        { N_("Headers part"), FALSE },
        { N_("Body part"), FALSE },
@@ -199,9 +199,9 @@ static struct_criteria_text criteria_text [] = {
        { N_("Score lower than"), FALSE },
        { N_("Score equal to"), FALSE },
        { N_("Test"), FALSE },
-       { N_("Size greater than"), FALSE }, 
-       { N_("Size smaller than"), FALSE },
-       { N_("Size exactly"), FALSE },
+       { N_("Size greater than (bytes)"), FALSE }, 
+       { N_("Size smaller than (bytes)"), FALSE },
+       { N_("Size exactly (bytes)"), FALSE },
        { N_("Partially downloaded"), FALSE },
        { N_("Found in addressbook"), FALSE },
        { N_("Tags"), FALSE },
@@ -515,7 +515,7 @@ static void prefs_matcher_create(void)
 
        g_list_free(combo_items);
 
-       gtk_widget_set_size_request(criteria_combo, 170, -1);
+       gtk_widget_set_size_request(criteria_combo, 190, -1);
        gtk_table_attach(GTK_TABLE(criteria_table), criteria_combo, 0, 1, 1, 2,
                          0, 0, 0, 0);
        criteria_list = GTK_COMBO(criteria_combo)->list;