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.
This commit is contained in:
parent
4a83dc48ca
commit
00f108279f
6 changed files with 15 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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=
|
||||
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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}, */
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue