From: Colin Leroy Date: Fri, 19 Aug 2005 20:42:00 +0000 (+0000) Subject: 2005-08-19 [colin] 1.9.13cvs43 X-Git-Tag: rel_1_9_14~44 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=00f108279f8631fa67526db6b26f8b526df32534 2005-08-19 [colin] 1.9.13cvs43 * src/inc.c * src/prefs_common.c * src/prefs_common.h Add an hidden pref to allow modifying the update stepping in incorporation. Patch by wwp. --- diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index 7f971324b..2675c6ee5 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,12 @@ +2005-08-19 [colin] 1.9.13cvs43 + + * src/inc.c + * src/prefs_common.c + * src/prefs_common.h + Add an hidden pref to allow modifying the + update stepping in incorporation. + Patch by wwp. + 2005-08-19 [colin] 1.9.13cvs42 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS index a3b0ff040..f9e0c26d3 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -728,3 +728,4 @@ ( cvs diff -u -r 1.204.2.51 -r 1.204.2.52 src/prefs_common.c; cvs diff -u -r 1.103.2.24 -r 1.103.2.25 src/prefs_common.h; cvs diff -u -r 1.22.2.11 -r 1.22.2.12 src/quote_fmt_parse.y; cvs diff -u -r 1.395.2.114 -r 1.395.2.115 src/summaryview.c; cvs diff -u -r 1.13.2.7 -r 1.13.2.8 src/plugins/clamav/clamav_plugin.c; cvs diff -u -r 1.12.2.4 -r 1.12.2.5 src/plugins/dillo_viewer/dillo_viewer.c; cvs diff -u -r 1.9.2.3 -r 1.9.2.4 src/plugins/mathml_viewer/mathml_viewer.c; cvs diff -u -r 1.1.2.4 -r 1.1.2.5 src/plugins/pgpcore/sgpgme.c; cvs diff -u -r 1.1.2.1 -r 1.1.2.2 src/plugins/pgpinline/pgpinline.c; cvs diff -u -r 1.1.2.21 -r 1.1.2.22 src/plugins/pgpmime/pgpmime.c; ) > 1.9.13cvs40.patchset ( cvs diff -u -r 1.382.2.152 -r 1.382.2.153 src/compose.c; cvs diff -u -r 1.204.2.52 -r 1.204.2.53 src/prefs_common.c; cvs diff -u -r 1.103.2.25 -r 1.103.2.26 src/prefs_common.h; cvs diff -u -r 1.1.2.6 -r 1.1.2.7 src/prefs_wrapping.c; ) > 1.9.13cvs41.patchset ( cvs diff -u -r 1.382.2.153 -r 1.382.2.154 src/compose.c; cvs diff -u -r 1.49.2.54 -r 1.49.2.55 src/procmime.c; cvs diff -u -r 1.105.2.31 -r 1.105.2.32 src/prefs_account.c; ) > 1.9.13cvs42.patchset +( cvs diff -u -r 1.149.2.31 -r 1.149.2.32 src/inc.c; cvs diff -u -r 1.204.2.53 -r 1.204.2.54 src/prefs_common.c; cvs diff -u -r 1.103.2.26 -r 1.103.2.27 src/prefs_common.h; ) > 1.9.13cvs43.patchset diff --git a/configure.ac b/configure.ac index e25d6ea90..7e39be88a 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=13 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=42 +EXTRA_VERSION=43 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/inc.c b/src/inc.c index ebbb159b4..522dd68e9 100644 --- a/src/inc.c +++ b/src/inc.c @@ -641,7 +641,7 @@ static gint inc_start(IncProgressDialog *inc_dialog) g_free(filename); if (pop3_session->ac_prefs->filter_on_recv) - statusbar_progress_all(cur++,total, 10); + statusbar_progress_all(cur++,total, prefs_common.statusbar_update_step); if (!pop3_session->ac_prefs->filter_on_recv || !procmsg_msginfo_filter(msginfo)) diff --git a/src/prefs_common.c b/src/prefs_common.c index 98e0b8284..eba8c4611 100644 --- a/src/prefs_common.c +++ b/src/prefs_common.c @@ -492,6 +492,8 @@ static PrefParam param[] = { NULL, NULL, NULL}, {"separate_message", "FALSE", &prefs_common.sep_msg, P_BOOL, NULL, NULL, NULL}, + {"statusbar_update_step", "10", &prefs_common.statusbar_update_step, P_INT, + NULL, NULL, NULL}, /* {"emulate_emacs", "FALSE", &prefs_common.emulate_emacs, P_BOOL, NULL, NULL, NULL}, */ diff --git a/src/prefs_common.h b/src/prefs_common.h index 5b4c2a469..cee122fdf 100644 --- a/src/prefs_common.h +++ b/src/prefs_common.h @@ -273,6 +273,7 @@ struct _PrefsCommon /* Interface */ gboolean sep_folder; gboolean sep_msg; + gint statusbar_update_step; gboolean emulate_emacs; gboolean always_show_msg; gboolean mark_as_read_on_new_window;