+2004-06-17
+
+ * version 0.9.12
+
+2004-06-17
+
+ * src/session.c: session_set_timeout(): fixed a bug that didn't
+ reset timeout_tag when interval is 0.
+
+2004-06-16
+
+ * src/gtkstext.c: gtk_stext_update_text(): added null checking for
+ cache (thanks to Jim Hranicky).
+
+2004-06-15
+
+ * src/defs.h: increased CACHE_VERSION to work around the
+ incompatibility of the cache on some platforms (ex. FreeBSD).
+ * src/procmsg.c: procmsg_read_cache(): discard all read cache data
+ if an error occurred.
+
+2004-06-10
+
+ * src/summaryview.[ch]: hide 'Re-edit' menu when it's unusable.
+
2004-06-08
* src/inc.[ch]
+2004-06-17 [paul] 0.9.11cvs13
+
+ * sync with main 0.9.12 release
+ src/session.c
+ session_set_timeout(): fixed a bug that didn't
+ reset timeout_tag when interval is 0.
+
2004-06-16 [christoph] 0.9.11cvs12
* src/textview.c
+2004-06-17
+
+ * version 0.9.12
+
+2004-06-17
+
+ * src/session.c: session_set_timeout(): interval ¤¬ 0 ¤Î¤È¤
+ timeout_tag ¤ò¥ê¥»¥Ã¥È¤·¤Æ¤¤¤Ê¤«¤Ã¤¿¥Ð¥°¤ò½¤Àµ¡£
+
+2004-06-16
+
+ * src/gtkstext.c: gtk_stext_update_text(): cache ¤Î null ¥Á¥§¥Ã¥¯¤ò
+ ÄɲÃ(Jim Hranicky ¤µ¤ó thanks)¡£
+
+2004-06-15
+
+ * src/defs.h: ÆÃÄê¤Î¥×¥é¥Ã¥È¥Õ¥©¡¼¥à(Îã: FreeBSD)¤Ë¤ª¤±¤ë¥¥ã¥Ã¥·¥å
+ ¤ÎÈó¸ß´¹ÀÌäÂê¤ËÂн褹¤ë¤¿¤á¤Ë CACHE_VERSION ¤òÁý²Ã¡£
+ * src/procmsg.c: procmsg_read_cache(): ¥¨¥é¡¼¤¬È¯À¸¤·¤¿¤éÆÉ¤ß¹þ¤ó¤À
+ ¥¥ã¥Ã¥·¥å¥Ç¡¼¥¿¤òÁ´¤ÆÇË´þ¤¹¤ë¤è¤¦¤Ë¤·¤¿¡£
+
+2004-06-10
+
+ * src/summaryview.[ch]: »ÈÍÑÉÔ²Äǽ¤Ê¤È¤¤Ï¡ÖºÆÊÔ½¸¡×¥á¥Ë¥å¡¼¤ò±£¤¹
+ ¤è¤¦¤Ë¤·¤¿¡£
+
2004-06-08
* src/inc.[ch]
Changes of Sylpheed
+* 0.9.12
+
+ * A session timeout for POP3/SMTP has been implemented.
+ * The 'Print' menu on the context menu has been restored.
+ * the value of CACHE_VERSION has been increased to prevent a cache
+ incompatibility problem on some platforms such as FreeBSD.
+
* 0.9.11
* The spring-loaded folder has been implemented for the folder view.
MICRO_VERSION=11
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=12
+EXTRA_VERSION=13
EXTRA_RELEASE=
if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
if (interval > 0)
session->timeout_tag =
g_timeout_add(interval, session_timeout_cb, session);
+ else
+ session->timeout_tag = 0;
}
static gboolean session_timeout_cb(gpointer data)