-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog.3.0.0-3.9.0
15610 lines (11984 loc) · 355 KB
/
ChangeLog.3.0.0-3.9.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
2013-03-15 [colin] 3.9.0cvs128
* src/plugins/fancy/fancy_viewer.c
Fix default fonts on Windows
2013-03-15 [colin] 3.9.0cvs127
* src/plugins/address_keeper/version.rc
* src/plugins/attachwarner/version.rc
* src/plugins/att_remover/version.rc
* src/plugins/bsfilter/version.rc
* src/plugins/fancy/version.rc
* src/plugins/fetchinfo/version.rc
* src/plugins/mailmbox/version.rc
* src/plugins/notification/version.rc
* src/plugins/pgpcore/version.rc
* src/plugins/pgpinline/version.rc
* src/plugins/pgpmime/version.rc
* src/plugins/rssyl/version.rc
* src/plugins/smime/version.rc
* src/plugins/spam_report/version.rc
* src/plugins/tnef_parse/version.rc
* src/plugins/vcalendar/version.rc
Fix names and copyrights
2013-03-15 [colin] 3.9.0cvs126
* src/plugins/fancy/fancy_viewer.c
Fix attached images URIs generation
* src/plugins/vcalendar/vcal_folder.c
Fix crash on NULL uri
2013-03-14 [colin] 3.9.0cvs125
* src/plugins/fancy/fancy_viewer.c
Remove some crashy calls (wonder why.)
2013-03-13 [colin] 3.9.0cvs124
* src/plugins/fancy/Makefile.am
* src/plugins/fancy/claws.def
* src/plugins/fancy/plugin.def
* src/plugins/fancy/version.rc
Preparing for win32 Fancy port
2013-03-13 [colin] 3.9.0cvs123
* src/plugins/fancy/fancy_viewer.h
Fix wrong include
2013-03-13 [mones] 3.9.0cvs122
* src/plugins/pdf_viewer/poppler_viewer.c
Fix crash closing PDF information alert panel and use
a better label than the plugin name for the dialog
2013-03-13 [colin] 3.9.0cvs121
* src/plugins/fancy/fancy_prefs.c
More whitespace!
2013-03-13 [colin] 3.9.0cvs120
* src/plugins/fancy/fancy_prefs.c
* src/plugins/fancy/fancy_prefs.h
* src/plugins/fancy/fancy_viewer.c
* src/plugins/fancy/fancy_viewer.h
Fix whitespace and indentation
2013-03-13 [colin] 3.9.0cvs119
* src/plugins/fancy/fancy_prefs.c
* src/plugins/fancy/fancy_prefs.h
* src/plugins/fancy/fancy_viewer.c
* src/plugins/fancy/fancy_viewer.h
More rework of the options to make things clear.
Also, make Enable remote content actually do what
it says.
2013-03-13 [colin] 3.9.0cvs118
* src/summaryview.c
Fix w32 build where apparently 'small' is a reserved
word
* src/plugins/perl/tools/Makefile.am
Fix out-of-tree build
2013-03-13 [mones] 3.9.0cvs117
* INSTALL
* README
Forgotten tool is not needed anymore, bye bye html2ps.
2013-03-13 [colin] 3.9.0cvs116
* src/plugins/fancy/Makefile.am
* src/plugins/fancy/fancy_viewer.c
Fix bug #2980, "html2ps required...". Use standard GtkPrint
2013-03-13 [colin] 3.9.0cvs115
* src/plugins/fancy/fancy_prefs.c
* src/plugins/fancy/fancy_prefs.h
* src/plugins/fancy/fancy_viewer.c
* src/plugins/fancy/fancy_viewer.h
Untangle prefs handling, untangle open in browser
and move back to Enable remote content instead of
Enable inner navigation.
2013-03-13 [mones] 3.9.0cvs114
* INSTALL
* README
Some minor fix and an always forgotten support tool...
Fortunately our users keep reminding us they really use
all those features, thanks to all of them :-)
2013-03-12 [wwp] 3.9.0cvs113
* src/account.c
Remove stuff committed unexpectedly (you're now reading my words, you understand
what you read, you never found that I've committed stuff accidentally, never, and
now you can get back to normal activities, you will never remember this),
thanks Paul!
2013-03-12 [wwp] 3.9.0cvs112
* src/account.c
Fix 'edit accounts' windows going backward when leaving an
'account preferences' window, by focusing this window again.
2013-03-09 [mones] 3.9.0cvs111
* INSTALL
Update required GTK+ version and configure plugin flags
* src/mainwindow.c
* src/summaryview.c
Remove unnecessary checks, newer keysyms are already
included by gtkutils.h if needed
2013-03-08 [paul] 3.9.0cvs110
* configure.ac
fix outputting config dir value at end of configure
2013-03-07 [colin] 3.9.0cvs109
* src/plugins/fancy/fancy_prefs.c
And make Open External default to true :)
2013-03-07 [paul] 3.9.0cvs108
* src/plugins/fancy/fancy_prefs.c
make "enable_inner_navigation" default to FALSE
2013-03-06 [colin] 3.9.0cvs107
* src/plugins/fancy/fancy_prefs.c
* src/plugins/fancy/fancy_prefs.h
* src/plugins/fancy/fancy_viewer.c
* src/plugins/fancy/fancy_viewer.h
Fix bug #2882, "Reverse preference for external content"
"Block external content" was the only negative preference
along the other "Enable ..." positive ones, but also had
several shortcomings, in that it only blocked user-
requested interactions, like
- prevent clicking on links
- prevent right-click/Download link
- prevent right-click/Save image
But NOT
- prevent auto download of images (that's controlled by
Auto-load images)
- prevent auto download of javascript (that's controlled
by Enable scripts)
- prevent auto download of applets (that's controlled by
Enable java)
- prevent auto download of css (that can't be disabled)
New preference to replace it is "Enable inner navigation"
and allows to control whether one can click on links to
navigate inside Fancy viewer. If disabled and "Open in
external browser" is set, links will be opened in external
browser; else nothing will happen. In any state of these
preferences, right-clicking and choosing "Open in viewer"
or "Open in browser" will do what asked.
2013-03-06 [colin] 3.9.0cvs106
* src/plugins/fancy/fancy_viewer.c
Make options setting clearer
2013-02-28 [mones] 3.9.0cvs105
* configure.ac
* src/plugins/perl/Makefile.am
* src/plugins/perl/cm_perl.pod
* src/plugins/perl/tools/.cvsignore
* src/plugins/perl/tools/Makefile.am
* src/plugins/perl/tools/insert_perl.pl
* src/plugins/perl/tools/matcherrc2perlfilter.pl
Make perl plugin tools and manpage available into
distribution tarball.
2013-02-27 [mones] 3.9.0cvs104
* README
Updated plugin list, now they are integrated.
Added missing items to hidden properties list.
2013-02-26 [wwp] 3.9.0cvs103
* src/messageview.c
Fix wrong message, as message could have been moved to another folder
and not trashed (it could have also be deleted without staying in trash,
but that's a piece of detail, and while we're at it, the message could also
have vanished into another dimension or be now part of the twilight zone
but we should not always tell the truth to users. At last, and to be
exhaustive, the message could have disappeared because of a technical
issue which doesn't imply user action and none of the above mentions. One
would say that the message could also have never existed, but it's another
story).
2013-02-24 [colin] 3.9.0cvs102
* src/plugins/vcalendar/libical/libical/Makefile.am
Fix build without vcalendar
2013-02-23 [paul] 3.9.0cvs101
* src/mimeview.c
escape filename/description text, prevents error if, e.g., the
filename contains an ampersand
2013-02-22 [colin] 3.9.0cvs100
* AUTHORS
* src/gtk/authors.h
* src/summaryview.c
Fix bug #2702, "Support splitting subject line for small screen
layout". Patch by Ben Deering.
2013-02-21 [paul] 3.9.0cvs99
* configure.ac
add he to ALL_LINGUAS
2013-02-20 [colin] 3.9.0cvs98
* src/main.c
Fix seg on w32
2013-02-20 [colin] 3.9.0cvs97
* src/plugins/att_remover/claws.def
* src/plugins/fetchinfo/claws.def
* src/plugins/spam_report/claws.def
Add more needed symbols
2013-02-20 [colin] 3.9.0cvs96
* src/plugins/att_remover/Makefile.am
* src/plugins/fetchinfo/Makefile.am
* src/plugins/spam_report/Makefile.am
Fix missed parts for w32
2013-02-20 [colin] 3.9.0cvs95
* src/prefs_common.h
* src/plugins/address_keeper/claws.def
* src/plugins/att_remover/Makefile.am
* src/plugins/att_remover/claws.def
* src/plugins/att_remover/plugin.def
* src/plugins/att_remover/version.rc
* src/plugins/clamd/libclamd/Makefile.am
* src/plugins/fetchinfo/Makefile.am
* src/plugins/fetchinfo/claws.def
* src/plugins/fetchinfo/plugin.def
* src/plugins/fetchinfo/version.rc
* src/plugins/mailmbox/Makefile.am
* src/plugins/mailmbox/claws.def
* src/plugins/mailmbox/plugin.def
* src/plugins/mailmbox/version.rc
* src/plugins/notification/gtkhotkey/Makefile.am
* src/plugins/spam_report/Makefile.am
* src/plugins/spam_report/claws.def
* src/plugins/spam_report/plugin.def
* src/plugins/spam_report/spam_report.c
* src/plugins/spam_report/version.rc
Win32 build fixes (and add of address_keeper, att_remover,
fetchinfo and spam_report)
2013-02-20 [paul] 3.9.0cvs94
* configure.ac
a little more report layout tweaking
2013-02-20 [colin] 3.9.0cvs93
* src/common/plugin.c
Auto fix plugin names ending in "_plugin"
2013-02-20 [colin] 3.9.0cvs92
* src/plugins/gdata/Makefile.am
Change plugin name
2013-02-20 [colin] 3.9.0cvs91
* src/plugins/fetchinfo/Makefile.am
* src/plugins/notification/Makefile.am
* src/plugins/perl/Makefile.am
* src/plugins/python/Makefile.am
Drop _plugin from the plugin's filename
2013-02-20 [colin] 3.9.0cvs90
* configure.ac
Group core's --{en,dis}able switches
2013-02-20 [colin] 3.9.0cvs89
* configure.ac
typos
2013-02-20 [colin] 3.9.0cvs88
* configure.ac
* Makefile.am
Don't check for GNOME2 when we want to check for
gtk-update-icon-cache; Typo fix
2013-02-20 [colin] 3.9.0cvs87
* src/plugins/Makefile.am
* src/plugins/acpi_notifier/Makefile.am
* src/plugins/address_keeper/Makefile.am
* src/plugins/archive/Makefile.am
* src/plugins/att_remover/Makefile.am
* src/plugins/attachwarner/Makefile.am
* src/plugins/bogofilter/Makefile.am
* src/plugins/bsfilter/Makefile.am
* src/plugins/clamd/Makefile.am
* src/plugins/demo/Makefile.am
* src/plugins/fancy/Makefile.am
* src/plugins/fetchinfo/Makefile.am
* src/plugins/gdata/Makefile.am
* src/plugins/mailmbox/Makefile.am
* src/plugins/newmail/Makefile.am
* src/plugins/notification/Makefile.am
* src/plugins/pdf_viewer/Makefile.am
* src/plugins/perl/Makefile.am
* src/plugins/pgpcore/Makefile.am
* src/plugins/pgpinline/Makefile.am
* src/plugins/pgpmime/Makefile.am
* src/plugins/python/Makefile.am
* src/plugins/rssyl/Makefile.am
* src/plugins/smime/Makefile.am
* src/plugins/spam_report/Makefile.am
* src/plugins/spamassassin/Makefile.am
* src/plugins/tnef_parse/Makefile.am
* src/plugins/vcalendar/Makefile.am
Change automake conditionals so that all plugins subdirectories
are included, but nothing built in disabled plugins. Fixes make
dist with some plugins --disabled.
2013-02-20 [colin] 3.9.0cvs86
* configure.ac
* src/plugins/fancy/fancy_viewer.h
Fix build for Fancy and vCalendar
2013-02-20 [colin] 3.9.0cvs85
* configure.ac
Rework plugin enabling logic. More clean!
* src/plugins/fancy/fancy_viewer.c
* src/plugins/fancy/fancy_viewer.h
* src/plugins/spam_report/spam_report.c
Make curl dependancy mandatory
* src/plugins/notification/notification_plugin.c
Fix build with every possible thing disabled
* src/plugins/notification/Makefile.am
* src/plugins/notification/gtkhotkey/.cvsignore
* src/plugins/notification/gtkhotkey/Makefile.am
* src/plugins/notification/gtkhotkey/gtk-hotkey-error.c
* src/plugins/notification/gtkhotkey/gtk-hotkey-error.h
* src/plugins/notification/gtkhotkey/gtk-hotkey-info.c
* src/plugins/notification/gtkhotkey/gtk-hotkey-info.h
* src/plugins/notification/gtkhotkey/gtk-hotkey-key-file-registry.c
* src/plugins/notification/gtkhotkey/gtk-hotkey-key-file-registry.h
* src/plugins/notification/gtkhotkey/gtk-hotkey-listener.c
* src/plugins/notification/gtkhotkey/gtk-hotkey-listener.h
* src/plugins/notification/gtkhotkey/gtk-hotkey-marshal.c
* src/plugins/notification/gtkhotkey/gtk-hotkey-marshal.h
* src/plugins/notification/gtkhotkey/gtk-hotkey-registry.c
* src/plugins/notification/gtkhotkey/gtk-hotkey-registry.h
* src/plugins/notification/gtkhotkey/gtk-hotkey-utils.c
* src/plugins/notification/gtkhotkey/gtk-hotkey-utils.h
* src/plugins/notification/gtkhotkey/gtk-hotkey-x11-listener.c
* src/plugins/notification/gtkhotkey/gtk-hotkey-x11-listener.h
* src/plugins/notification/gtkhotkey/gtkhotkey.h
* src/plugins/notification/gtkhotkey/x11/eggaccelerators.c
* src/plugins/notification/gtkhotkey/x11/eggaccelerators.h
* src/plugins/notification/gtkhotkey/x11/tomboykeybinder.c
* src/plugins/notification/gtkhotkey/x11/tomboykeybinder.h
Re-add hotkey support
* src/plugins/spam_report/Makefile.am
* src/plugins/tnef_parse/Makefile.am
Remove gettext.h
2013-02-20 [colin] 3.9.0cvs84
* configure.ac
* po/POTFILES.in
* src/plugins/Makefile.am
* src/plugins/dillo_viewer/.cvsignore
* src/plugins/dillo_viewer/Makefile.am
* src/plugins/dillo_viewer/README
* src/plugins/dillo_viewer/dillo_prefs.c
* src/plugins/dillo_viewer/dillo_prefs.h
* src/plugins/dillo_viewer/dillo_viewer.c
* src/plugins/trayicon/.cvsignore
* src/plugins/trayicon/Makefile.am
* src/plugins/trayicon/README
* src/plugins/trayicon/trayicon.c
* src/plugins/trayicon/trayicon_prefs.c
* src/plugins/trayicon/trayicon_prefs.h
* src/plugins/trayicon/libeggtrayicon/.cvsignore
Drop trayicon and dillo_viewer
2013-02-20 [colin] 3.9.0cvs83
* configure.ac
* src/plugins/Makefile.am
* src/plugins/spam_report/.cvsignore
* src/plugins/spam_report/Makefile.am
* src/plugins/spam_report/placeholder.txt
* src/plugins/spam_report/spam_report.c
* src/plugins/spam_report/spam_report_prefs.c
* src/plugins/spam_report/spam_report_prefs.h
* src/plugins/tnef_parse/.cvsignore
* src/plugins/tnef_parse/Makefile.am
* src/plugins/tnef_parse/claws.def
* src/plugins/tnef_parse/mapi.h
* src/plugins/tnef_parse/mapidefs.h
* src/plugins/tnef_parse/mapitags.h
* src/plugins/tnef_parse/placeholder.txt
* src/plugins/tnef_parse/plugin.def
* src/plugins/tnef_parse/tnef-errors.h
* src/plugins/tnef_parse/tnef-types.h
* src/plugins/tnef_parse/tnef_dump.c
* src/plugins/tnef_parse/tnef_dump.h
* src/plugins/tnef_parse/tnef_parse.c
* src/plugins/tnef_parse/version.rc
* src/plugins/tnef_parse/ytnef.c
* src/plugins/tnef_parse/ytnef.h
Add tnef_parse and spam_report
2013-02-20 [colin] 3.9.0cvs82
* src/plugins/bogofilter/Makefile.am
* src/plugins/clamd/Makefile.am
* src/plugins/demo/Makefile.am
* src/plugins/dillo_viewer/Makefile.am
* src/plugins/fancy/Makefile.am
* src/plugins/fetchinfo/Makefile.am
* src/plugins/gdata/Makefile.am
* src/plugins/mailmbox/Makefile.am
* src/plugins/newmail/Makefile.am
* src/plugins/notification/Makefile.am
* src/plugins/pdf_viewer/Makefile.am
* src/plugins/perl/Makefile.am
* src/plugins/python/Makefile.am
* src/plugins/spamassassin/Makefile.am
* src/plugins/trayicon/Makefile.am
* src/plugins/vcalendar/libical/libical/Makefile.am
Fix out-of-tree build
2013-02-19 [colin] 3.9.0cvs81
* configure.ac
Fix inverted logic in a few plugins
2013-02-18 [mones] 3.9.0cvs80
* src/plugins/notification/Makefile.am
* src/plugins/pdf_viewer/Makefile.am
* src/plugins/python/Makefile.am
Allow 'make dist' to generate a nice tarball
2013-02-18 [wwp] 3.9.0cvs79
* src/plugins/clamd/libclamd/.cvsignore
Add one more .cvsignore file.
2013-02-18 [wwp] 3.9.0cvs78
* src/plugins/clamd/libclamd/.cvsignore
One more .cvsignore file.
2013-02-18 [wwp] 3.9.0cvs77
* src/plugins/clamd/.cvsignore
* src/plugins/clamd/libclamd/.cvsignore
* src/plugins/fetchinfo/.cvsignore
* src/plugins/gdata/.cvsignore
* src/plugins/mailmbox/.cvsignore
* src/plugins/newmail/.cvsignore
* src/plugins/notification/.cvsignore
* src/plugins/pdf_viewer/.cvsignore
* src/plugins/perl/.cvsignore
* src/plugins/python/.cvsignore
Silent up stuff a bit.
2013-02-17 [colin] 3.9.0cvs76
* src/plugins/notification/Makefile.am
* src/plugins/notification/notification_banner.c
* src/plugins/notification/notification_banner.h
* src/plugins/notification/notification_command.c
* src/plugins/notification/notification_command.h
* src/plugins/notification/notification_core.c
* src/plugins/notification/notification_foldercheck.c
* src/plugins/notification/notification_foldercheck.h
* src/plugins/notification/notification_hotkeys.c
* src/plugins/notification/notification_hotkeys.h
* src/plugins/notification/notification_indicator.c
* src/plugins/notification/notification_indicator.h
* src/plugins/notification/notification_lcdproc.c
* src/plugins/notification/notification_lcdproc.h
* src/plugins/notification/notification_plugin.c
* src/plugins/notification/notification_plugin.h
* src/plugins/notification/notification_popup.c
* src/plugins/notification/notification_popup.h
* src/plugins/notification/notification_prefs.c
* src/plugins/notification/notification_prefs.h
* src/plugins/notification/notification_trayicon.c
* src/plugins/notification/notification_trayicon.h
Activate and fix notification (without libindicate)
2013-02-17 [colin] 3.9.0cvs75
* src/plugins/Makefile.am
* src/plugins/archive/Makefile.am
* src/plugins/clamd/Makefile.am
* src/plugins/clamd/clamav_plugin.c
* src/plugins/clamd/clamav_plugin.h
* src/plugins/clamd/clamav_plugin_gtk.c
* src/plugins/clamd/placeholder.txt
* src/plugins/clamd/libclamd/Makefile.am
* src/plugins/clamd/libclamd/clamd-plugin.c
* src/plugins/clamd/libclamd/clamd-plugin.h
* src/plugins/fetchinfo/Makefile.am
* src/plugins/fetchinfo/fetchinfo_plugin.c
* src/plugins/fetchinfo/fetchinfo_plugin.h
* src/plugins/fetchinfo/fetchinfo_plugin_gtk.c
* src/plugins/fetchinfo/placeholder.txt
* src/plugins/gdata/Makefile.am
* src/plugins/gdata/cm_gdata_contacts.c
* src/plugins/gdata/cm_gdata_contacts.h
* src/plugins/gdata/cm_gdata_prefs.c
* src/plugins/gdata/cm_gdata_prefs.h
* src/plugins/gdata/gdata_plugin.c
* src/plugins/gdata/gdata_plugin.h
* src/plugins/gdata/placeholder.txt
* src/plugins/geolocation/placeholder.txt
* src/plugins/gtkhtml2_viewer/placeholder.txt
* src/plugins/mailmbox/Makefile.am
* src/plugins/mailmbox/carray.c
* src/plugins/mailmbox/carray.h
* src/plugins/mailmbox/chash.c
* src/plugins/mailmbox/chash.h
* src/plugins/mailmbox/clist.c
* src/plugins/mailmbox/clist.h
* src/plugins/mailmbox/mailimf.c
* src/plugins/mailmbox/mailimf.h
* src/plugins/mailmbox/mailimf_types.c
* src/plugins/mailmbox/mailimf_types.h
* src/plugins/mailmbox/mailimf_types_helper.c
* src/plugins/mailmbox/mailimf_types_helper.h
* src/plugins/mailmbox/mailimf_write.c
* src/plugins/mailmbox/mailimf_write.h
* src/plugins/mailmbox/maillock.c
* src/plugins/mailmbox/maillock.h
* src/plugins/mailmbox/mailmbox.c
* src/plugins/mailmbox/mailmbox.h
* src/plugins/mailmbox/mailmbox_folder.c
* src/plugins/mailmbox/mailmbox_folder.h
* src/plugins/mailmbox/mailmbox_gtk.deps
* src/plugins/mailmbox/mailmbox_parse.c
* src/plugins/mailmbox/mailmbox_parse.h
* src/plugins/mailmbox/mailmbox_types.c
* src/plugins/mailmbox/mailmbox_types.h
* src/plugins/mailmbox/mmapstring.c
* src/plugins/mailmbox/mmapstring.h
* src/plugins/mailmbox/placeholder.txt
* src/plugins/mailmbox/plugin.c
* src/plugins/mailmbox/plugin_gtk.c
* src/plugins/mailmbox/plugin_gtk.h
* src/plugins/newmail/Makefile.am
* src/plugins/newmail/newmail.c
* src/plugins/newmail/placeholder.txt
* src/plugins/notification/Makefile.am
* src/plugins/notification/claws.def
* src/plugins/notification/notification_banner.c
* src/plugins/notification/notification_banner.h
* src/plugins/notification/notification_command.c
* src/plugins/notification/notification_command.h
* src/plugins/notification/notification_core.c
* src/plugins/notification/notification_core.h
* src/plugins/notification/notification_foldercheck.c
* src/plugins/notification/notification_foldercheck.h
* src/plugins/notification/notification_hotkeys.c
* src/plugins/notification/notification_hotkeys.h
* src/plugins/notification/notification_indicator.c
* src/plugins/notification/notification_indicator.h
* src/plugins/notification/notification_lcdproc.c
* src/plugins/notification/notification_lcdproc.h
* src/plugins/notification/notification_pixbuf.c
* src/plugins/notification/notification_pixbuf.h
* src/plugins/notification/notification_plugin.c
* src/plugins/notification/notification_plugin.h
* src/plugins/notification/notification_popup.c
* src/plugins/notification/notification_popup.h
* src/plugins/notification/notification_prefs.c
* src/plugins/notification/notification_prefs.h
* src/plugins/notification/notification_trayicon.c
* src/plugins/notification/notification_trayicon.h
* src/plugins/notification/placeholder.txt
* src/plugins/notification/plugin.def
* src/plugins/notification/raw_claws_mail_logo_64x64.h
* src/plugins/notification/version.rc
* src/plugins/pdf_viewer/Makefile.am
* src/plugins/pdf_viewer/doc_index.xpm
* src/plugins/pdf_viewer/doc_index_close.xpm
* src/plugins/pdf_viewer/doc_info.xpm
* src/plugins/pdf_viewer/first_arrow.xpm
* src/plugins/pdf_viewer/last_arrow.xpm
* src/plugins/pdf_viewer/left_arrow.xpm
* src/plugins/pdf_viewer/placeholder.txt
* src/plugins/pdf_viewer/poppler_viewer.c
* src/plugins/pdf_viewer/poppler_viewer.h
* src/plugins/pdf_viewer/right_arrow.xpm
* src/plugins/pdf_viewer/rotate_left.xpm
* src/plugins/pdf_viewer/rotate_right.xpm
* src/plugins/pdf_viewer/zoom_fit.xpm
* src/plugins/pdf_viewer/zoom_in.xpm
* src/plugins/pdf_viewer/zoom_out.xpm
* src/plugins/pdf_viewer/zoom_width.xpm
* src/plugins/perl/Makefile.am
* src/plugins/perl/perl_gtk.c
* src/plugins/perl/perl_gtk.h
* src/plugins/perl/perl_plugin.c
* src/plugins/perl/perl_plugin.h
* src/plugins/perl/placeholder.txt
* src/plugins/python/Makefile.am
* src/plugins/python/clawsmailmodule.c
* src/plugins/python/clawsmailmodule.h
* src/plugins/python/composewindowtype.c
* src/plugins/python/composewindowtype.h
* src/plugins/python/foldertype.c
* src/plugins/python/foldertype.h
* src/plugins/python/messageinfotype.c
* src/plugins/python/messageinfotype.h
* src/plugins/python/nodetype.c
* src/plugins/python/nodetype.h
* src/plugins/python/placeholder.txt
* src/plugins/python/python-hooks.c
* src/plugins/python/python-hooks.h
* src/plugins/python/python-shell.c
* src/plugins/python/python-shell.h
* src/plugins/python/python_plugin.c
* src/plugins/vcalendar/Makefile.in
Add some plugins (clamd, fetchinfo, gdata, mailmbox, newmail,
notification, pdf_viewer, perl, python). Notification not yet
enabled because it has too much autoconf switches for my taste.
2013-02-16 [colin] 3.9.0cvs74
* po/POTFILES.in
* po/bg.po
* po/ca.po
* po/cs.po
* po/de.po
* po/en_GB.po
* po/es.po
* po/fi.po
* po/fr.po
* po/hu.po
* po/id_ID.po
* po/it.po
* po/ja.po
* po/lt.po
* po/nl.po
* po/pl.po
* po/pt_BR.po
* po/pt_PT.po
* po/ru.po
* po/sk.po
* po/sv.po
* po/uk.po
* po/zh_CN.po
* po/zh_TW.po
* src/plugins/Makefile.am
* src/plugins/archive/.cvsignore
* src/plugins/archive/Makefile.am
* src/plugins/archive/archiver.c
* src/plugins/archive/archiver.h
* src/plugins/archive/archiver_gtk.c
* src/plugins/archive/archiver_prefs.c
* src/plugins/archive/archiver_prefs.h
* src/plugins/archive/libarchive_archive.c
* src/plugins/archive/libarchive_archive.h
* src/plugins/archive/placeholder.txt
* src/plugins/att_remover/.cvsignore
* src/plugins/att_remover/Makefile.am
* src/plugins/att_remover/att_remover.c
* src/plugins/att_remover/placeholder.txt
* src/plugins/bsfilter/.cvsignore
* src/plugins/bsfilter/Makefile.am
* src/plugins/bsfilter/bsfilter.c
* src/plugins/bsfilter/bsfilter.h
* src/plugins/bsfilter/bsfilter_gtk.c
* src/plugins/bsfilter/claws.def
* src/plugins/bsfilter/placeholder.txt
* src/plugins/bsfilter/plugin.def
* src/plugins/bsfilter/version.rc
Add archive, att_remover, bsfilter
* src/plugins/vcalendar/Makefile.in
* src/plugins/vcalendar/libical/libical/icalversion.h
Remove useless files
2013-02-16 [colin] 3.9.0cvs73
* src/plugins/Makefile.am
* src/plugins/acpi_notifier/Makefile.am
* src/plugins/acpi_notifier/acpi_notifier.c
* src/plugins/acpi_notifier/placeholder.txt
* src/plugins/address_keeper/Makefile.am
* src/plugins/address_keeper/address_keeper.c
* src/plugins/address_keeper/address_keeper.h
* src/plugins/address_keeper/address_keeper_prefs.c
* src/plugins/address_keeper/address_keeper_prefs.h
* src/plugins/address_keeper/claws.def
* src/plugins/address_keeper/placeholder.txt
* src/plugins/address_keeper/plugin.def
* src/plugins/address_keeper/version.rc
* src/plugins/attachwarner/Makefile.am
* src/plugins/attachwarner/attachwarner.c
* src/plugins/attachwarner/attachwarner.h
* src/plugins/attachwarner/attachwarner_prefs.c
* src/plugins/attachwarner/attachwarner_prefs.h
* src/plugins/attachwarner/claws.def
* src/plugins/attachwarner/placeholder.txt
* src/plugins/attachwarner/plugin.def
* src/plugins/attachwarner/version.rc
* src/plugins/vcalendar/libical/libical/icalversion.h
* po/POTFILES.in
* po/bg.po
* po/ca.po
* po/cs.po
* po/de.po
* po/en_GB.po
* po/es.po
* po/fi.po
* po/fr.po
* po/hu.po
* po/id_ID.po
* po/it.po
* po/ja.po
* po/lt.po
* po/nl.po
* po/pl.po
* po/pt_BR.po
* po/pt_PT.po
* po/ru.po
* po/sk.po
* po/sr.po
* po/sv.po
* po/uk.po
* po/zh_CN.po
* po/zh_TW.po
Now do acpi_notifier, attachwarner, address_keeper
2013-02-16 [colin] 3.9.0cvs72
* po/POTFILES.in
* po/bg.po
* po/ca.po
* po/cs.po
* po/de.po
* po/en_GB.po
* po/es.po
* po/fi.po
* po/fr.po
* po/hu.po
* po/id_ID.po
* po/it.po
* po/ja.po
* po/lt.po
* po/nl.po
* po/pl.po
* po/pt_BR.po
* po/pt_PT.po
* po/ru.po
* po/sk.po
* po/sr.po
* po/sv.po
* po/uk.po
* po/zh_CN.po
* po/zh_TW.po
Merge RSSyl's translations
2013-02-16 [colin] 3.9.0cvs71
* src/mainwindow.c
Fix use-after-free (introduced in cvs61)
2013-02-16 [colin] 3.9.0cvs70
* src/main.c
* src/prefs_common.c
* src/prefs_common.h
* src/common/defs.h
* src/common/w32_account.c
Add an hidden preference to set the Windows theme
* src/plugins/Makefile.am
* src/plugins/rssyl/Makefile.am
* src/plugins/rssyl/claws.def
* src/plugins/rssyl/date.c
* src/plugins/rssyl/date.h
* src/plugins/rssyl/feed.c
* src/plugins/rssyl/feed.h
* src/plugins/rssyl/feedprops.c
* src/plugins/rssyl/feedprops.h
* src/plugins/rssyl/opml.c
* src/plugins/rssyl/opml.h
* src/plugins/rssyl/parsers.c
* src/plugins/rssyl/parsers.h
* src/plugins/rssyl/placeholder.txt
* src/plugins/rssyl/plugin.c
* src/plugins/rssyl/plugin.def
* src/plugins/rssyl/rssyl.c
* src/plugins/rssyl/rssyl.h
* src/plugins/rssyl/rssyl_cb_gtk.c
* src/plugins/rssyl/rssyl_cb_gtk.h
* src/plugins/rssyl/rssyl_cb_menu.c
* src/plugins/rssyl/rssyl_cb_menu.h
* src/plugins/rssyl/rssyl_gtk.c
* src/plugins/rssyl/rssyl_gtk.h
* src/plugins/rssyl/rssyl_prefs.c
* src/plugins/rssyl/rssyl_prefs.h
* src/plugins/rssyl/strreplace.c
* src/plugins/rssyl/strreplace.h
* src/plugins/rssyl/version.rc
Add RSSyl
* src/plugins/vcalendar/Makefile.am
* src/plugins/vcalendar/Makefile.in
* src/plugins/vcalendar/plugin.c
* src/plugins/vcalendar/libical/libical/icalversion.h
Fix Curl flags :)
2013-02-14 [paul] 3.9.0cvs69
* po/id_ID.po
"fix" plural forms
2013-02-14 [colin] 3.9.0cvs68
* po/POTFILES.in
Add vcalendar files
* po/merge-po-from-plugin.sh
Add helper script to merge external plugins translations
* po/bg.po
* po/ca.po
* po/cs.po
* po/de.po
* po/en_GB.po
* po/es.po
* po/fi.po
* po/fr.po
* po/hu.po
* po/id_ID.po
* po/it.po
* po/ja.po
* po/lt.po
* po/nl.po
* po/pl.po
* po/pt_BR.po
* po/pt_PT.po
* po/ru.po
* po/sk.po
* po/sr.po
* po/sv.po
* po/uk.po
* po/zh_CN.po
* po/zh_TW.po
Merge translations from fancy and vcalendar
2013-02-14 [colin] 3.9.0cvs67
* configure.ac
Fix perl detection
2013-02-14 [colin] 3.9.0cvs66
* src/plugins/vcalendar/claws.def
* src/plugins/vcalendar/plugin.def
Add missing files
* src/plugins/vcalendar/libical/Makefile.in
* src/plugins/vcalendar/libical/design-data/Makefile.in
* src/plugins/vcalendar/libical/libical/Makefile.in
* src/plugins/vcalendar/libical/scripts/Makefile.in
Remove extraneous files
2013-02-13 [colin] 3.9.0cvs65
* src/plugins/address_dup_finder/placeholder.txt
* src/plugins/synce/placeholder.txt
Removed, deprecated plugins
* src/plugins/Makefile.am
* src/plugins/vcalendar/Makefile.am
* src/plugins/vcalendar/Makefile.in
* src/plugins/vcalendar/common-views.c
* src/plugins/vcalendar/common-views.h
* src/plugins/vcalendar/day-view.c
* src/plugins/vcalendar/icaltime_as_local.c
* src/plugins/vcalendar/icaltime_as_local.h
* src/plugins/vcalendar/month-view.c
* src/plugins/vcalendar/placeholder.txt
* src/plugins/vcalendar/plugin.c
* src/plugins/vcalendar/vcal_dbus.c
* src/plugins/vcalendar/vcal_dbus.h
* src/plugins/vcalendar/vcal_folder.c
* src/plugins/vcalendar/vcal_folder.h
* src/plugins/vcalendar/vcal_interface.h
* src/plugins/vcalendar/vcal_manager.c
* src/plugins/vcalendar/vcal_manager.h
* src/plugins/vcalendar/vcal_meeting_gtk.c
* src/plugins/vcalendar/vcal_meeting_gtk.h
* src/plugins/vcalendar/vcal_prefs.c
* src/plugins/vcalendar/vcal_prefs.h
* src/plugins/vcalendar/vcalendar.c
* src/plugins/vcalendar/vcalendar.h
* src/plugins/vcalendar/version.rc
* src/plugins/vcalendar/libical/.cvsignore
* src/plugins/vcalendar/libical/Makefile.am
* src/plugins/vcalendar/libical/Makefile.in
* src/plugins/vcalendar/libical/design-data/.cvsignore
* src/plugins/vcalendar/libical/design-data/Makefile.am
* src/plugins/vcalendar/libical/design-data/Makefile.in
* src/plugins/vcalendar/libical/design-data/parameters.csv
* src/plugins/vcalendar/libical/design-data/properties.csv
* src/plugins/vcalendar/libical/design-data/restrictions.csv
* src/plugins/vcalendar/libical/design-data/status.txt
* src/plugins/vcalendar/libical/design-data/value-types.csv
* src/plugins/vcalendar/libical/libical/.cvsignore
* src/plugins/vcalendar/libical/libical/Makefile.am
* src/plugins/vcalendar/libical/libical/Makefile.in
* src/plugins/vcalendar/libical/libical/icalattendee.c
* src/plugins/vcalendar/libical/libical/icalattendee.h
* src/plugins/vcalendar/libical/libical/icalcomponent.c
* src/plugins/vcalendar/libical/libical/icalcomponent.h
* src/plugins/vcalendar/libical/libical/icalderivedparameter.c.in
* src/plugins/vcalendar/libical/libical/icalderivedparameter.h.in
* src/plugins/vcalendar/libical/libical/icalderivedproperty.c.in
* src/plugins/vcalendar/libical/libical/icalderivedproperty.h.in
* src/plugins/vcalendar/libical/libical/icalderivedvalue.c.in
* src/plugins/vcalendar/libical/libical/icalderivedvalue.h.in
* src/plugins/vcalendar/libical/libical/icalduration.c
* src/plugins/vcalendar/libical/libical/icalduration.h
* src/plugins/vcalendar/libical/libical/icalenums.c
* src/plugins/vcalendar/libical/libical/icalenums.h
* src/plugins/vcalendar/libical/libical/icalerror.c
* src/plugins/vcalendar/libical/libical/icalerror.h
* src/plugins/vcalendar/libical/libical/icallangbind.c
* src/plugins/vcalendar/libical/libical/icallangbind.h
* src/plugins/vcalendar/libical/libical/icallexer.l
* src/plugins/vcalendar/libical/libical/icalmemory.c
* src/plugins/vcalendar/libical/libical/icalmemory.h
* src/plugins/vcalendar/libical/libical/icalmime.c
* src/plugins/vcalendar/libical/libical/icalmime.h
* src/plugins/vcalendar/libical/libical/icalparameter.c
* src/plugins/vcalendar/libical/libical/icalparameter.h
* src/plugins/vcalendar/libical/libical/icalparameterimpl.h
* src/plugins/vcalendar/libical/libical/icalparser.c
* src/plugins/vcalendar/libical/libical/icalparser.h
* src/plugins/vcalendar/libical/libical/icalperiod.c
* src/plugins/vcalendar/libical/libical/icalperiod.h
* src/plugins/vcalendar/libical/libical/icalproperty.c
* src/plugins/vcalendar/libical/libical/icalproperty.h
* src/plugins/vcalendar/libical/libical/icalrecur.c
* src/plugins/vcalendar/libical/libical/icalrecur.h
* src/plugins/vcalendar/libical/libical/icalrestriction.c.in
* src/plugins/vcalendar/libical/libical/icalrestriction.h
* src/plugins/vcalendar/libical/libical/icaltime.c
* src/plugins/vcalendar/libical/libical/icaltime.h
* src/plugins/vcalendar/libical/libical/icaltypes.c
* src/plugins/vcalendar/libical/libical/icaltypes.h
* src/plugins/vcalendar/libical/libical/icalvalue.c