+2001-11-20
+
+ * src/addrbook.c: removed redundant functions, and fixed generation
+ of spurious address book file names.
+ * src/addrindex.c: V-Card -> vCard.
+
2001-11-19
* src/textview.c: get_email_part(): replaced isalnum() with
the macro IS_ASCII_ALNUM() which restricts the range of
characters to 7bit ASCII (thanks to Shimamoto).
+ * src/utils.c: remote_tzoffset_sec(): workaround for malformed
+ timezone offset.
2001-11-18
+2001-11-20 [paul] 0.6.5claws25
+
+ * sync with sylpheed 0.6.5cvs11
+ see ChangeLog entry 2001-11-19 (src/utils.c)
+
2001-11-20 [hiro]
* src/compose.c
+2001-11-20
+
+ * src/addrbook.c: ;ʬ¤Ê´Ø¿ô¤òºï½ü¤·¡¢ÉÔÀµ¤Ê¥¢¥É¥ì¥¹Ä¢¥Õ¥¡¥¤¥ë̾
+ ¤¬À¸À®¤µ¤ì¤ë¤Î¤ò½¤Àµ¡£
+ * src/addrindex.c: V-Card -> vCard¡£
+
2001-11-19
* src/textview.c: get_email_part(): isalnum() ¤òʸ»ú¤ÎÈϰϤò
7bit ASCII ¤ÎÈϰϤ˲¡¤µ¤¨¤ë¥Þ¥¯¥í IS_ASCII_ALNUM() ¤ÇÃÖ¤´¹¤¨¤¿
(ÅçËܤµ¤ó thanks)¡£
+ * src/utils.c: remote_tzoffset_sec(): °Û¾ï¤Ê¥¿¥¤¥à¥¾¡¼¥ó¥ª¥Õ¥»¥Ã¥È
+ ¤Ø¤ÎÂн衣
2001-11-18
MICRO_VERSION=5
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=claws24
+EXTRA_VERSION=claws25
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl
gchar *p;
gchar c;
gint iustz;
- gint h, m;
+ gint offset;
time_t remoteoffset;
strncpy(zone3, zone, 3);
zone3[3] = '\0';
remoteoffset = 0;
- if (sscanf(zone, "%c%2d%2d", &c, &h, &m) == 3 &&
+ if (sscanf(zone, "%c%d", &c, &offset) == 2 &&
(c == '+' || c == '-')) {
- remoteoffset = ((h * 60) + m) * 60;
+ remoteoffset = ((offset / 100) * 60 + (offset % 100)) * 60;
if (c == '-')
remoteoffset = -remoteoffset;
} else if (!strncmp(zone, "UT" , 2) ||