-
Notifications
You must be signed in to change notification settings - Fork 8
/
ChangeLog-1.0
10800 lines (8174 loc) · 324 KB
/
ChangeLog-1.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2004-12-24
* version 1.0.0
2004-12-22
* src/account.c: account_delete(): fixed the crash on deleting a
remote account if the corresponding folder was selected (Debian BTS
#284483).
2004-12-21
* NEWS, TODO, TODO.jp: updated.
* manual/ja/sylpheed.sgml: updated.
2004-12-17
* src/action.c: parse_append_filename(): escape all special characters
without quote (thanks to IWAMOTO Kouichi and Yoichi Imai).
* AUTHORS: updated.
2004-12-16
* INSTALL
INSTALL.jp: updated the confirmation list.
2004-12-15
* version 1.0.0rc
2004-12-15
* src/compose.c: compose_wrap_line_all_full(): fixed the logic of
space insertion.
2004-12-15
* manual/ja/sylpheed.sgml: updated.
2004-12-15
* src/addrbook.c
src/addressbook.c
src/addrindex.c
src/jpilot.c
src/ldif.c
src/syldap.c
src/vcard.c: removed '... defined but not used' warnings.
2004-12-13
* src/compose.c: compose_wrap_line_all_full(): only insert space
when joining lines if the first character of the next line is not
space, or it's a boundary between multi- and single-byte characters.
2004-12-13
* src/action.c: parse_append_filename(): escape special characters
(thanks to IWAMOTO Kouichi).
* src/utils.c: subst_for_filename(): also substitute single quote.
2004-12-10
* src/compose.c: compose_wrap_line_all_full(): fixed joining line
problem when the first character of the next line is not
alphanumeric.
2004-12-09
* src/main.c: send_queue()
src/mainwindow.c: send_queue_cb()
src/compose.c: compose_send(), compose_send_later_cb(): ask user
to switch to online if in offline mode when sending.
2004-12-08
* src/imap.c: applied bitlength_clean_up.imap.c.patch that fixes the
integer length problem on 64-bit platforms (thanks to Alfons).
2004-12-03
* version 1.0.0beta4
2004-12-03
* src/pixmaps/regular.xpm: removed unused icon.
* README
README.jp: updated.
2004-12-02
* src/pop.c: pop3_write_msg_to_file(): don't convert single CRs to
LFs (thanks to Alfons).
* src/utils.[ch]: my_memmem(): original implementation of memmem().
2004-12-01
* manual/ja/sylpheed.sgml: updated for the latest version.
2004-12-01
* src/pixmaps/unread.xpm: adjusted the hue of image.
2004-12-01
* src/filter.c: removed C99 '//' comments.
2004-11-30
* src/pixmaps/dir-close.xpm
src/pixmaps/dir-open.xpm
src/pixmaps/dir-noselect.xpm
src/pixmaps/group.xpm: adjusted the hue of images.
2004-11-29
* src/pixmaps/dir-close.xpm
src/pixmaps/dir-open.xpm
src/pixmaps/dir-noselect.xpm
src/pixmaps/group.xpm: replaced with new images.
2004-11-29
* src/pixmaps/folder.xpm: removed.
2004-11-26
* src/summaryview.c: changed one-letter column titles to icons.
* src/pixmaps/mail.xpm: new.
2004-11-26
* src/summaryview.c: summary_execute(): pop summary statusbar message.
2004-11-26
* src/prefs_common.c: added Web browser commands.
2004-11-26
* manual/ja/sylpheed.sgml: updated for the latest version.
* manual/ja/Makefile.am: added target 'update-html'.
2004-11-22
* INSTALL
INSTALL.jp: updated the confirmation list.
2004-11-19
* src/jpilot.c: unify the coding style.
* src/mainwindow.c: fixed duplicated accelerator.
2004-11-18
* src/procmsg.c: write_mark_func(): fixed bad cast on the system that
sizeof(gpointer) != guint.
2004-11-18
* src/mainwindow.c: fixed English (trashes -> trash).
* src/prefs_common.c: prefs_keybind_apply_clicked(): updated menu
strings.
2004-11-18
* src/mainwindow.c: changed the menu label "Empty trash" to
"Empty all trashes".
2004-11-16
* version 1.0.0beta3
2004-11-16
* src/pixmaps/error.xpm: made them smaller size to fit CList row.
2004-11-16
* src/jpilot.c: applied the JPilot addressbook Japanese support
patch (thanks to IWAMOTO, Kouichi).
2004-11-15
* src/compose.c
src/procmime.[ch]: use BASE64 encoding if the ratio of 8bit
characters in attaching text files is greater than 20%, otherwise
use quoted-printable (or 7bit if not at all).
2004-11-12
* src/compose.c: compose_write_attach()
src/procmime.c: procmime_decode_content():
canonicalize text files before encoding to BASE64, and
uncanonicalize after decoding to conform with RFC 2045
(thanks to Nicolas Degory).
2004-11-11
* src/pixmaps/complete.xpm
src/pixmaps/continue.xpm: made them smaller size to fit CList
row.
2004-11-11
* src/statusbar.c: statusbar_create(): set the width of widget to 1
not to expand automatically.
* src/utils.[ch]: trim_string_before(): trim beginning characters
longer than the specified length and add "...".
* src/folderview.c
src/summaryview.c: use trim_string_before() to display folder name.
2004-11-10
* src/defs.h
src/prefs_common.c: made mozilla-firefox as default browser.
2004-11-09
* src/summaryview.c: summary_key_pressed()
src/textview.c: textview_key_pressed(): back scroll when Shift or
Alt and Space key is pressed. Also back scroll when Shift and Enter
key is pressed.
2004-11-09
* src/foldersel.c: foldersel_new_folder(): select newly created
folder.
2004-11-08
* version 1.0.0beta2
2004-11-08
* src/account.c
src/imap.c
src/inc.c
src/pop.c
src/prefs_account.[ch]: obsoleted RecvProtocol::A_APOP and made an
option for APOP.
prefs_account_protocol_set_optmenu(): refactored.
2004-11-07
* src/folderview.c: folderview_empty_trash_cb(): removed unused
variables.
2004-11-05
* src/summary_search.c: use C string instead of wide character string.
Enabled AND/OR matching.
2004-11-05
* src/folderview.[ch]
src/mainwindow.c: change menu sensitivity of File/Folder and
File/Mailbox according to selected folder.
Enabled newsgroups subscription from 'File/Folder/Create new folder'.
2004-11-04
* src/folderview.[ch]
src/mainwindow.c: reorganized folder/mailbox menus.
Enabled 'Remove mailbox', 'Check for new messages' and
'Rebuild folder tree' on main menu.
Removed 'Remove mailbox' from the folder context menu.
2004-11-04
* src/folderview.c
src/mainwindow.c
src/procmsg.[ch]: added 'Empty trash' to the folder context menu.
2004-11-01
* src/filter.[ch]
src/summaryview.c: don't move/delete immediately when
immediate_execution is off.
2004-10-29
* version 1.0.0beta1
2004-10-29
* upgraded to gettext-0.14.1.
2004-10-28
* src/compose.c: reorganized the menu.
* src/mh.c: removed g_print() for debug.
2004-10-27
* src/compose.c
src/prefs_template.c
src/template.[ch]: added Cc: to template parameter.
2004-10-26
* src/prefs_filter_edit.c: fixed condition menu switching problem
on editing existing rules.
2004-10-25
* src/filter.c: filter_action_exec(): update counters of FolderItem
on local filtering (fixes wrong folderview message count).
2004-10-25
* src/mbox.c: proc_mbox(): check if folder_table is NULL (fix
warnings).
2004-10-21
* src/pixmaps/stock_add_16.xpm
src/pixmaps/stock_remove_16.xpm: converted from stock icons in
gtk-2.4.
* src/prefs_filter_edit.c: use icons for add/remove button.
* src/stock_pixmap.[ch]: added add/remove icons.
2004-10-21
* src/pixmaps/stock_dialog_error_48.xpm
src/pixmaps/stock_dialog_info_48.xpm
src/pixmaps/stock_dialog_question_48.xpm
src/pixmaps/stock_dialog_warning_48.xpm: converted dialog icons from
stock icons in gtk-2.4.
* src/alertpanel.[ch]: added icons to the alert dialog.
alertpanel_message(): Added AlertType.
* src/stock_pixmaps.[ch]: added dialog icons.
2004-10-08
* src/procmsg.c: removed verbose debug prints.
2004-10-07
* version 0.9.99
2004-10-07
* src/procmsg.c: procmsg_send_queue()
src/send_message.c: send_queue_info_free(): fixed segmentation fault
when trying to send an invalid queued message.
2004-10-06
* src/mainwindow.c: added separators to the File menu.
* src/prefs_filter_edit.c: removed some debug prints.
2004-10-05
* src/inputdialog.c: input_dialog_open(): don't start auto-checking
mail while opening the input dialog.
2004-10-04
* src/mh.c: mh_remove_all_msg()
src/procmsg.c: procmsg_empty_trash(): fixed wrong message count
after emptying trash.
2004-10-01
* src/prefs_filter.c: fixed a bug that didn't add an auto-created
rule.
* src/prefs_filter_edit.c: prefs_filter_edit_dialog_to_rule(): check
if rule name exists.
2004-09-30
* src/filter.c: filter_apply_msginfo(): don't apply filter if
FilterRule::enabled == FALSE.
* src/prefs_filter.c: implemented Enabled column.
* src/account.c: account_selected(): modified the behavior of
double-click.
2004-09-30
* src/colorlabel.c: modified the menu label size. Removed "None" from
color menu.
* src/filter.[ch]
src/prefs_filter_edit.c: implemented color label action.
* src/summaryview.c: summary_filter_func(): update summary flags
when flag action is performed.
2004-09-29
* src/prefs_filter_edit.c: added color label.
* src/colorlabel.c: modified the menu label size and border.
2004-09-28
* src/filter.[ch]
src/prefs_filter_edit.c: improved error handling when creating a
rule.
2004-09-28
* src/prefs_common.c: adjusted the default size of views.
2004-09-27
* src/filter.c
src/prefs_filter_edit.c: implemented size/age condition.
* src/menu.[ch]: menu_get_option_menu_active_user_data(): new.
2004-09-22
* src/prefs_filter_edit.c: select previous item when editing header
finished.
2004-09-22
* src/prefs_filter.[ch]
src/prefs_filter_edit.c
src/procheader.[ch]: implemented user-defined header dialog.
2004-09-17
* src/filter.c:
filter_action_exec(): modified local filtering.
strmatch_regex(): use case-insensitive regex.
* src/summaryview.[ch]: display filtering result to the status bar.
2004-09-14
* src/filter.[ch]: implemented filter rule application timing.
* src/prefs_fil_er_edit.c: prefs_filter_edit_action_hbox_set():
fixed a bug that didn't display parameter of PF_ACTION_EXEC.
2004-09-10
* src/prefs_filter.c: prefs_filter_write_user_header_list(): use
prefs_file_open() instead of fopen().
2004-09-10
* src/defs.h
src/prefs_filter.c: implemented load/save of user-defined
header list.
2004-09-09
* src/inc.c: inc_spool()
src/prefs_common.c: modified spool path config so that users can
specify both file and directory.
2004-09-09
* src/prefs_filter.[ch]
src/prefs_filter_edit.[ch]: implemented creating filter rule by
message.
2004-09-07
* src/mimeview.c: mimeview_drag_data_get()
src/summaryview.c: summary_drag_data_get(): fixed broken URI in
DnD.
2004-09-06
* src/filter.[ch]
src/summaryview.c: fixed local filtering.
* src/mh.c: mh_copy_msgs(): restored missing 'else'.
2004-09-06
* src/foldersel.c: foldersel_new_folder(): fixed possible memory
corruption, and write folder list data after appending.
* src/summaryview.c: summary_show(): up FolderItem::opened flag
after reading message list.
2004-09-03
* src/filter.c
src/inc.c
src/mbox.c
src/mh.c
src/procmsg.[ch]
src/summaryview.c: properly handle 'new' flags by using
FolderItem::mark_queue.
2004-08-31
* src/filter.c
src/inc.c: modified 'new' flags management.
2004-08-31
* src/prefs_filter.c: don't move to the last row when opening the
dialog. Clear CList when closing.
2004-08-27
* src/filter.c
src/inc.c
src/pop.[ch]
src/prefs_filter_edit.c
src/summaryview.c: implemented FLT_ACTION_EXEC and FLT_ACTION_DELETE.
2004-08-27
* src/prefs_filter.c: auto-scroll when a new rule is added.
open edit dialog when a rule is double-clicked.
prefs_filter_copy_cb(): implemented.
* src/prefs_filter_edit.c: implemented action "Stop rule evaluation".
2004-08-26
* src/filter.[ch]
src/inc.c
src/mbox.c
src/prefs_filter_edit.c
src/summaryview.c: renamed FilterResult to FilterInfo, and added
account to its members.
Implemented command test, size, age, account, and on-receive
condition.
* src/mh.c
src/procheader.c: procheader_parse_file(): also get file size and
timestamp.
* src/utils.c:
execute_async()
execute_sync()
execute_command_line(): return exit status.
2004-08-26
* src/filter.[ch]
src/inc.c: save all types of performed actions.
filter_rule_rename_dest_path(): modified for the new system.
filter_rule_delete_action_by_dest_path(): delete actions that
matches with a path.
* src/mbox.c: proc_mbox(): ignore FLT_ACTION_NOT_RECEIVE.
* src/prefs_filter.c: prefs_filter_delete_path(): modified for the new
system.
* src/summaryview.c:
summary_filter()
summary_filter_func(): modified for the new system.
2004-08-25
* src/filter.[ch]: implemented message body match.
* src/procmime.[ch]:
procmime_find_string_part()
procmime_find_string(): take function pointer for matching.
* src/procmsg.[ch]: added file_path (which is only used for temporary
messages) to MsgInfo.
procmsg_msginfo_copy()
procmsg_msginfo_free(): handle extra members.
* src/summary_search.c: modified for procmime_find_string().
* src/summaryview.c: filter_apply_local() -> filter_apply_msginfo().
* src/utils.[ch]: added function for string match.
* src/compose.c
src/undo.c: removed redundant debug messages.
2004-08-24
* implemented the new filtering system (still in progress).
* src/defs.h
src/filter.[ch]: implemented reading/writing of filter XML data.
* src/prefs_filter.[ch]
src/prefs_filter_edit.[ch]: implemented UI for the new filtering
system.
* src/inc.c
src/main.c
src/mbox.c
src/pop.c
src/summaryview.c: modified for the new filtering system.
* src/menu.h: MENUITEM_ADD(): create separator if label is NULL.
* src/procheader.[ch]: added some utility functions.
* src/utils.c: open_uri(): modified warning message.
2004-08-09
* src/main.c: removed parsing of "./gtkrc".
2004-08-04
* src/socket.c:
ssl_read()
ssl_peek(): check SSL before reading data (fixes freeze when
socket is broken).
* src/session.[ch]: session_set_access_time(): new.
* src/imap.c
src/news.c
src/nntp.c: only update last_access_time when successfully
receiving a server response.
* thanks to Cedric Pradalier for above.
2004-07-23
* src/xml.[ch]: code cleanup and added some functions.
2004-07-16
* src/pop.[ch]: pop3_getrange_uidl_recv(): relaxed invalid UIDL
checking.
2004-07-16
* src/account.[ch]
src/main.c
src/prefs.[ch]
src/prefs_account.[ch]
src/prefs_common.[ch]: unified *_{save,write}_config() to
*_write_config().
2004-06-30
* src/procheader.c:
procheader_get_one_field()
procheader_get_unfolded_line(): fixed a bug that unfolding was
broken if the sequence 'SP CR LF' appeared (thanks to NOGUCHI,
Takuya).
2004-06-23
* src/prefs_common.c: made the default of confirm_on_exit FALSE.
2004-06-23
* src/menu.[ch]: added menu_set_active().
* src/compose.c: don't change 'View/Auto wrapping' mode when selecting
accounts.
2004-06-23
* src/compose.[ch]: autowrap can be switched on/off from the compose
window.
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]
src/send_message.c
src/session.[ch]: implemented session timeout.
* src/pop.h: removed unused values from Pop3ErrorValue.
2004-06-07
* src/inc.c: inc_all_account_mail(): code cleanup.
2004-06-03
* src/procmsg.c: procmsg_read_cache_data_str(): changed gint32 to
guint32 for some platforms.
* src/summaryview.c: restored 'Print' menu.
2004-06-01
* src/about.c: modified copyright year.
2004-05-28
* version 0.9.11
2004-05-21
* src/smtp.c: comply with RFC 2821 (thanks to Alfons).
2004-05-20
* src/folderview.[ch]: implemented spring-loaded folder.
2004-05-20
* src/folderview.c: folderview_button_pressed(): enable menu item
'Search messages...' only when opened folder is selected.
2004-05-19
* src/compose.c
src/prefs_common.[ch]: removed the option "Queue messages that fail
to send".
2004-05-18
* src/summaryview.c: cleaned up the context menu.
* src/mainwindow.c: changed the position of '/Message/Re-edit'
menuitem.
2004-05-12
* src/procmsg.[ch]: fixed the type of integer value in cache data
to g(u)int32.
2004-05-11
* src/nntp.c: nntp_get_article(): ignore the protocol error of
response for some broken news servers (thanks to Davide Scola).
2004-05-11
* src/gtkutils.[ch]: added gtkut_editable_disable_im().
* src/passphrase.c: disable XIM on entering passphrase.
2004-05-11
* src/compose.c
src/folderview.c
src/inc.c
src/prefs_display_header.c
src/procmsg.h: fixed for AMD64 (and other 64-bit platforms)
(thanks to Hiroyuki Ikezoe).
2004-05-10
* src/inc.[ch]: don't use gtk_timeout_add(), instead use
gettimeofday() (to prevent infrequent lockup).
2004-03-19
* src/defs.h
src/inc.[ch]: changed the method of updating the progress dialog
to reduce the overhead on a fast network.
2004-03-16
* src/nntp.c: nntp_session_new(): attempt to authenticate at the
beginning of a session (thanks to Shiino Yuki and IWAMOTO, Kouichi).
* src/news.c
src/nntp.c: destroy session when socket error occurred.
2004-03-12
* src/mainwindow.c
src/summaryview.[ch]: added a function to filter selected
messages.
2004-03-12
* src/filter.[ch]
src/prefs_filter.c: rewrote the filtering system (the UI is not
implemented yet).
2004-03-09
* src/filter.c: fixed the matching algorithm of "not contain" flag
(also match if a header not exist, and handle same multiple
headers).
* src/imageview.c: get_resized_size(): fixed a typo that caused
resizing problem.
2004-03-02
* src/folder.c
src/mh.c: only update FolderItem::last_num when removing the last
number of message in MH folders, and don't scan in other case
(fixes wrong message count on moving).
2004-03-02
* src/folderview.c
src/summaryview.c: always move messages by default when using DnD
(except for News folder). Copy messages if Ctrl-key is pressed.
* src/mainwindow.c: main_window_empty_trash()
src/summaryview.c: summary_execute(): added missing
statusbar_pop_all().
2004-02-29
* version 0.9.10
2004-02-26
* src/prefs_common.c: made the default of "inc_local" FALSE.
2004-02-26
* src/account.c
src/folderview.c: toggle online mode when checking IMAP4 accounts.
Pop status bar after that.
* src/inc.c: code cleanup.
* src/mainwindow.[ch]: added main_window_get() and
main_window_toggle_online_if_offline().
* src/prefs_common.c: prefs_common_read_config(): fixed a bug that
made it offline mode on first execution.
2004-02-25
* src/imageview.c: enabled automatic resize on window resize.
restrict the minimum size to 16 pixels to prevent crash.
imageview_init(): don't cache images when using imlib.
imageview_show_image(): fixed memory leak.
* src/mimeview.c: mimeview_init(): call imageview_init().
2004-02-24
* src/codeconv.[ch]: added ISO-2022-JP-3 encoding.
2004-02-24
* src/codeconv.c
src/mainwindow.c
src/messageview.c: added KOI8-U encoding.
* src/prefs_common.c: prefs_message_create(): modified the string
of resizing image option.
2004-02-19
* src/addressbook.c: addressbook_list_selected(): corrected its
argument.
* src/imageview.[ch]: keep original image data in ImageView, and
enabled the toggle of resizing.
* src/messageview.[ch]
src/mimeview.[ch]: handle ImageView in MimeView instead of
MessageView.
2004-02-16
* src/imap.c
src/news.c
src/summaryview.c: removed statusbar_pop_all() from imap.c and
news.c (do it in summaryview.c).
2004-02-12
* src/inc.[ch]
src/pop.[ch]: made inc_drop_message() the virtual function of
Pop3Session and removed the dependency of pop.c on inc.h.
2004-02-12
* src/mainwindow.c
src/messageview.[ch]
src/textview.c: added statusbar to the message view with new window.
2004-02-10
* src/inc.[ch]: use hash table for progressive update.
changed update interval to 2 sec.
* src/folder.[ch]
src/mh.c
src/procmsg.c
src/summaryview.c: added FolderItem::unmarked_num to correct the
folder message counting.
2004-02-09
* src/inc.[ch]: update folderview progressively.
* src/foldersel.c: display full id for selected item.
2004-02-06
* src/folderview.[ch]: code cleanup.
folderview_append_item(): new. It appends the folder to the folder
view.
* src/foldersel.c: foldersel_new_folder(): use
folderview_append_item().
2004-02-06
* src/foldersel.c: implemented 'create new folder' function.
* src/folder.[ch]: folder_find_child_item_by_name(): new.
* src/utils.h: AUTORELEASE_STR(): convert malloc'd string into
auto-release (alloca'd) one.
2004-02-05
* src/folderview.c: put together folderview_new_imap_folder_cb() into
folderview_new_folder_cb().
2004-02-04
* src/compose.c: compose_write_to_file(): removed redundant strlen()
(thanks to Alfons).
* src/textview.c: textview_button_pressed(): select correct account
when address is clicked.
2004-01-29
* version 0.9.9
2004-01-29
* src/folder.c: folder_item_fetch_all_msg()
src/folderview.c: folderview_download_cb(): show progress with
the progressbar.
* src/mainwindow.[ch]: added new functions for progressbar.
2004-01-29
* src/summaryview.c: summary_key_pressed(): GDK_Left should only
switch to folderview when summaryview hscrollbar is at the leftmost
position (thanks to Alfons).
2004-01-29
* src/codeconv.c: conv_euctojis(): made JIS X 0201 Kana conversion
configurable.
* src/prefs_common.[ch]: added PrefsCommon::allow_jisx0201_kana
(hidden setting).
2004-01-28
* src/codeconv.c: conv_euctojis(): force JIS X 0201 Kana to JIS X 0208
conversion.
2004-01-28
* src/imap.c: imap_get_msginfo(): fixed wrong counting.
2004-01-28
* src/base64.c
src/codeconv.c
src/compose.c
src/html.c
src/imap.c
src/pop.c
src/prefs_account.c
src/procmime.c
src/procmsg.c
src/quote_fmt_parse.y
src/quoted-printable.c
src/textview.c
src/unmime.c
src/utils.c
src/utils.h
src/xml.c: fixed wrong type of argument for ctype functions (char
had been passed instead of unsigned char).
2004-01-27
* src/mainwindow.[ch]: added MainWindow::messageview_cid.
Clear messageview when it is hidden.
* src/textview.c: show URL to the statusbar when its link is clicked.
textview_uri_security_check(): compare real URL and apparent one
and show warning if it seems to be a fake URL.
* src/utils.[ch]:
is_uri_string(): return TRUE if the string seems like a URL.
get_uri_path(): return URL except for its scheme part.
2004-01-23
* src/folder.[ch]: folder_item_fetch_all_msg(): new. It fetches all
messages in a folder.
* src/folderview.c: implemented 'Download' feature.
2004-01-23
* src/gtkutils.[ch]: implemented ComboButton which adds an arrow
menu button to a button.
* src/mainwindow.[ch]: main_window_toolbar_create(): added combo
button to reply and forward button.
2004-01-22
* src/mainwindow.c: fixed automatic expansion of window size because
of toolbar.
2004-01-21
* src/addr_compl.[ch]
src/gtkshruler.[ch]: changed the copyright notice.
2004-01-20
* src/gtkstext.c: find_line_params(): also break between mutlibyte
and single-byte characters.
2004-01-20
* src/gtkstext.c: find_line_params(): break lines between multibyte
characters on word wrap mode.
2004-01-05
* src/codeconv.c: conv_iconv_strdup(): fixed crashes on LP64
environments (thanks to James Noyes).
* src/compose.c: compose_select_account(): don't turn off the sign/
encrypt option automatically.