* src/compose.c
replace '\n' and '\r' before removing trailing spaces
* src/folder.[ch]
* src/folderview.c
add information about new or removed items in folder tree change
notification and use this in folderview to add and remove only
the appected items and not refresh the whole tree
* src/folder.c
* src/folderview.c
invoke notification hook for folder tree changes after append
and remove folder
(closes Bug 294 Crash while moving folder with many subdirectories)
* src/folderview.c
fix bug that the current summary settings were copied to the
wrong folder item, when the folder item prefs are opened.
Copying is not required because summary settings and
folder_item_prefs do not contain the same settings
* src/Makefile.am
* src/account.c
* src/folder.[ch]
* src/folder_item_prefs.[ch] ** NEW **
* src/folderview.c
* src/mainwindow.c
* src/mh.c
* src/prefs_gtk.c
* src/prefs_scoring.c
* src/summaryview.c
* src/prefs_folder_item.[ch]
o seperate FolderItemPrefs (formerly PrefsFolderItem) and the
Properties dialog
o use prefswindow for folder properties
* src/gtk/prefswindow.[ch]
change implementation to use an invisible notebook instead
of unparenting widgets
* src/folder.[ch]
o add notification hook for folder tree changes
o invoke hooks after folder tree scanning
* src/folderview.[ch]
register hook for folder tree changes that
updates the ctree
(there are more places that should be updated, like add, remove
or move folder)
(closes Bug 164 Crash on rebuild folder tree)
(closes Bug 190 Crash on 'rebuilding folder tree')
* src/folder.c
* src/folderview.c
* src/imap.c
don't use imap_scan_folder anymore. Instead call folder_item_scan
for every folder after rebuilding the folder tree.
(closes Bug 19 imap_scan_folder() computes incorrectly number of new
messages)
* src/account.c
* src/folder.[ch]
* src/folderview.c
* src/imap.c
* src/inc.c
* src/main.c
* src/mainwindow.c
* src/mbox_folder.c
* src/mh.c
* src/mimeview.h
* src/msgcache.[ch]
* src/news.c
* src/procmime.h
* src/procmsg.[ch]
* src/setup.c
* src/gtk/gtkutils.c
o rename structure field names class and new to klass and
new_msgs, to allow including files in C++
o add 'extern "C"' block to some header files
o add MsgInfoList and MsgNumberList as alias for GSList for
developers to know what type of list is expected
* src/plugins/image_viewer/plugin.c
* src/plugins/image_viewer/viewer.[ch]
* src/plugins/image_viewer/viewerprefs.[ch]
rename function names to prevent conflicts
* src/folder.c
* src/imap.c
* src/common/socket.[ch]
set socket state to DISCONNECTED when any operation
fails to allow reconnecting in IMAP code without
checking the return code of all calls to the command
functions
* src/folderview.c
* src/summaryview.c
remove some more stuff that depends on specific
folder types
* src/folder.[ch]
* src/foldersel.c
* src/folderview.c
* src/imap.c
* src/mbox_folder.c
* src/mh.c
* src/news.c
* src/prefs_scoring.c
* src/summaryview.c
use a common function to get a displayable name
for a FolderItem
folderview_check_new(): return the number of new messages
since last check.
* src/inc.c
inc_account_mail(): Disable counting of new messages for IMAP
and NNTP until bug [19] and [14] are fixed.
* 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/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/logwindow.[ch]
* src/common/log.[ch]
implement logging using a hook function
* src/folderview.c
* src/folder.[ch]
define hooklist name in header file to avoid
errors caused by wrong spelling of hooklist names
* src/toolbar.c
fix warnings
* src/common/Makefile.am
add src/common/hooks.[ch]
* src/common/hooks.[ch]
implement a simple hook system using glib's hook functions
* src/folder.[ch]
* src/folderview.c
use new hook system for folder item updates