* src/procmsg.c
fix wrong flags in MsgInfo returned by
procmsg_msginfo_get_full_info()
(closes Bug 221 Deleting messages from the Message View gives incorrect
new/unread message counts in the folder view)
* src/plugins/spamassassin/spamassassin_gtk.c
add gettext macro for prefs page title
* 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/gtk/gtkvscrollbutton.c
* src/messageview.c
o improved mimeview behaviour when selecting a new message
o plus code cleanups to remove compile warnings
* configure.ac
* src/common/sylpheed.[ch]
* src/common/version.h.in
add version in numeric form to allow easy comparison
* src/plugins/demo/demo.c
add version check
- sylpheed version > plugin version => never allowed, sylpheed
could contain unknown API changes
- sylpheed version < minimum version required => don't load,
API required not available (if linking does not fail)
* src/common/hooks.c
fix crash when hooks where unregisted
* src/plugins/trayicon/trayicon.c
unregister detroy signal before destroying the widget
(still crashes when the plugin is unloaded)
* src/common/session.c
fix opening of SSL connections
* src/plugins/image_viewer/Makefile.am
add OPENSSL_CFLAGS (we should find a better solution to remove
this dependencies if they are not required)
* src/plugins/spamassassin/spamassassin.c
remove setlocale workaround (fixed in libspamc)
o fix a bug where 'last' didn't really point to the last message
in the top level list of children, but to the last threaded
message.
o clean up and make it easier to sync
tune the threader so it will not subject-thread any message
without a subject prefix (this will not thread correctly if
a parent is delivered after their childs, but it looks
better right now)
summary_searchbar_pressed() should return TRUE to signal that
event was handled. when returning void, the return value passed
to GTK is actually random, but maybe FALSE, in which case the
event is handled by parent
* src/folder.c
correct check if folder supports removing when a message is
moved. if not the message is only copied.
(closes Bug 132 crash on startup in newsgroups folders)