* src/summaryview.c
* src/procmsg.[ch]
fix wrong usage of procmsg_find_children in summaryview
by using procmsg_update_unread_children instead of
summaryview_update_unread_children
* src/folder.c
fix update for source folder when moving messages
* src/procmsg.[ch]
* src/summaryview.c
use function to set to_folder for message infos and
automatically update the op_count for old and new
folder
* src/compose.c
* src/folder.[ch]
* src/folderview.c
* src/import.c
* src/inc.c
* src/main.c
* src/mainwindow.c
* src/messageview.c
* src/prefs_folder_item.c
* src/procmsg.c
* src/summaryview.c
* src/toolbar.c
o remove all folder update triggering from the UI code. The folder
system should know much better when a folder needs an update.
o to prevent multiple updates in a row the folder updates can be
frozen for some time.
Note: - Please verify that no updates are missing
- Check where freeze/thaws should be added
* src/quote_fmt.c
* src/summaryview.[ch]
* src/gtk/Makefile.am
* src/gtk/description_window.[ch] ** NEW **
use a generic window to display syntax descriptions
currently used in quote_fmt and summaryview (new description
for extended quick search)
patch by Ivan Francolin Martinez (ivanfm@users.sourceforge.net)
* src/mainwindow.c
mainwindow_focus_in_event(): remove grab event check
* src/summaryview.c
summary_button_pressed(): move selection on right-click
too. we can't possibly move the selection back after
canceling a dialog, because gtk's incomplete focus
management. whether this is a good solution, only time
will tell.
set gtksctree's anchor correct (immediate execute
changes the tree's layout, and anchor points at
the incorrect row). fixes "[ 657233 ] multiple msg
delete sometimes off by 1".
we probably have to look for more tree layout /
anchor glitches.
summary_thread_build(): fix real cause of the crash mentioned in
0.8.7claws3. use subject_XXX() and not g_hash_table_XXX() functions,
this way we get meaningful ctree nodes
summary_thread_build(): fix crash because of focus != selection
after threading. when deleting the selection, gtk tries but fails
to find the correct focusable element. we now force the selection
to be focused. this should solve the infamous bug reported by
Jason Wojciechowski (bug "[ 633443 ] Crash on deleting messages").
a test case is available.
* src/common/utils.c
* src/summaryview.c
reimplement expand_search_string using GString to
prevent crashs caused by miscalculated string
lengths reported by Paul
* src/summaryview.c
don't use "changed" to check if op_count has to be changed as it
is also set when the message has unread children
(closes bug [ 653221 ] crash while deleting duplicates)
* src/folderview.c
* src/logwindow.c
* src/statusbar.c
* src/summaryview.c
only abort hook invokation if required data is missing not
if our own data pointer is NULL, update hookfunction for
log window
* src/folderview.c
* src/statusbar.c
* src/summaryview.c
* src/common/hooks.[ch]
hook functions now have a gboolean return value, if a hook
returns TRUE it will stop executing of any more hooks in
the same hooklist for this invokation
* src/procmsg.[ch]
* src/summaryview.c
implement msginfo update callback using sylpheed's new
hook system. Invoke hooks from procmsg_msginfo_[un]set_flags.
NOTE: nodes are updated 2 times for now when setting flags (user action),
once by the hook and once by the summaryview flag setting functions.
* doc-src/ui_seperation.txt ** NEW **
information for ui seperation
* src/Makefile.am
remove files that were moved to common
include common directory by default for the header files
* src/inc.c
* src/common/socket.c
* src/automaton.[ch]
implement automaton using g_io_*-functions instead of
gdk_input_add to make it ui independent
* src/codeconv.c
* src/compose.c
* src/ldif.c
* src/pgptext.c
* src/procmime.c
* src/rfc2015.c
* src/smtp.c
* src/unmime.c
remove common/ prefix because directory is now in
include path
* src/compose.c
* src/folder.c
* src/folderview.c
* src/mainwindow.c
* src/messageview.c
* src/prefs_common.c
* src/procmsg.c
* src/rfc2015.c
fix warnings
* src/imap.c
* src/inc.c
* src/news.c
* src/pop.c
* src/send.c
* src/smtp.c
* src/ssl_certificate.c
add log.h header file for logging functions
* src/main.c
* src/common/utils.c
* src/summaryview.c
* src/xml.c
o move debug_mode to commno/utils.c
o add functions to set and get debug_mode
* src/defs.h ** REMOVE **
* src/intl.h ** REMOVE **
* src/socket.[ch] ** REMOVE **
* src/ssl.[ch] ** REMOVE **
* src/utils.[ch] ** REMOVE **
replaced by new files in src/common/
* src/common/Makefile.am
add new files in src/common/
* src/common/defs.h ** NEW **
* src/common/intl.h ** NEW **
* src/common/log.[ch] ** NEW **
* src/common/socket.[ch] ** NEW **
* src/common/ssl.[ch] ** NEW **
* src/common/utils.[ch] ** NEW **
replacement for files in src/
* src/filtering.c
* src/summaryview.c
remove calls to folder->change_flags that are now
done by procmsg flag functions (seems it is not
used by any foldertype anyway)
* src/folder.c
init folder->change_flags with NULL
added Makefile
* src/filtering.[ch]
* src/folder.[ch]
* src/folderview.[ch]
* src/import.c
* src/inc.[ch]
* src/mbox.[ch]
* src/procmsg.c
* src/summaryview.[ch]
o added new flag need_update to FolderItem
o removed folder_table from various functions from tracking
folder updates
o set need_update flags in folder.c's move, copy and delete
functions and procmsg's flags functions
o added function folderview_update_items_when_required that
updates all folders with need_update set
o call folderview_update_items_when_required instead of
folderview_update_item_foreach
selected files (closes "[ 612279 ] save multiple mesg(s) in
'Save as ...'")
* AUTHORS
add Satoshi Nagayasu
* src/summaryview.c
summary_save_as(): allow saving selected files to
one file
summary_set_menu_sensitive: enable "Save As..." when
multiple files are selected
* src/utils.[ch]
append_file(): new function
* src/stock_pixmap.c
* src/stock_pixmap.h
* src/pixmaps/quicksearch.xpm *ADDED*
Add the quicksearch pixmap
* src/mainwindow.c
* src/summaryview.c
* src/summaryview.h
Make quicksearch bar visible/hidden via a button
o fix broken menu update for sorting type, we have to
get this info from the summaryview now
o removed setting of threaded state in menu callback
* src/summaryview.[ch]
more summaryview/folderitem seperation for
threading option
* configure.in
removed not required --with-compiler-flags option
* src/prefs_folder_item.h
* src/summaryview.[ch]
o add summary_set_prefs_from_folderitem to set
summaryview prefs (first step to remove all
references to the folderitem in summaryview)
o moved compiled regex stuff from folderitem prefs
to summaryview code