+2001-10-05
+
+ * src/summaryview.c: summary_show(): fixed a bug that didn't show
+ message even if the 'open unread message on entering folder'
+ option was turned on.
+
2001-10-03
* src/procmime.c: procmime_get_text_content(): supported HTML.
+2001-10-06 [paul] 0.6.2claws21
+
+ * po/pt_BR.po
+ updated translation, contains some fixes and new
+ translations, submitted by Gustavo Noronha Silva
+ <kov@debian.org>
+
+ * src/prefs_common.c
+ change 'each' to 'every' - fix dubious English
+
+ * sync with sylpheed 0.6.2cvs11
+
2001-10-05 [alfons] 0.6.2claws20
* src/mainwindow.[ch], src/folderview.c
+2001-10-05
+
+ * src/summaryview.c: summary_show(): ¡Ö¥Õ¥©¥ë¥À¤ËÆþ¤Ã¤¿¤È¤¤Ë̤ÆÉ
+ ¥á¥Ã¥»¡¼¥¸¤ò³«¤¯¡×¥ª¥×¥·¥ç¥ó¤¬ ON ¤Ë¤Ê¤Ã¤Æ¤¤¤Æ¤â¥á¥Ã¥»¡¼¥¸¤ò
+ ɽ¼¨¤·¤Ê¤¤¥Ð¥°¤ò½¤Àµ¡£
+
2001-10-03
* src/procmime.c: procmime_get_text_content(): HTML ¤ËÂбþ¡£
Changes of Sylpheed
+* 0.6.3
+
+ * Message body text search has been implemented.
+ * The text part of nested multipart message, or HTML only message
+ is now correctly quoted on replying.
+ * The status of threading is now preserved for each folders.
+ * User name and password of IMAP4 account which include spaces are now
+ handled correctly.
+ * Workaround for 8bit characters conversion failure on C locale when
+ using libjconv has been made.
+ * Some bugs that caused crashes have been fixed.
+
* 0.6.2
* The new addressbook has been implemented (Match Grun).
MICRO_VERSION=2
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=claws20
+EXTRA_VERSION=claws21
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl
if (node == NULL && GTK_CLIST(ctree)->row_list != NULL)
node = GTK_CTREE_NODE(GTK_CLIST(ctree)->row_list_end);
- summary_select_node(summaryview, node,
- prefs_common.open_unread_on_enter);
+ if (prefs_common.open_unread_on_enter) {
+ summary_unlock(summaryview);
+ summary_select_node(summaryview, node, TRUE);
+ summary_lock(summaryview);
+ } else
+ summary_select_node(summaryview, node, FALSE);
}
summary_status_show(summaryview);