forked from sylpheed-mail/sylpheed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
11470 lines (7449 loc) · 252 KB
/
ChangeLog
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
2022-08-25
* version 3.8.0beta1
2022-08-25
* src/setup.c: made PLAIN/basic authentication default for Gmail.
2022-08-22
* src/syl-auth-helper.c: add timeout to accept redirect.
2022-08-18
* README
README.ja
INSTALL
INSTALL.ja: updated.
* LICENSE: updated copyright year.
2022-08-18
* Makefile.am: also make tar.xz package by make release.
2022-08-09
* configure.ac
src/Makefile.am: only syl-auth-helper should link libcurl.
2022-08-09
* src/setup.c: added MS365 account setup and OAuth2 support for Gmail.
2022-07-08
* libsylph/oauth2.c: oauth2_get_token(): remove trailing CR.
2022-07-08
* src/syl-auth-helper.c: generate random state string and validate.
2022-07-07
* oauth2-sample.ini
src/syl-auth-helper.c: added wildcard support for oauth2.ini.
2022-07-07
* libsylph/imap.c
src/inc.c
src/send_message.c: don't ask password if OAuth2 is explicitly
specified.
2022-07-05
* src/Makefile.am
libsylph/imap.[ch]
libsylph/libsylph-0.def
libsylph/oauth2.[ch]
libsylph/pop.[ch]
libsylph/prefs_account.[ch]
libsylph/smtp.[ch]
src/Makefile.am
src/prefs_account_dialog.c
src/send_message.c
src/syl-auth-helper.c
oauth2.ini.sample: added OAuth2 authentication mechanism.
Currently tested with Gmail/MS365: POP3/IMAP4/SMTP.
This feature depends on libcurl.
2020-05-29
* libsylph/defs.h: modified URLs (http -> https).
2020-05-28
* src/update_check.c: win32: fixed execution of update-manager.exe
by using ShellExecute() API instead of _spawn() to invoke UAC
elevation properly.
Directly open download URL with browser if the above failed.
2018-01-30
* version 3.7.0
2018-01-16
* version 3.7.0beta1
2018-01-16
* src/about.c: updated copyright year.
2018-01-16
* libsylph/folder.c
src/gtkutils.c
src/import.c: fixed typos (thanks to Kentaro Hayashi) (#278).
2018-01-12
* src/summaryview.c: summary_mark_displayed_read(): reset current
selection list when sorted by unread (fixes #286).
2017-12-14
* src/exportcsv.c: exp_csv_file_move(): display error message if
file open failed.
2017-12-12
* src/addressbook.c: disabled '/Tools/Export to CSV file' menu when
toplevel interface is selected.
2017-12-12
* src/summaryview.c: show original From on the From column if
display-name contains '@' character.
2017-12-08
* manual/ja/sylpheed.sgml: updated.
2017-11-30
* src/exportcsv.c
src/importcsv.c
src/importldif.c: adjusted dialog layout to match other ones.
2017-11-30
* libsylph/utils.c: strconcat_csv(): enclose fields in double quotes
if double quotes appear.
* src/exportcsv.c: code cleanup. Added header line.
2017-11-29
* libsylph/libsylph-0.def
libsylph/utils.[ch]: added strconcat_csv() which concaternates strings
and outputs as a CSV string.
* src/Makefile.am
src/addressbook.c
src/exportcsv.[ch]: implemented CSV export feature.
2017-11-24
* libsylph/prefs_common.[ch]
src/addressbook.c: added 'Nick Name' column to the address book.
2017-11-22
* src/query_search.c: fixed folder selection dialog for copy.
2017-11-21
* src/query_search.c: added context menu for search result.
2017-11-17
* libsylph/procmime.c:
procmime_get_encoding_for_text_file()
procmime_get_encoding_for_str(): count 0x00 and 0x7f as
encode-required octet characters.
2017-11-17
* src/compose.c: refactored UTF-16 support.
* libsylph/codeconv.c: conv_copy_file(): supported
UTF-16/UTF-16BE/UTF-16LE.
* libsylph/codeconv.c: conv_copy_file_with_gconvert(): added missing
GError NULL initialization.
2017-11-16
* src/compose.c: compose_insert_file(): supported insertion of
UTF-16/UTF-16BE/UTF-16LE text.
2017-11-16
* libsylph/codeconv.[ch]: conv_check_file_encoding(): added detection
of UTF-16/UTF-16BE/UTF-16LE.
* src/compose.c: automatically convert attached UTF-16 text file to
UTF-8 on sending.
2017-11-15
* src/printing.c: use GTK_UNIT_PIXEL instead of GTK_UNIT_POINTS
to avoid text corruption bug.
Fixed printing of empty lines.
2017-07-07
* plugin/test/test.c: made app_exit_handler_id static to prevent conflicts
of symbols.
2017-06-28
* version 3.6.0
2017-06-28
* manual/ja/sylpheed.sgml: updated.
2017-06-12
* version 3.6.0beta1
2017-06-12
* src/printing.c: disable save/load of printing settings on
GTK+ <= 2.10.
2017-06-09
* src/printing.c: save/load printing settings and page setup.
2017-03-22
* src/about.c
src/sylpheed.rc.in: updated copyright year.
2017-02-28
* manual/ja/sylpheed.sgml: updated.
2017-02-24
+ libsylph/libsylph-0.def: export procmime_scan_message_stream.
2017-02-20
* src/prefs_account_dialog.c: fixed sensitivity change of signature
settings.
2017-02-20
* configure.ac: increased the version.
2017-02-17
* manual/ja/sylpheed.sgml: added 'Other features' section.
2017-02-17
* libsylph/imap.c: subscribe newly created folders since they are
not always subscribed automatically.
2017-02-17
* src/undo.c: made debug print switchable.
2017-02-16
* manual/ja/sylpheed.sgml: updated Japanese manual.
2017-02-16
* src/editgroup.c: modified next selection after move.
Added folder icons.
2017-02-15
* src/editgroup.c: expand the tree when moving email from group to
available list.
2017-02-15
* src/editgroup.c: show available email list with folder tree.
2017-02-10
* src/editgroup.c: fixed selection after multiple move.
2017-02-10
* src/editgroup.c: replaced GTKCList with GtkTreeView and also
enabled multiple selection.
2017-02-07
* libsylph/prefs_account.[ch]
src/compose.[ch]
src/prefs_account_dialog.c
src/prefs_ui.[ch]: implemented multiple signatures in one account.
2017-02-02
* libsylph/ssl.c: supported the location of SSL certificates on
OpenBSD (thanks to Amit Kulkarni) (#222).
2017-02-02
* libsylph/utils.c: execute_open_file(): unix: implemented using
xdg-open.
src/mainwindow.c: added the following menus:
/Tools/Open configuration folder
/Tools/Open attachments folder
2017-02-02
* nsis/COPYING.ja.txt
nsis/COPYING.txt
nsis/english.nsh
nsis/japanese.nsh
nsis/spanish.nsh
nsis/sylpheed-defs.nsh
nsis/sylpheed.nsi: updated NSIS scripts:
- Show notice about not removing user data before uninstall
- Add autoenc plugin definition
- Update license text
2016-07-29
* version 3.5.1
2016-07-29
* INSTALL
INSTALL.ja
PLUGIN.txt
PLUGIN.ja.txt
README
README.ja: updated.
2016-07-19
* src/compose.c
src/plugin.[ch]: added new plug-in signal "compose-attach-changed".
2016-07-13
* src/compose.c: compose_get_attach_list(): return NULL if the
attachment list is closed.
2016-07-07
* src/plugin.h: add two more functions.
* src/libsylpheed-plugin-0.def: updated.
2016-06-17
* src/main.c
src/plugin.[ch]
src/plugin-types.h: syl_plugin_get_attach_list(): added new plug-in
function. Extra struct types are separeted into plugin-types.h.
2016-06-17
* src/compose.[ch]: compose_get_attach_list(): added.
2016-06-17
* src/compose.c
src/mainwindow.c: emit toolbar changed signals.
2016-06-17
* autogen.sh
config.rpath
ltmain.sh
missing: updated version.
2016-06-17
* src/main.c
src/plugin.[ch]: added new plug-in functions and signals.
2016-06-17
* src/compose.[ch]:
added new public fuctions:
compose_get_toolbar()
compose_get_misc_hbox()
compose_get_textview()
compose_attach_append()
compose_attach_remove_all()
compose_send()
added Compose pointer return value:
compose_reply()
compose_forward()
compose_redirect()
compose_reedit()
2016-01-19
* version 3.5.0
2016-01-18
* libsylph/filter.c: strmatch_regex(): removed ONIG_OPTION_EXTEND
option which requires spaces to be escaped.
This reverts the behavior of regex filtering to the original one
when using Oniguruma.
2015-12-28
* version 3.5.0rc2
2015-12-21
* libsylph/ssl.c: ssl_init(): enabled TLSv1.1 and TLSv1.2 for
STARTTLS when OpenSSL 1.0.1 or later was used.
2015-12-08
* src/subscribedialog.c
src/prefs_actions.c
src/action.c: made sizes of more dialogs DPI-aware.
* src/prefs_template.c
src/addressadd.c
src/prefs_display_items.c: update copyright year.
2015-12-07
* src/prefs_template.c
src/addressadd.c
src/prefs_display_items.c: made sizes of more dialogs DPI-aware.
2015-12-02
* libsylph/filter.c: strmatch_regex(): fixed regex match when using
Oniguruma (r3481 made it match only the head of searched string).
2015-11-27
* version 3.5.0rc
2015-11-27
* manual/ja/sylpheed.sgml: updated Japanese manual.
2015-11-26
* libsylph/procmsg.c:
procmsg_read_cache_data_str_mem()
READ_CACHE_DATA_INT(): fix for sigbus on ARM caused by unaligned
access (#242).
2015-10-27
* src/prefs_filter_edit.c: prefs_filter_edit_open():
win32: fix irresponsible text entries on the first display of the
dialog.
2015-08-07
* libsylph/filter.c: strmatch_regex(): use Oniguruma native API
to prevent crash on Ubuntu 14.04.
2015-07-09
* src/update_check.c: don't read() from child stdout directly
(fixed crash with different version of MSVCRT, thanks to
Gisle Vanem).
2015-06-24
* version 3.5.0beta3
2015-06-24
* src/about.c
src/sylpheed.rc.in: updated copyright year.
2015-06-22
* src/addressbook.c: disabled auto expand of columns because it
conflicts with column sizes settings.
2015-02-06
* libsylph/utils.c: _s_tempnam(): memory allocated by _wtempnam()
must be freed by MSVCRT, not by GLib (thanks to Gisle Vanem).
2015-01-16
* src/gtkutils.c: gtkut_text_buffer_insert_with_tag_by_name():
guard against the case of len == 0 (#215).
2015-01-16
* src/mainwindow.c: main_window_window_state_cb():
win32: fixed a bug that maximized state was unset on minimize.
2014-12-12
* libsylph/procmime.[ch]
libsylph/libsylph-0.def
src/mimeview.c: made file names generated on opening attachments
more user-friendly.
2014-12-12
* src/mainwindow.c: main_window_window_state_cb(): added more debug
print.
2014-12-09
* src/prefs_filter.c: fixed a bug that reorder by DnD was not saved.
2014-11-20
* version 3.5.0beta2
2014-11-20
* libsylph/recv.c
src/quick_search.[ch]
src/logwindow.c
src/foldersel.c
src/message_search.[ch]
src/main.c
src/alertpanel.c
src/inputdialog.c
src/export.c
src/filesel.c
src/account_dialog.c
src/import.c
src/mainwindow.c
src/prefs_filter_edit.c
src/prefs_filter.c: updated copyright year.
2014-11-20
* po/he.po: added Hebrew translation.
2014-11-14
* nsis/sylpheed-defs.nsh
nsis/sylpheed.nsi: updated NSIS scripts.
2014-11-13
* src/quick_search.c
src/message_search.c
src/account_dialog.c: made widget sizes dpi-aware.
2014-11-13
* src/gtkutils.c
src/alertpanel.c
src/inputdialog.c: made widget spacings dpi-aware.
2014-11-13
* src/gtkutils.[ch]
src/main.c: added command line option '--dpi dpinum'
(mainly for debugging).
2014-11-13
* src/inputdialog.c
src/export.c
src/import.c: made more dialogs size DPI-aware.
2014-11-12
* src/sylpheed.rc.in
src/Makefile.am
src/sylpheed.exe.manifest: win32: added manifest to make
sylpheed.exe dpi-aware.
2014-11-11
* src/logwindow.c
src/account_dialog.c
src/setup.c
src/foldersel.c
src/query_search.c
src/prefs_filter_edit.c
src/prefs_filter.c: made more dialogs size DPI-aware.
2014-11-11
* src/filesel.c: always set current folder of GtkFileChooser
(fixes previous folder not remembered with GTK+ 2.24.23).
2014-11-07
* src/rpop3.c
src/compose.c
src/addressbook.c
src/about.c: made some dialogs size DPI-aware.
2014-11-07
* src/notificationwindow.c: adjusted window size.
2014-11-06
* src/gtkutils.[ch]: added gtkut_get_dpi_multiplier() which returns
optimal multiplier for current system DPI.
* src/progressdialog.c
src/notificationwindow.c: made their window sizes DPI-aware.
2014-11-06
* src/trayicon.c: win32: made 'Toggle window on trayicon click' option
work on Windows 7.
2014-11-05
* libsylph/prefs_common.[ch]
src/prefs_common_dialog.c
src/mainwindow.c: added an option to specify startup online mode.
2014-11-05
* src/mainwindow.c: only apply r3427 to win32 because it breaks
the function on some window managers.
2014-10-30
* src/mainwindow.c
src/gtkutils.c: win32: fixed 'Minimize to tray icon' option not
working on Windows.
2014-10-30
* src/gtkutils.[ch]
src/main.c: added gtkut_get_dpi().
2014-09-22
* libsylph/recv.c: recv_bytes_write(): fixed a bug that wrote the
first part of data if it didn't end with CR+LF (thanks to Yohei Endo
and scardig for pointing it out). This bug affected IMAP4 (Bug #84).
2014-06-13
* version 3.5.0beta1
2014-06-11
* libsylph/socket.c: sock_info_connect_by_getaddrinfo():
win32: fixed crash on network failure.
2014-06-10
* libsylph/mbox.c
src/inc.c
configure.ac: made mbox locking NFS-safe (#202).
2014-06-05
* libsylph/filter.c: filter_match_cond(): fixed crash on 32-bit OS
with 64-bit time_t.
2014-04-25
* makewin32.sh: added -static-libgcc option to prevent the dependency
to libgcc_s_dw2-1.dll.
2014-04-25
* src/notificationwindow.c: set opacity on mouse over.
2014-04-24
* sylpheed.desktop: applied Debian patch: 09_desktop_file_fixes.diff
(#194).
2014-04-24
* src/notificationwindow.c: added fade effect (requires GTK+ >= 2.12).
2014-04-23
* src/main.c: fix_font_setting(): modified OS X font name.
2014-04-23
* src/rpop3.c: additional fix for Bug #193.
2014-04-22
* src/main.c: fix_font_setting(): improved font name fixing.
2014-04-22
* makewin32.sh: save build log.
2014-04-21
* configure.ac: renamed from configure.in.
2014-04-21
* src/passphrase.c
configure.in: gpgme: use gpgme_io_writen() if available
(fixes freeze when entering passphrase on Windows).
2014-04-18
* libsylph/utils.c
libsylph/procheader.c
libsylph/pop.c
libsylph/mbox.c
libsylph/imap.c
plugin/attachment_tool/attachment_tool.c: workaround for 64-bit
time_t on win32.
2014-04-18
* makewin32.sh: added -mthreads gcc option.
2014-04-18
* libsylph/utils.[ch]
libsylph/mh.c
libsylph/procheader.c
libsylph/socket.c
src/addrcache.c
src/compose.c
src/template.c
src/addrbook.c
src/jpilot.c: replaced 'struct stat' passed to g_*stat() with
GStatBuf, which will be defined as struct _stat32 (win32) or
struct stat.
2014-04-18
* configure.in: added -lgtkmacintegration check.
* src/compose.c
src/addressbook.c
src/gtkutils.c
src/addr_compl.c: applied OS X fixes.
2014-04-18
* libsylph/utils.[ch]
libsylph/procheader.c
libsylph/procmsg.h
libsylph/procheader.h
libsylph/folder.[ch]
libsylph/pop.h
libsylph/session.h
src/addrcache.h
src/jpilot.h
configure.in: wrapped time_t as stime_t. stime_t will be 32-bit
on win32 for backward compatibility.
* configure.in: enable silent rules by default.
* autogen.sh: use newer aclocal and automake.
2014-04-11
* libsylph/folder.c:
folder_build_tree()
folder_write_list_recursive(): fixed a bug that new/unread/total
numbers in folderlist.xml was corrupted if sizeof(time_t) is 8 on
32-bit (such as recent version of mingw32).
2014-04-10
* libsylph/libsylph-0.def
libsylph/Makefile.am
src/Makefile.am
src/libsylpheed-plugin-0.def
configure.in
makewin32.sh: modified for newer MinGW environment. Fixed linking.
2014-04-09
* macosx/bundle/launcher.sh
macosx/bundle/sylpheed.bundle: include pango library.
Fixed launcher.sh bug which creates an empty (langname) file.
* macosx/bundle/Info-sylpheed.plist: updated version.
2014-04-04
* version 3.4.1
2014-04-04
* libsylph/pop.c: fixed return value check of pop3_retr_recv(),
pop3_getrange_stat_recv() and pop3_getrange_last_recv().
This fixes Bug #193: Lose mails when mailbox is inaccessible.
2014-03-26
* version 3.4.0
2014-03-26
* updated copyright year.
* configure.in: increased library version.
2014-03-24
* libsylph/ssl_hostname_validation.h: added include guard.
Added debug print.
2014-03-20
* src/icons/html.png: modified the size of HTML icon.
2014-03-20
* libsylph/ssl.c
libsylph/ssl_hostname_validation.c: implemented wildcard certificate
validation (based on libcurl). Treat hostname validation failure
like other errors. Fixed compile error on --disable-ssl.
2014-03-19
* version 3.4.0beta8
2014-03-19
* libsylph/prefs_common.[ch]
src/inc.c
src/notificationwindow.c
src/prefs_common_dialog.c: made the display period of notification
window configurable.
2014-03-19
* manual/ja/sylpheed.sgml: updated Japanese manual.
2014-03-18
* libsylph/prefs_account.[ch]
src/compose.c
src/select-keys.c
src/prefs_account_dialog.c: added PGP encrypt-to-self feature.
2014-03-17
* src/setup.c: allow resize of setup dialog (workaround for #166).
2014-03-17
* src/addressbook.c: auto-expand columns with GTK+ >= 2.14.0.
2014-03-17
* src/rpop3.c
src/query_search.c
src/summaryview.c
src/folderview.c: disabled auto-expand for GTK+ < 2.14.0 because
of GTK+ Bug #316087 (Resizing columns is chaotic).
2014-03-17
* src/rpop3.c
src/query_search.c
src/summaryview.c
src/folderview.c: auto-expand Subject / Folder name column on
resize of the tree view.
2014-03-13
* src/summaryview.c
src/folderview.c: added an empty column to the right-end of the
folder view, and modified the width of empty column to be zero-width.
2014-03-10
* src/summaryview.c: added an empty column to the right-end of the
summary view (fixes rightmost column cannot be resized).
2014-03-07
* manual/ja/Makefile.am
manual/ja/header.txt: added meta tag to prevent encoding
auto-detection failure with IE.
2014-03-07
* src/about.c: updated copyright year.
* src/sylpheed.rc.in: updated copyright year.
2014-03-07
* INSTALL
INSTALL.ja
README
README.ja
LICENSE: updated.
2014-02-28
* libsylph/ssl.c
src/sslmanager.c
libsylph/ssl_hostname_validation.[ch]: validate SSL certificate
hostname (#167).
* libsylph/socks.c: replace sock->hostname with endpoint for hostname
check.
2013-12-20
* src/addr_compl.c: address_completion_create_completion_window():
use gdk_window_get_origin() instead of deprecated
gdk_window_get_deskrelative_origin() (fixes wrong completion list
on OS X).
2013-12-19
* src/main.c
src/manual.c: OS X: modified for bundle folder structure.
* makeosx.sh: OS X: added build script for OS X.
* macosx/bundle: OS X: added files for gtk-mac-bundler.
2013-12-13
* libsylph/utils.c: set_startup_dir(): OS X: set application bundle
directory rather than /.
* configure.in
libsylph/Makefile.am: OS X: added -xobjective-c option.
2013-11-29
* version 3.4.0beta7
2013-11-28
* libsylph/md5.c: MD5Final(): zero-clear the whole MD5Context struct
as intended.
2013-11-28
* src/syldap.c:
syldap_test_connect():
syldap_read_basedn():
NULL check argument first.
* src/vcard.c: vcard_build_items(): dereference nodeRemarks only if
it's non-null.
2013-11-28
* src/rpop3.c: rpop3_retr_recv(): check error of
procheader_parse_file().
2013-11-28
* libsylph/procmime.c: procmime_scan_multipart_message(): fixed MIME
nest level restriction not working.
2013-11-28
* libsylph/ssl.c: ssl_done(): check if fp != NULL.
* src/textview.c:
textview_popup_menu_activate_open_uri_cb():
textview_event_after():
prevent null dereference of msginfo.
* src/summaryview.c: summary_unthread(): first check if
summaryview->folder_item is non-null.
2013-11-28
* src/colorlabel.c: colorlabel_recreate_label(): added missing
parentheses.
2013-11-27
* src/main.c: check the return value of fd_gets().
2013-11-27
* libsylph/html.c: html_unescape_str(): strictly check for utf8 length.
2013-11-27
* src/jpilot.c: jpilot_read_db_files(): fixed uninitialized variable
"attrib", "unique_id" and "next_offset".
2013-11-27
* src/template.c: template_load(): fixed fp leak on error.
* plugin/attachment_tool/attachment_tool.c: remove_attachment():
fixed fp leak on error.
* libsylph/procmsg.c: procmsg_concat_partial_messages(): fixed fp
leaks on error.
* libsylph/procmime.c: procmime_parse_mailcap(): fixed fp leak.
* src/jpilot.c: jpilot_read_db_files(): fixed fp leak and memory leaks.
2013-11-26
* src/headerview.c: headerview_show_xface(): make sure xface is nul
terminated.
* src/rfc2015.c: rfc2015_msg_is_encrypted(): fixed fp resource leak.
(unused function)
* src/jpilot.c: jpilot_read_db_files(): fixed memory leaks.
2013-11-25
* src/main.c: win32: check for the TaskbarCreated message and reshow
icon when explorer.exe crashes.
2013-10-30
* src/vcard.c
src/rpop3.c
src/folderview.c: fixed logical bugs (#134).
This fixes a bug that 'File - Folder - Move folder...' menu didn't
work.
2013-10-29
* version 3.4.0beta6