2006-03-18 [colin] 2.0.0cvs154
[claws.git] / ChangeLog
index 65038f105b155f3633e3e283fbb482090f1c7576..3c5de6c2725f63512a333d471a8490a67c2f5420 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,190 @@
+2006-03-18 [colin]     2.0.0cvs154
+
+       * src/textview.c
+               Fix text cursor ;)
+
+2006-03-18 [colin]     2.0.0cvs153
+
+       * src/gtk/filesel.c
+               Make sure we hide the preview if we didn't get
+               a filename
+
+2006-03-18 [colin]     2.0.0cvs152
+
+       * src/summaryview.c
+               Set cursor to watch for execution (fixes lack
+               of watch-cursor when dnd'ing hundreds of mails)
+       * src/gtk/filesel.c
+               Check that mime type is 'image/*' before updating
+               the preview (maybe fix crashes on Solaris+gtk2.8.4 ?)
+
+2006-03-18 [colin]     2.0.0cvs151
+
+       * src/mainwindow.c
+       * src/textview.c
+       * src/textview.h
+               Put a watch cursor in textview too when the mainwindow's
+               cursor in a watch
+
+2006-03-18 [colin]     2.0.0cvs150
+
+       * src/folder.c
+               Change wrong asserts to simple tests
+
+2006-03-17 [colin]     2.0.0cvs149
+
+       * src/mainwindow.c
+       * src/mainwindow.h
+       * src/prefs_msg_colors.c
+       * src/summaryview.c
+       * src/summaryview.h
+       * src/gtk/colorlabel.c
+       * src/gtk/colorlabel.h
+               Add a color label menu in the main menubar
+               Add (fixed) accels Ctrl-{0-7} to change the color
+               They have to be fixed because the menu's dynamic,
+               the items are complex widgets, hence we can't use
+               a GtkItemFactory.
+
+
+2006-03-17 [wwp]       2.0.0cvs148
+
+       * src/compose.c
+               rollback few lines from my previous commit (those lines come from
+               a pending patch, accidentally commited, even if neutral as they are
+               commented out).
+
+2006-03-17 [wwp]       2.0.0cvs147
+
+       * src/compose.c
+               fix a compilation warning (wrong return type, introduced w/ cvs143), and
+               applied code style/indentation to the modified function.
+
+2006-03-17 [wwp]       2.0.0cvs146
+
+       * src/procmsg.c
+       * src/compose.c
+               fix for bug #908: some IMAP servers dislike \x7f char in the RMID (thanks to Colin).
+
+2006-03-17 [paul]
+
+       2.1.0-rc1 released
+
+2006-03-17 [paul]      2.0.0cvs145
+
+       * src/main.c
+               addressbook_read_file() was called twice
+       * src/textview.c
+               X-Mailer highlighting
+
+2006-03-16 [colin]     2.0.0cvs144
+
+       * src/sourcewindow.c
+       * src/sourcewindow.h
+               And the last one, in source window.
+
+2006-03-16 [colin]     2.0.0cvs143
+
+       * src/compose.c
+       * src/compose.h
+               Fix the same stuff in compose
+
+2006-03-16 [colin]     2.0.0cvs142
+
+       * src/messageview.c
+               Complete the previous messageview crash fix
+
+2006-03-16 [colin]     2.0.0cvs141
+
+       * src/procmsg.h
+       * src/procmsg.c
+       * src/folder.c
+               Fix POSTPROCESSING hook
+               Patch by H. Merijn Brand
+
+       * src/procmime.c
+       * src/procmime.h
+               Parse Content-Location
+
+       * src/toolbar.c
+       * src/messageview.c
+       * src/messageview.h
+               Don't crash when a top-level MessageView has
+               been closed on us. Same problematic than
+               yesterday's quicksearch issue.
+
+2006-03-15 [colin]     2.0.0cvs140
+
+       * src/gtk/quicksearch.c
+               Fix a bitchy race we didn't think about when we
+               added quicksearch cancellation:
+               If the search is not on cached fields, for example
+               body_part matchcase "stuff"
+               the matcher code has to get the whole message. If
+               we're on IMAP, that can be slow, and in order to
+               be non-blocking, the IMAP code idle loop processes
+               gtk events too. So it is possible to cancel a
+               quicksearch while the matcher is getting the mail's
+               body. After matcher got its body, it will start to
+               iterate over the matcher list that the Quicksearch's
+               clear_search_cb() just freed via prepare_matcher().
+               SIGSEGV ensues.
+               The fix consists of guarding the matcherlist_match()
+               call with a boolean 'matching'. If we reset the
+               quicksearch while matching is TRUE, we don't free
+               the matcherlist anymore like we did, but we set
+               another new flag, deferred_free, to TRUE. Then,
+               in quicksearch_match(), just after returning from
+               matcherlist_match() and unsetting the matching flag,
+               we check the deferred_free flag and do the
+               prepare_matcher() (which does the matcherlist_free)
+               for real, so we free the matcherlist once it's not
+               used anymore.
+               As all of this runs via the glib main loop, we
+               luckily don't need a mutex.
+       * src/summaryview.c
+               Also, show progress while searching.
+
+
+2006-03-14 [colin]     2.0.0cvs139
+
+       * src/alertpanel.c
+               Make alertpanel_is_open non-static
+
+2006-03-14 [colin]     2.0.0cvs138
+
+       * src/prefs_spelling.c
+               Cleanups - Fabien Vantard
+
+2006-03-14 [wwp]       2.0.0cvs137
+
+       * src/main.c
+               code style normalization (curly braces, indentation).
+
+2006-03-14 [wwp]       2.0.0cvs137
+
+       * src/main.c
+               code style (braces, indentation)
+
+2006-03-12 [paul]      2.0.0cvs136
+
+       * src/prefs_common.c
+               trans_hdr defaults to FALSE to be RFC-savvy
+       * src/prefs_summaries.c
+               add a tooltip to the trans_hdr option
+               
+
+2006-03-12 [paul]      2.0.0cvs135
+
+       * src/prefs_matcher.c
+               give a little more width to the combos
+       * src/prefs_display_header.c
+       * src/textview.c
+               translate headers if prefs_common.trans_hdr
+               is TRUE
+
+       Patches by Pawel Pekala
+
 2006-03-12 [paul]      2.0.0cvs134
 
        * src/plugins/clamav/clamav_plugin.c