-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathNEWS
1470 lines (1358 loc) · 75.4 KB
/
NEWS
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
0.162 "Pokrosvk" (Покровськ) 2025-02-15
* The main changes of this release are:
- cmake: switch to c++17
- fix metainfo: fixed URLs and screenshot (Balló György)
- bug fix: Show multipart binary article information
- mime-utils: fix assertion 'G_IS_OBJECT (object)' failure
- Make pan build again on windows (Thomas Tanner)
- Fixed incorrect whitespaces in manual Face wrapping. (FoxMcCloud45)
* Contributors to this release:
Dominique Dumont, Thomas Tanner, FoxMcCloud45, Balló György
* Updated translations:
sr (Мирослав Николић)
zh_CN (Boyuan Yang)
0.161 "Chasiv Yar" (Часів Яр) 2024-10-20
* The main changes of this release are:
- fix(cmake): make build reproducible (Debian #1078153) (Chris Lamb)
- fix(header-pane): nail down action and state column widths (Dominique Dumont)
- fix(task-xover): fix crash in case of ERR_NETWORK (Dominique Dumont)
- refactor(post-ui): replace gtkspell with gspell (Dominique Dumont)
- docs(README.org): fix git clean instructions (Dominique Dumont)
* Contributors to this release:
Dominique Dumont, Chris Lamb
* Updated translations:
cs (Daniel Rusek)
da (Alan Mortensen)
pl (Piotr Drąg)
pt_BR (Juliano de Souza Camargo)
0.160 "Toresk" (Торецьк) 2024-08-10
* The main changes of this release are:
- fix color management that was broken with v0.159
- body-pane: remove icon from "Copy URL" menu
- load_icon: print error message when icon is not found
- delete newsrc file when deleting a news server
- setup StartupWMClass in desktop.in file (#191)
* Contributors to this release:
Dominique Dumont
* Updated translations:
ka (Ekaterine Papava)
tr (Sabri Ünal)
0.159 "Vovchansk" (Вовчанськ) 2024-06-05
* The main changes of this release are:
- remove autotools. Pan can only be built with cmake
- remove support for obsolete Status Icon
- pref-ui.cc: fix crash when editing twice the same shortcut
- pref-ui.cc: fix behavior and warnings in edit shortcut widget
- README.org: add instructions to clean up autotools files
* Contributors to this release:
Dominique Dumont, chenrui, Anders Jonsson
* Updated translations:
de (Jürgen Benvenuti)
hu (Balázs Úr)
sl (Martin)
sv (Anders Jonsson)
uk (Yuri Chornoivan)
0.158 "Avdiivka" (Авдіївка) 2024-04-13
* The main changes of this release are:
* README.org:
* add doc for cmake build options
* fix cmake install de-install doc
* fix ctest instructions
* cmake: set WANT_GMIME_CRYPTO option to default off
* cmake: install help and man files
* cmake: install translations files as pan.mo
* Contributors to this release:
Dominique Dumont
Many thanks to Atri Bhattacharya for the help on cmake
0.157 "Mariinka" (Марїнка) - 2024-04-01
* The main changes of this release are:
- add cmake to build Pan. See README.org for instructions
on how to use cmake to build Pan.
- Building Pan with autotools is now deprecated. The plan is to remove
build with autotools in next release.
- install png icon files. This is required to fix some Gtk warnings.
- always display one part article (Dominique Dumont)
- enable compilation with GnuTLS by default (Dominique Dumont)
- Fixed GPG segfault, hopefully (Emil Tomczyk)
- Added support for Gemini URLs in text (Emil Tomczyk)
- Add Interlingue translation (Olga Smirnova)
* Contributors to this release:
Dominique Dumont, Emil Tomczyk, Thomas Tanner
* Updated translations:
da (Alan Mortensen)
de (Jürgen Benvenuti)
hu (Balázs Úr)
ie (Olga Smirnova)
sl (Martin)
sv (Anders Jonsson)
tr (Sabri Ünal)
uk (Yuri Chornoivan)
0.155 "Kherson" (Херсон) - 2023-11-01
* The main changes of this release are:
- libiconv link to fix build on MacOS (Ken Cunningham)
- Use password storage by default when it is enabled (Emil Tomczyk)
- Enable back GPG initialization (Emil Tomczyk)
- Fix crash in on_socket_created() when password storage is enabled (John Paul Adrian Glaubitz)
- score rules: makes : and :: behave as specified in slrn manual. (Thomas Tanner)
* Contributors to this release:
Dominique Dumont, Thomas Tanner, Emil Tomczyk, Ken Cunningham, John Paul Adrian Glaubitz, Daniel Mustieles
* Updated translations:
da (Alan Mortensen)
de (Jürgen Benvenuti)
es (Daniel Mustieles)
eu (Asier Sarasua Garmendia)
hu (Balázs Úr)
ka (Ekaterine Papava)
pl (Piotr Drąg)
sl (Martin)
sv (Anders Jonsson)
tr (Sabri Ünal)
uk (Yuri Chornoivan)
zh_CN (Boyuan Yang)
0.154 "Izium" (Ізюм) - 2023-01-05
This release fixes a regression from v0.153 where pan can segfault
when reading groups. See issue #156 for details.
Some other cleanup related to gtk2 were done.
Contributors to this release:
Dominique Dumont, Thomas Tanner
0.153 "Mariupol" (Маріу́поль) - 2022-11-13
I botched previous release. This release is identical to 0.152
except that Pan is modified to correctly identify itself as version
0.153.
0.152 "Mariupol" (Маріу́поль) - 2022-11-12
The main points of this release are:
- Gtk2 was removed from Pan. Only Gtk3 is working.
- Links to old pan.rebelbase.com are replaced with links to
pan gitlab page.
- Pan can be compiled with clang
Many thanks to Thomas Tanner for the code cleanup work done on this
release.
Contributors to this release:
Thomas Tanner, Dominique Dumont
Updated translations:
da (Alan Mortensen)
de (Jürgen Benvenuti)
hu (Balázs Úr)
pl (Piotr Drąg)
pt_BR (Enrico Nicoletto)
sl (Martin)
sr (Мирослав Николић)
sv (Luna Jernberg)
tr (Emin Tufan Çetin)
uk (Yuri Chornoivan)
0.151 "Butcha" (Буча) - 2022-06-25
This release is dedicated to all people suffering from Russian war
in Ukraine. Until this war is over, Pan release are named after
Ukrainian towns ravaged by this war.
The main points of this release are:
- Gtk2 minimal version is now 2.24.0. Note that this release is
probably the last one with Gtk2 support.
- addition of a helper script to build Pan on Windows (Thomas)
- fix Gtk3 icon scaling on Windows (Thomas, fixes #144)
- fix header handling errors (Thomas, fixes #61 and #66)
- Add a menu entry to allow editing the Score file in text editor (Thomas, fixes #11)
Many thanks to Thomas Tanner for the work done on this release.
Contributors to this release:
Thomas Tanner, Dominique Dumont, Miguel Ángel Nieto, Daniel
Mustieles, Andre Klapper, Anders Jonsson
Updated translations:
da (Alan Mortensen)
eu (Asier Sarasua Garmendia)
hu (Balázs Úr)
pl (Piotr Drąg)
sr (Мирослав Николић)
sv (Anders Jonsson)
uk (Yuri Chornoivan)
0.150 "Moucherotte"
The main points of this release are:
- Dropped support for GMime2. Only Gmime3 is supported
- Gtk3 is now default build, Gtk2 is deprecated
15fcc65 set maximum number of serveur connections to 20 (Dominique Dumont)
62e3c58 remove support for GMime2 (Dominique Dumont)
ba7a42b Enable make distcheck for both GTK builds (Petr Kovar)
db473c4 run distcheck with gtk3 (Dominique Dumont)
1b96a80 fix YAML syntax in .gitlab-ci.yml (Dominique Dumont)
9bb4d18 fix make distcheck for gtk2 (Dominique Dumont)
0ff10e7 Gtk3 is now default build, Gtk2 is deprecated (Dominique Dumont)
431f56f Nuke $GIT_REMOTE if not obtained by git config (Petr Kovar)
7847651 Fix pkg check msgs in configure.ac and print more library versions (Petr Kovar)
ccd1197 fix (string-view): compilation with clang on Mac (Dominique Dumont)
2478eb6 fix missing articles with dangling reference (Dominique Dumont)
ce3600c fix typo in README.org (Dominique Dumont)
* Contributors to this release:
Dominique Dumont, Petr Kovar
* Updated translations:
cs (Petr Kovar)
es (Miguel Ángel Nieto)
sv (Luna Jernberg)
0.149 "Bellevue"
The main points of this release are:
- Fix freeze when loading group with non-ascii characters in subject
- Avoid mojibake in Subject and Headers
- Fix x-face folding (FoxMcCloud45)
- Add Base64-encoded Face header. (FoxMcCloud45)
Detailed changes:
fa5f1f6 Removed #include duplicates. (FoxMcCloud45)
425cc58 Merge commit '4dbec01e' into 'master' (FoxMcCloud45)
4dbec01 try to figure out what's going on in the CI (Dominique Dumont)
04f2bf5 Updated source code to latest upstream commit. (FoxMcCloud45)
e5a7442 Add <provides> to org.gnome.pan.metainfo.xml.in (Petr Kovar)
1f2b4d5 Update org.gnome.pan.metainfo.xml.in per AppStream 0.15 (Petr Kovar)
5308fa0 Re-add myself to DOAP (Petr Kovar)
80cc2da Actually build with enchant-2 for GTK 3 (Petr Kovar)
d20d27d Run make dist to avoid missing out on renamed files in EXTRA_DIST (Petr Kovar)
97ff896 Update man page (Petr Kovar)
fd35c45 Rename pan.appdata.xml to be consistent (Petr Kovar)
63e13c7 More small edits (Petr Kovar)
81349f2 Rename desktop file and theme icons (Petr Kovar)
43a6bb6 Some edits (Petr Kovar)
e7cff2a Fix make dist (Petr Kovar)
f0b9949 remove dead code (Dominique Dumont)
84ecae8 Fix typo in actions.cc (Ryan Schmidt)
7357c50 header-pane.cc: avoid mojibake in Subject (Dominique Dumont)
3843f30 header-pane.cc: remove unused variable (Dominique Dumont)
bf18447 header-pane.cc: avoid mojibake in headers (Dominique Dumont)
ffd48ba Fix warning in mime-utils.cc (Dominique Dumont)
ee1e15b improve pan usage message (Dominique Dumont)
c7c217e fix stuck pan when loading gmane.linux.gentoo.server (Dominique Dumont)
a04993b Compile fix: gtk_handle_box_new() to gtk_box_new() (FoxMcCloud45)
682888d Supposed fix for posting icons. (FoxMcCloud45)
3fc114e Applied Face/X-Face patches to GMIME3 code. (FoxMcCloud45)
a91de9d Another forgotten conflict fix... (FoxMcCloud45)
493de9d Fic forgotten conflict. (FoxMcCloud45)
0f36c31 Fix merge conflict. (FoxMcCloud45)
a5c8e42 Added experimental support for sending Face header. (FoxMcCloud45)
5f5b07c Merge xface-fix with compile-fix (FoxMcCloud45)
ad830b0 Header fix for Arch Linux compilation. (FoxMcCloud45)
552d383 X-Face: manual folding for length >72. (FoxMcCloud45)
3b35d8b Fix two compile errors when build with GMime3 (Detlef Graef)
af7c6df Additional fixes for issue #128 when Pan is build with some options (Detlef Graef)
e7f5802 Merge branch 'fix-mess-from-glib-update' of https://gitlab.gnome.org/Rhialto/pan (Detlef Graef)
8cf0cff Merge https://gitlab.gnome.org/GNOME/pan (Detlef Graef)
39ba1ad Take <glib.h> out of extern "C" (Olaf Seibert)
0d77554 Remove empty line from file posting.xml (Detlef Graef)
495bfb2 Fix for GMime3 build (Posting error). Issues #103 and #114 (Detlef Graef)
* Contributors to this release:
FoxMcCloud45, Petr Kovar, Dominique Dumont, Detlef Graef, Ryan Schmidt, Olaf Seibert
* Updated translations:
cs (Petr Kovar)
es (Miguel Ángel Nieto)
pl (Piotr Drąg)
pt_BR (Enrico Nicoletto)
sv (Anders Jonsson)
uk (Yuri Chornoivan)
0.148 "Chamechaude"
The main points of this release are:
- gmime3 is used by default and gmime2 is deprecated
- release tag format is changed. This release is tagged v0.148
- some UI bugs are fixed
- README was converted from ASCII to org-mode format
Detailed changes:
c77fd22 set release name (Dominique Dumont)
3e7fb82 fix preferences window size (close #99) (Dominique Dumont)
79677ce remove register storage class from cc code (Dominique Dumont)
ea76dba CI: remove --with-gmime30 obsolete option (Dominique Dumont)
e42d3ff README.org: prefer gmime3 over deprecated gmime2 (Dominique Dumont)
6abf0cf configure.ac: use gmime3 by default, gmime2 is deprecated (Dominique Dumont)
c85950d post-ui: remove space inserted before x-face (gmime3) (Dominique Dumont)
a8fda6d README.org: fix links at end of page (Dominique Dumont)
9a7bb19 README.org: convert more links (Dominique Dumont)
099ccf0 README.org: convert links (Dominique Dumont)
896cfc5 Convert README to README.org (Dominique Dumont)
d92dc16 fix (post-ui): rm handle_box to fix missing widgets (Dominique Dumont)
6260911 fix other non-utf8 char in comments (Dominique Dumont)
e88d74a converted ISO-8859 comments to UTF-8 (Dominique Dumont)
25f130c Merge branch 'back-to-ascii-msgids' (Dominique Dumont)
d5f41ee bump release number (Dominique Dumont)
b7e7826 fix (appdata): change appstream id (Dominique Dumont)
d2990c7 fix: can compile gtk3 without gtk2 libs (Dominique Dumont)
e2f001c Use only ascii for translatable messages. (Dominique Dumont)
86acf0a Revert "One more Unicode apostrophe" (Dominique Dumont)
* Contributors to this release:
Dominique Dumont
* Updated translations:
pl (Piotr Drąg)
pt_BR (Enrico Nicoletto)
sv (Anders Jonsson)
uk (Yuri Chornoivan)
0.147 "Sweet Solitude"
This release contains mostly bug fixes so pan can be compiled on major
Linux distributions.
In the next releases, we'll try to get rid of gmime2 code. Please reach out to
pan-devel [at] nongnu.org if this may cause issues.
* Detailed changes:
4840346 Fix for GMime3 bug in: message_add_signed_part() (Detlef Graef)
50ea85a Try an autodetection strategy: (Olaf Seibert)
0c1b7bd Fix compiler warning (Olaf Seibert)
d0cbb97 Work around corrupt/inconsistent file names. (Olaf Seibert)
637745c Replace totally unnecessary UTF-8 colons by real ones. (Olaf Seibert)
e6aaea8 Remove empty line from file posting.xml (Detlef Graef)
65a71e1 Fix for GMime3 build (Posting error). Issues #103 and #114 (Detlef Graef)
0ebef22 build: Target a specific GLib API version (Simon McVittie)
6afcdb8 fix (configure.ac): update GETTEXT version (Dominique Dumont)
3d6f401 fix (gitlab ci): use libenchant-2-dev (Dominique Dumont)
b2e36e6 fix (gitlab ci): set DEBIAN_FRONTEND noninteractive (Dominique Dumont)
3e2cc1b Adjust packages to install in CI. (Olaf Seibert)
7e10591 Move more header inclusions outside extern "C" (Simon McVittie)
52b299e Take <glib.h> out of extern "C" (Olaf Seibert)
77d1c18 add me to doap files and remove Charles and Petr (Dominique Dumont)
ade0e36 Add Swedish help translation (Anders Jonsson)
0049344 Replace cgit with gitlab URL in mknews (Andre Klapper)
8b972b1 Updated Spanish translation (Daniel Mustieles)
83c9561 Updated Spanish translation (Daniel Mustieles)
ceadf9e Post-release bump (Petr Kovar)
* Contributors to this release:
Olaf Seibert, Dominique Dumont, Detlef Graef, Simon McVittie,
Daniel Mustieles, Petr Kovar, Andre Klapper, Anders Jonsson
* Updated translations:
ca (Jordi Mas)
eu (Asier Sarasua Garmendia)
hu (Balázs Úr)
id (Andika Triwidada)
pl (Piotr Drąg)
pt_BR (Rafael Fontenelle)
sv (Anders Jonsson)
tr (Sabri Ünal)
uk (Yuri Chornoivan)
0.146 "Hic habitat felicitas"
26eea78 Update .gitlab-ci.yml with GTK 3 (Petr Kovar)
7f59091 Use an int instead of a char (Jonathan Briggs)
476b5a6 Fix for issue #77. Segfault when build with gmime-3 (Detlef Graef)
e5be4d4 Fix to build Pan with options --with-gmime30 and --with-gmime-crypto
(Detlef Graef)
edad96d Update bug URLs (Sebastiaan Lokhorst)
e65ba15 Replace Bugzilla by Gitlab URL in DOAP file (Andre Klapper)
ba6322f Add .gitlab-ci.yml (Petr Kovar)
b9a4154 Fix ypart begin for bpf ranges (Federico Cuello)
1de4962 Update URLs to GitLab (Petr Kovar)
ad60bca Module was renamed to pan (Andrea Veri)
* Contributors to this release:
Petr Kovar, Detlef Graef, Sebastiaan Lokhorst, Jonathan Briggs,
Federico Cuello, Daniel Mustieles, Andre Klapper, Andrea Veri
* Updated translations:
bs (Sebastiaan Lokhorst)
cs (Sebastiaan Lokhorst)
da (Sebastiaan Lokhorst)
de (Sebastiaan Lokhorst)
el (Sebastiaan Lokhorst)
es (Daniel Mustieles, Sebastiaan Lokhorst)
fi (Sebastiaan Lokhorst)
fr (Sebastiaan Lokhorst)
hu (Sebastiaan Lokhorst)
pl (Sebastiaan Lokhorst)
pt (Sebastiaan Lokhorst)
pt_BR (Rafael Fontenelle)
ro (Sebastiaan Lokhorst)
sl (Sebastiaan Lokhorst)
sr (Sebastiaan Lokhorst)
sr@latin (Sebastiaan Lokhorst)
sv (Josef Andersson)
tr (Sebastiaan Lokhorst)
0.145 "Duplicitous mercenary valetism"
7ec8ca1 Do not use front() on empty vector (Jonathan Briggs)
29aad7e Bug 793228 nzb file with empty segment lists crash pan (paul@flinders.org)
27190a5 Bug 793277 Use after free in main() (paul@flinders.org)
* Contributors to this release:
paul@flinders.org, Petr Kovar, Jonathan Briggs
* Updated translations:
da (Joe Hansen)
de (Mario Blättermann)
es (Daniel Mustieles)
hu (Balázs Úr)
pt_BR (Rafael Fontenelle)
sr (Мирослав Николић)
sr@latin (Мирослав Николић)
0.144 "Time is the enemy"
28ab3ba Validate pan.appdata.xml.in and tweak cleanfiles (Petr Kovar)
83e8a01 Remove outdated FSF address (Petr Kovar)
d73c52c Update README (Petr Kovar)
aa59d3f Add man page (Petr Kovar)
f55b7fb Upgrade pan.appdata.xml.in (Petr Kovar)
f6061b3 Require GMime 3.0 to be explicitly enabled, don't fallback to it
(Petr Kovar, #791435)
7c9f34b Patch for GMime 3.0. Porting to GMime 3.0 still not completed.
(Detlef Graef, #786438)
0600d83 Can't open nzb files from desktop (Sebastiaan Lokhorst, #789988)
75ae784 Follow Icon Theme Specification (Petr Kovar)
* Contributors to this release:
Petr Kovar, Sebastiaan Lokhorst, Detlef Graef
* Updated translations:
cs (Petr Kovar)
nb (Petr Kovar)
pl (Piotr Drąg)
pt_BR (Rafael Fontenelle)
0.143 "Quaint little villages here and there"
bb0c906 INSTALL file is no longer used (Petr Kovar)
25e2b0a Use xdg-open instead of deprecated gnome-open (Petr Kovar)
02834e6 Update German translation (Mario Blättermann)
12b6b46 Fix nits wrt GMime 3.0 (Petr Kovar)
90c1604 First patch to enable GMime 3.0 lib. Porting to GMime 3.0 not yet
completed. (Detlef Graef)
b376c88 One more Unicode apostrophe (Piotr Drąg)
8022375 Edit strings (Petr Kovar)
42bea90 Added autohiding attachments panel (Marek Černocký)
ea46a27 Fixed groups/body panels resizing in GTK 3 (Marek Černocký)
e9a1173 Attempt to fix display of threads with unread articles. (Jason Lynch)
44d7766 Use Unicode in translatable strings (Piotr Drąg)
75a9fd3 Updated Czech translation (Marek Cernocky)
05f02ad Fixed showing combobox options unlocalized (Marek Cernocky)
ba08fd2 Update Spanish translation (Daniel Mustieles)
3e70a04 Update German translation (Mario Blättermann)
b432931 Enable all TLS versions supported by GnuTLS (Detlef Graef)
* Contributors to this release:
Petr Kovar, Piotr Drąg, Mario Blättermann, Marek Černocký, Marek Cernocky,
Detlef Graef, Jason Lynch, Daniel Mustieles
* Updated translations:
cs (Petr Kovar, Marek Cernocky)
da (Ask Hjorth Larsen)
de (Mario Blättermann)
es (Daniel Mustieles)
hu (Balázs Úr)
pl (Piotr Drąg)
sr (Мирослав Николић)
sr@latin (Мирослав Николић)
sv (Anders Jonsson, Sebastian Rasmussen, Josef Andersson)
0.142 "He slipped to Sam a double gin"
8b56f1b Update docs for password storage change (Petr Kovar)
b8c8c8e Fix some ISO C++ 11 warnings (Detlef Graef)
1758891 Change use-gnome-keyring to use-password-storage (Petr Kovar)
8f5e9f0 Build libsecret & gcr with gtk3 only, gnome-keyring with gtk2
(Petr Kovar)
1cf6b97 Remove dependency on deprecated libgnome-keyring. New libraries used:
libsecret and gcr (GTK+ 3 only). (Detlef Graef)
d1206be Rewrite autogen.sh to drop dependency on gnome-common (Detlef Graef)
faa4de3 Nuke intltool (Petr Kovar)
24f5aeb Forgot to update HELP_LINGUAS (Petr Kovar)
7b53a67 Update and add Czech translation (Petr Kovar)
1c4598a Fix the strftime test for mingw64 (Steve Davies)
5790571 Update docs and include COPYING-DOCS (Petr Kovar)
bcb5d0f Re-add help menu item for manual (Petr Kovar)
df05588 Add new documentation infrastructure (Petr Kovar)
564929f Updated Spanish translation (Daniel Mustieles)
921488a Updated Spanish translation (Daniel Mustieles)
776286e Updated Spanish translation (Daniel Mustieles)
f3ff30e Fixed typos in a string (Daniel Mustieles)
53d0103 Updated Spanish translation (Daniel Mustieles)
117793f [l10n] Updated German doc translation (Mario Blättermann)
68c2a7d Updated Spanish translation (Daniel Mustieles)
f4cede7 Improve help (Heinrich Müller)
a477483 Final fixes to the help system (Petr Kovar)
14f1a6e Tweak the help support (Petr Kovar)
707d801 Add gnome-doc-utils basic support (Petr Kovar)
7c79aa0 Add Pan manual (Douglas Bollinger)
ee7e4ad Fix size of preference window too large (Detlef Graef, #697983)
a76d293 Fix Header Pane menu not shown when built without option --with-gnutls
(Detlef Graef, #777711)
4c4dcf6 Mention crypto in configure output (Petr Kovar)
6072d9a Post-release bump (Petr Kovar)
* Contributors to this release:
Petr Kovar, Daniel Mustieles, Detlef Graef, Steve Davies, Mario Blättermann,
Heinrich Müller, Douglas Bollinger
* Updated translations:
ca (Jordi Mas)
cs (Petr Kovar)
da (Joe Hansen)
de (Mario Blättermann)
es (Daniel Mustieles)
pl (Piotr Drąg)
pt_BR (Rafael Fontenelle, Enrico Nicoletto)
sv (Anders Jonsson)
0.141 "Tarzan's Death"
194f2dc Treat a 500 response to MODE READER as OK (Per Hedeland)
3de214e Fix a memory leak found by valgrind (Olaf Seibert)
e5ea76f Fix a memory leak found by valgrind (Olaf Seibert)
3ed2498 Fix a memory leak found by valgrind (Olaf Seibert)
1bdde46 Fix a memory leak found by valgrind (Olaf Seibert)
c166cc8 Fix a memory leak found by valgrind (Olaf Seibert)
22e01f8 Fix a memory leak found by valgrind (Olaf Seibert)
88e3401 clang static analyzer (Viktoras)
9ad1e02 Cannot start after removing last news server (freepro)
4207a74 Do not overwrite silently draft file (Detlef Graef, #704227)
d1faec5 Get rid of deprecated g_atexit() calls (Detlef Graef)
fefda68 Closing Pan without server config (Detlef Graef, #729329)
73d0abd Deprecated g_type_init() with glib2 > 2.36 (Detlef Graef)
* Contributors to this release:
Olaf Seibert, Detlef Graef, Petr Kovar, Viktoras, Per Hedeland, freepro
* Updated translations:
ar (Piotr Drąg)
az (Piotr Drąg)
cs (Petr Kovar)
de (Mario Blättermann)
en_CA (Piotr Drąg)
en_GB (Piotr Drąg)
es (Daniel Mustieles, Piotr Drąg)
fr (Piotr Drąg)
hu (Balázs Meskó)
it (Piotr Drąg)
ms (Piotr Drąg)
nb (Piotr Drąg)
pl (Piotr Drąg)
pt (Piotr Drąg)
pt_BR (Enrico Nicoletto)
ro (Jobava)
sl (Piotr Drąg)
sr (Мирослав Николић)
sr@latin (Мирослав Николић, Piotr Drąg)
sv (Josef Andersson)
0.140 "Chocolate Salty Balls"
dfd5c32 Fix a memory leak found by valgrind (Olaf Seibert)
9ca587f Avoid clearing a timer event source id which is by now invalid
(Olaf Seibert)
4c08134 Fix a memory leak found by valgrind (Olaf Seibert)
7f2678d Fix a memory leak found by valgrind (Olaf Seibert)
3c07a42 Fix a memory leak found by valgrind (Olaf Seibert)
d702d1b Fix a memory leak found by valgrind (Olaf Seibert)
83cd963 Fix a memory leak found by valgrind (Olaf Seibert)
833ccc6 Fix a memory leak found by valgrind (Olaf Seibert)
35ecd62 Fix typo in header guard (Olaf Seibert)
bbf5f29 Conditional jump or move depends on uninitialised value(s) (Olaf
Seibert)
08d678e Conditional jump or move depends on uninitialised value(s) (Olaf
Seibert)
cb9c937 Conditional jump or move depends on uninitialised value(s) (Olaf
Seibert)
44ffc85 Fix build with libc++ (Petr Kovar)
d62efbf Do not distribute outdated pan.iss (Petr Kovar)
c3679d1 Move ChangeLog -> NEWS & update docs (Petr Kovar)
f9e0a50 Replace RulesInfo.deque<RulesInfo> with deque<RulesInfo *>
(Olaf Seibert)
4323223 Fix missing recursion (this is a pre-existing bug) (Olaf Seibert)
0b399ec Changed a deque<FilterInfo> into a deque<FilterInfo *> (Olaf Seibert)
2024f05 Deleted object is touched again (Olaf Seibert)
9b31c87 Remove leftover code (Petr Kovar)
80566c8 Do not include https:// in GIT_REMOTE (Petr Kovar)
f55cebc Rules Enabled preference flag wasn't loaded (Andrew Nile)
b74bcc9 Prevent EOF char from stopping binary upload in Win (Andrew Nile)
73863fc Missing break (Andrew Nile)
81ec291 Update license.h (Petr Kovar)
5186a2a Do not include protocol & user name in GIT_REMOTE (Petr Kovar)
4228421 Fix accel key 'R' (used twice) (Detlef Graef)
9471b22 fix: close posting window (Detlef Graef)
46f97aa Unneeded detour via C-type strings (Olaf Seibert)
6b1b345 Fix saving of SSL certificate (Detlef Graef)
055fe95 Fix Edit SSL Certificates crash (walt)
a52b404 Fix localedir (Petr Kovar)
94d5b7c Update FSF address (Petr Kovar)
3663720 Fix crash at PanTreeStore::get_iter() (Detlef Graef)
2ce62c7 Update desktop file (Petr Kovar)
0806805 Add appdata support for Pan (Petr Kovar)
34e1bb5 file::get_pan_home() : fix for g++-5 non-CoW std::string semantics
(Alexandre Rostovtsev)
c186c9f Rename configure.in -> configure.ac (Petr Kovar)
af87825 When "Show Matching Articles' Threads", messages with dangling
References not shown (Lionel Elie Mamane)
81929d0 Fixes in encode-cache.cc, task-upload.h, uuencode.c (Andrew Nile)
2ae6aff Applied refresh patch for body-pane (Heinrich Müller)
8bd7184 Fixes in pan/gui/prefs-ui.cc (Andrew Nile)
0a57a01 Various UI fixes (Heinrich Müller)
7ca9c6c Updated FSF's address (Daniel Mustieles)
4820c84 Remove outdated pan.spec.in (Petr Kovar)
6daf184 Fix XZVER, append \r\n (Heinrich Müller)
b1af29b Fix for ISO C++ and struct deque (Heinrich Müller)
6200d57 Fix XFEATURE for XOVER task (Heinrich Müller)
8325c88 Fix XFEATURE for groups task (Heinrich Müller)
29edfc3 Added aSYNC behavior; disabled treeview on search (Heinrich Müller)
b00f96e Added support for GtkSpell 3 (Yclept Nemo)
099bd57 next-unread-group etc. broken (Heinrich Müller, #690789)
42b9292 Improve verbose output in non-GUI mode (Heinrich Müller)
c251367 Segmentation fault when using external editor to compose newsgroup
postings (Heinrich Müller)
db8adcf Let the user deactivate task pane pop-ups from task pane (Heinrich
Müller)
f509257 Posting - Error 441 is not a successful post (Heinrich Müller,
#693786)
f6c7a64 Use zlib CRC32 for compression.cc; fix non-GUI header XOVER (Heinrich
Müller)
cb7b50a Use zlib CRC32 (Heinrich Müller)
5133e23 Improve speed of uudecode (Heinrich Müller)
5eef4fc Fix IP lockout on ISP IP change; fix SIGSEGV in socket impl (Heinrich
Müller)
4922045 Fixes for XFEATURE; patch for 'match only read' (Heinrich Müller,
Cal Peake)
acb4362 Avoid NPE on early init of server edit dialog; fix XFEATURE (Heinrich
Müller)
2d053c4 Let the user choose compression type with combobox; hint which server
supports which compression scheme (Heinrich Müller)
88fe336 Activate action 'get-new-headers-when-entering-group' only for
non-virtual groups (Heinrich Müller)
9e301fb Fix for line-wrapped x-face header (Heinrich Müller)
3f81af1 Properly escape < and > chars in subject (Heinrich Müller)
d454a36 Fix for group enter (Heinrich Müller)
e2ca6d2 Fix NPE (Heinrich Müller)
4f681cd Added support for Diablo and XFEATURE (Heinrich Müller)
00fe4a3 Added XZVER functionality (Heinrich Müller)
6a8de8b Patch for user agent in the GUI (Miroslav Sabljic)
dcc2556 Refactoring; added virtual folders for sent and drafts (Heinrich
Müller)
f7ba647 Make <cert> filename.pem become related to the current $PAN_HOME dir
(Heinrich Müller, #680295)
a823ae8 Patch for NetBSD & iconv (Heinrich Müller)
4ad8971 Fix segfault in task-pane.cc:148 (Heinrich Müller)
c860200 Disconnect only if set in prefs (Heinrich Müller)
9cd77f9 Added HTML parser (Heinrich Müller)
6a2a9df HTML preview (Heinrich Müller)
52ccea5 Fix for systray behavior (Heinrich Müller)
884e4c1 Removed dbg output (Heinrich Müller)
9faef90 Improved gtkstyle handling for progressview (Heinrich Müller)
29120fa Change show sig icon (Heinrich Müller)
8b934ce Adapt to any screen size in prefs-ui, show scrollbars if needed
(Heinrich Müller)
cf68577 "Complete" the Colors tab; pan 0.136 fails to build on 64-bit OS X
(Heinrich Müller, #681037, #673813)
07e4614 Fix NPE in action_combo (Steve Davies)
4162e82 Shortcuts tab is always drawn first (Heinrich Müller, #681036)
1dba05f Update desktop file (Heinrich Müller, #680468)
a3bbefc Add an option to turn-off 'tool-tips' on the Task Manager panel
(Heinrich Müller, #680298)
b5aeade Added save option for inline yEnc images (Heinrich Müller)
87c6bda Fixed singletons, moved color init to pan.cc (Heinrich Müller)
56d4463 Add Background and foreground text color selection; GTK+ 3 compiler
cleanup; cleanups in various files (Heinrich Müller, #651306)
f21f939 Fixed behavior of mark_read in taskarticle according to action-implied
post-action or simple GUI interaction (Heinrich Müller)
03d24a9 Fix for http://lists.nongnu.org/archive/html/pan-users/2012-07/msg00033.html
(Heinrich Müller)
014d082 Fixed a memory leak with new regex (Heinrich Müller)
29da552 Filtering within task list (Heinrich Müller, #679274)
55733b8 Fixed memory leak in shortcut dialog (Heinrich Müller)
c249f58 Fix for display of shortcut literals (Heinrich Müller)
395f288 Added info about gkr to README (Heinrich Müller)
* Contributors to this release:
Heinrich Müller, Petr Kovar, Olaf Seibert, Detlef Graef, Andrew Nile, walt,
Daniel Mustieles, Alexandre Rostovtsev, Steve Davies, Miroslav Sabljic, Cal
Peake, Yclept Nemo, Lionel Elie Mamane
* Updated translations:
bs (Samir Ribic)
ca (Jordi Mas, Gil Forcada)
cs (Petr Kovar, Marek Černocký)
de (Mario Blättermann, Heinrich Müller, Christian Kirbach)
el (Maria Mavridou, Dimitris Spingos)
es (Daniel Mustieles)
fi (Lasse Liehu)
fr (Bruno Brouard)
hu (Balázs Úr)
ja (Jiro Matsuzawa)
pt (Pedro Albuquerque, Duarte Loreto)
pt_BR (Rafael Ferreira, Rafael Fontenelle, Júnior Pires)
sl (Matej Urbančič, Martin Srebotnjak)
sr (Мирослав Николић)
sr@latin (Мирослав Николић)
sv (Anders Jonsson)
tr (Necdet Yücel, Muhammet Kara)
0.139 "Sexual Chocolate"
* std::logic_error thrown ("basic_string::_S_construct null not valid")
(Heinrich Müller, #678445)
* added error popup for posting to a disabled server (max connections 0)
(Heinrich Müller)
* Patches to SSL socket handling (Steve Davies)
* clear last-visited (group/article) on middle-click (Heinrich Müller)
* Updated translations: Spanish (Daniel Mustieles), Slovenian (Martin Srebotnjak,
Andrej Žnidaršič, Matej Urbančič).
0.138 "Der Geraet"
* Hotkey for showing/hiding signatures in the article body. (Heinrich Müller,
#350496)
* Keep position on selected item on re-order. (Heinrich Müller, #443702)
* Remember last read post. (Heinrich Müller, #448416)
* Open url in browser. (Heinrich Müller, #464335)
* Signature printed double when line needs to be wrapped. (Heinrich Müller,
#533178)
* Tasks marked "Stopped" should also remain stopped when pan restarted.
(Heinrich Müller, #543319)
* "Save at" options other then %g and %G. (Heinrich Müller, #550007)
* Filter Cross-posters. (Heinrich Müller, #587585)
* 136 using secure ssl and get continuous popups for certs but no connection.
(Heinrich Müller, #673927)
* PO message very difficult to translate. (Heinrich Müller, #675953)
* Pan crashes while fetching new headers. (Heinrich Müller, #677741)
* Updated translations: Spanish (Daniel Mustieles), French (Bruno Brouard),
Czech (Petr Kovar), Slovenian (Martin Srebotnjak, Andrej Žnidaršič, Matej
Urbančič).
0.137 "The Mattel and Mars Bar Quick Energy Chocobot Hour"
* Bugfix release for errors regarding segfaults etc. with thread handling.
* Colorize group names. (Heinrich Müller)
* Fix three-horizontal-pane layout between sessions. (Heinrich Müller)
* Stop tasks when there is no space left on device. (Heinrich Müller)
* Honour default attachments folder setting if group folder is not set.
(Heinrich Müller)
* Updated translations: Spanish (Daniel Mustieles), Slovenian (Matej
Urbančič, Martin Srebotnjak).
0.136 "Far too busy being delicious..."
* Support for uploading attachments (with NZB creation) to Usenet. (Heinrich
Müller)
* Selectable Content-Transfer-Encoding. (Heinrich Müller)
* Selectable GtkSpell default language. (Heinrich Müller)
* Support for encrypting and signing articles with a public/private PGP key.
(Heinrich Müller)
* Connections can now be encrypted with TLS 1.0. (Heinrich Müller)
* Various bugfixes/enhancements from Bugzilla.
* Auto-Cache/-Download/-Delete/-Mark read based on scores. (Heinrich Müller)
* D-Bus support for automatic batch addition of new files to the Download Queue.
(Heinrich Müller)
* Status Icon support. (Heinrich Müller)
* GNOME Keyring support for safely storing server passwords. (Heinrich Müller)
* Updated translations and help: Spanish (Daniel Mustieles, Nicolás Satragno),
Slovenian (Andrej Žnidaršič, Matej Urbančič, Martin Srebotnjak), German
(Christian Kirbach, Mario Blättermann), Czech (Marek Černocký, Petr Kovar),
Esperanto (Kristjan SCHMIDT), Danish (Joe Hansen), Japanese (OKANO Takayoshi),
Russian (Yuri Myasoedov), French (Bruno Brouard), Brazilian Portuguese
(Gabriel Speckhahn).
0.135 "Tomorrow I'll Wake Up and Scald Myself with Tea"
* Improve URI detection in the body pane. (K. Haley)
* Make highlighting of URIs in the body pane optional. (K. Haley)
* Add a newsrc autosave timer. (K. Haley)
* Fix mailto URI encoding. (K. Haley, #648375)
* Create a NZB file from the list of articles. (Heinrich Müller)
* Optional compatibility with GTK+ 3. (K. Haley)
* Fix the text-massager-test failure. (K. Haley, #642746)
* Support format=flowed in text-massager. (K. Haley)
* Guess deliberate line breaks. (K. Haley)
* Saving articles from the NZB file no longer causes articles to be queued
multiple times. (K. Haley)
* Separate line length check for each quote level. Should only be for quoted
levels. (K. Haley)
* Add the wrap selected option to the post editor. (K. Haley)
* Slightly improve Pan.ico. (Petr Kovar, #499214)
* Updated translations: Spanish (Jorge Gonzalez, Daniel Mustieles), Swedish
(Daniel Nylander), German (Mario Blättermann), Danish (Joe Hansen), Czech
(Petr Kovar)
0.134 "Wait for Me"
* Fix compilation with GCC 4.4. (Charles Kerr, #573722)
* WARNING: setting an adjustment with non-zero page size is deprecated.
(Charles Kerr, #579753)
* No window icon when running in NZB-mode. (Charles Kerr, #574419)
* Remove deprecated glib/gdk/gtk calls to prepare for GNOME 3.
(Charles Kerr, #596648)
* Use GRegex instead of PCRE. (Charles Kerr, #596653)
* Tooltips missing from two 'Post Article' toolbar buttons.
(Charles Kerr, #548860)
* Infinite loop with server that doesn't support LIST NEWSGROUPS.
(Charles Kerr, #545220)
* 'Add port to server dialog' -- apply commits 862da67, af30418 from
lostcoder. (K. Haley, Charles Kerr, #527313)
* Support 64 bit article numbers. (Charles Kerr, #549655)
* Don't queue xover for 0 connections. (Charles Kerr, #596682)
* Make wrapping honor changes in compose-wrap pref. (Charles Kerr, #596680)
* Change nzb task saving delay & add pref. (Charles Kerr, #596683)
* Port to GMime 2.4. (K. Haley, #541676)
* Spawn editor asynchronously. (K. Haley, #465763)
* Change allocation buffer for article tree. (K. Haley)
* Save some more memory by re-ordering a few variables. (K. Haley)
* Don't save files as executable. (K. Haley)
* Fix handling of multibyte spaces in text-massager. (K. Haley)
* Re-write multipart handling for viewing. (K. Haley)
* Change default mime-type for incoming attachments. (K. Haley, #135734)
* Add some additional mime types. (K. Haley)
* Add memchunk.h to Makefile.am. (K. Haley)
* GTK+ 2.16 required. (K. Haley)
* Fix bug in multipart article mids. (K. Haley)
* Add console support for windows. (K. Haley)
* Update filter-info and scorefile-test to support non-overview headers.
(K. Haley)
* Skip non-overview test if not cached. (K. Haley)
* Make ArticleCache::get_message const. (K. Haley)
* Allow scoring article on all headers. (K. Haley)
* Promote rescore_articles to data interface. (K. Haley)
* Update score when article is cached. (K. Haley)
* Add regex support to search. (Jack Cuyler, K. Haley, #351196)
* Additional info for about & User-Agent. (K. Haley, #424083)
* Add support for compiling with gmime-2.5. (K. Haley)
* Allow subject line use in save path. (K. Haley, #403797)
* Improve regexes used for squashing subject line. (K. Haley)
* Reduce memory allocation for multiparts. (K. Haley)
* Allow newsrc paths relative to PAN_HOME. (K. Haley)
* Save tasks on exit. (K. Haley, #609355)
* Always show full revision info in UA hdr. (K. Haley)
* Remember size of post window. (K. Haley)
* Add tests for subject line. (K. Haley)
* Make separator user configurable. (K. Haley)
* Replace deprecated gdk_pixmap_create_from_data. (K. Haley)
* Add support for Face header. (K. Haley)
* Fix crash possibly due to change in cairo. (K. Haley)
* Change from GdkPixmap to GdkPixbuf. (K. Haley)
* Remove deprecated function through gtk 2.18. (K. Haley)
* Compatibility with -std=c++0x. (K. Haley)
* Fix crash in gio_func on OSX. (K. Haley)
* Updated translations: Arabic (Djihed Afifi), Brazilian Portuguese (Flamarion
Jorge), Spanish (Jorge Gonzalez), Portuguese (Duarte Loreto), French (Claude
Paroz, Bruno Brouard), Catalan (Joan Duran), German (Mario Blättermann,
Andreas Kuhlen), Basque (Inaki Larranaga Murgoitio), Swedish (Daniel
Nylander), Czech (Petr Kovar), Slovenian (Andrej Žnidaršič), Danish (Joe
Hansen), Simplified Chinese (Aron Xu)
0.133 "House of Butterflies"
535413 fix heap overflow in pan when parsing .nzb files (Pavel Polischouk)
467446 image viewer truncates image (Aaron Von Gauss)
540798 handle NNTP server '203 Streaming OK' responses (Mark Beach)
524620 compile fails on glib 2.16: g_assert moved to gtestutils.h (Duncan)
527852 use po/LINGUAS (Gilles Dartiguelongue)
482140 get last N days' headers fails when no headers in N days (Anonymous)
514167 'post' window doesn't fit on 800x480 display (Alexey Zakhlestin)
541704 pan uses deprecated `hash_set' class (Charles)
527853 unit test 'scorefile-test' fails on sparc (Ferris McCormick)
0.132 "Waxed in Black"
441859 in 0.131, 'read next unread' didn't always work (Artur Jachacy)
456730 text before signature delimiter is doubled (Alexander Skwar)
444184 0.131 fails to build on RH4/CentOS4 (Steven Ellis)
438021 can't post one message to multiple groups at one time (Keith)
355041 Two-segment group name abbreviations (Benjamin Esham)
447680 handle nzb files whose parts are in the wrong order (Benjamin Charron)
349490 better info for the tool-tip of the Tasks button (Douglas Bollinger)
456519 Dependency on gmime version should be 2.1.9, not 2.1.0 (Gregory Lee)
0.131 "Ghosts: First Variation"
441442 bad yEnc decoding / occasional crash (Charles + valgrind)
440853 fix 0.130 crash while fetching some headers (Sci Fi)
440470 fix 0.130 bug that made deleting articles very slow (Walt)
440194 fix 0.127 memory leak (Charles + valgrind)
426377 workaround for GMime bug that won't show multipart images (Mike)
440545 saving a group's headers could be faster (Charles + sysprof)
440990 more speedups in saving headers (Charles + sysprof)
441034 StringView::ltrim() speedups (Charles + sysprof)
0.130 "Hyperbolicsyllabicsesquedalymistic"
417627 crash after throwing an instance of 'std::length_error' (Serge)
438604 froze replying to posts with just "Re: " in the subject (Artur Jachacy)
437686 0.129 didn't build on irix with MIPSpro C++ compiler. (Avi Bercovich)
419199 fix 0.128 regression. (Frank Tabor)
433316 task window coordinates set to -32000 on Windows (Argoyne)
436101 make nzb suffix filter case-insensitive (Darren Albers)
348445 tweak menu text to reflect multiple group selections (Darren ALbers)
361388 add ability to queue nzb's when viewing them (Adrian Yee)
0.129 "Benson & Hedges Moscow Gold"
436064 RFE: add 'copy url' to context menu
436101 RFE: add nzb filter to 'import nzb' dialog (Frederic Crozat)
428578 Crash when trying to post a supersede (Stephane Gregoire)
434502 changing pane in tabbed mode (Lanif)
432387 0.128 crash / memory corruption (Jeremy, Pav Lucistnik)
432289 sometimes queued tasks never decode (Calin)
419199 wrap should not be mandatory (Bill Baker)
348445 can't select multiple groups (Artur Jachacy)
090594 add option to always spawn editor when composign (Gauze)
0.128 "SR/CL: Leitmotiv: Toynbee Idea"
431247 "Add a Scoring Rule" crashes if no article is selected (Christophe)
432023 0.127 crashes when loading corrupted groups (Charles)
432024 Speed improvements when saving and loading groups (Charles)
431552 0.127 no longer stops downloading when disk is full (Alan Olsen)
430958 Get N Headers fails if group has small # of headers (Anon)
429449 Pan 0.126, 0.127 won't compile w/gtk 2.6.x (Jeff Berman)
429485 Articles marked read showing back up (Frank Tabor)
407301 All new articles are shown, regardless of score (Per Hedeland)
0.127 "Eckythump"
428151 Compilation error in e-util.cc under fink (SciFi)
424381 Pango warnings from attachments with accented chars (SciFi)
427230 Sigfiles with CR/LFs not handled properly (Artur Jachacy)
393589 X-Face not shown properly (Ivan Rajkovic)
425993 Crash when downloading new headers in 0.126 (Drew Yavor)
427212 Crash when hitting 'read more' when no group loaded (Duncan)
424240 Downloading headers from the command line (Eric Lauriault)
424248 In --nogui mode, exit when the last task finishes. (Eric Lauriault)
427165 Task pane's ETA wrong on new xover tasks (Charles)
426375 Task pane's ETA wrong when selecting > 4GB of queued files (Mike)
0.126 "Demon Sweat"
420618 Decode in a worker thread for faster GUI/network (Calin Culanu)
423376 Status Bar's "tasks" and "log" buttons toggle the windows (Walt)
411446 Use `Message-ID', not `Message-Id', when posting (Charles)
411447 Header pane loses selection when deleting articles (Jeff Berman)
411657 Post window's cursor appears in the wrong place (Frank Tabor)
411659 post window's "save draft" file dialog gets confused (Charles)
411959 profile's `Reply-To' header used wrong in 0.125 (Mimi Doucet)
423684 Latest glib issues "memory warnings" on startup (SciFi)
0.125 "Potzrebie"
408767 connection-limit change not recognized until restart (Chuck)
408778 0.124 bug: signature "command" executed twice (Jack Cuyler)
408866 0.124 bug: error with the signature delimiter (Mimi Doucet)
408990 0.124 bug: no more line break at 80 characters (longint)
371868 add common headers to `more headers' in post window (Frederic Crozat)
0.124 "Goblin Worlds"
370195 0.123 mime decoding errors (Walt)
404833 marking a group as read doesn't stick between sessions (Frank Tabor)
406284 array bounds read in StringView::strchr (Bruno Barberi Gnecco)
403762 pasted text isn't wrapped automatically (Artur Jachacy)
121178 built-in editor wraps text improperly when composing (Carl Hudkins)
405765 some multiparts aren't grouped properly (Konrad Karl)
360376 go to next unread-group should be circular (Frederic Crozat)
406248 make it easier to find previously-read context (Jack Spaar)
346915 post window's profile list should show email addresses (Artur Jachacy)
405637 give the save button focus in the save dialog (Chris Petersen)
0.123 "El Nuevo Barretto"
404515 0.122 build problems in `po' (Pteer)
404309 0.122 build problems for uint64_t (Geoff)
404837 newsgroups disappear in 0.121 and 0.122 (Kevin Brammer)
404183 null pointer in printf (Laurent Bigonville)
371838 header pane not updated for scores on bytes or lines (Mike)
370195 uulib/fptools.c assert issue - crash (Samuli Karkkainen)
404979 in 0.122, `cache' behaves like `read' (Michael Bernstein)
395318 show `wait' cursor when filtering (Kreao Kunjas)
404347 indicate offline status more clearly (Samuli Karkkainen)
0.122 "Not Even Wrong"
354779 pan no longer attempts to reconnect (Jason Auvenshine)
403513 crash in FC6 when viewing one specific message (Yannick Palanque)
401012 freed memory read in socket-impl-gio (Charles)
402121 rare memory corruption when parsing dates in scorefile (Charles)
403066 getting new groups, conditional jump on uninitialised value (Charles)
401087 servers.xml's file permissions are too lax (Robert Marshall)
399776 group pane not syncronized when group changes (Bruce Bowler)
307028 editor error: cursor positioning on indented lines (Richard Rasker)
401449 sort-by-author doesn't work properly (Charles Hill, Jason Mack)
400814 unable to mark some groups as read (Christophe)
402704 queue size too small in task-pane.cc (Shana)
389817 article not shown if another DL in progress (Samuli Karkkainen)
403076 focus is incorrect when returning to header pane (Walt)
402743 add keyboard shortcuts in task window (Ulrich Binder)
402200 support large article cache sizes (Craig Ruff)
400800 use libsexy for the toolbar's icon entry fields (Charles)
399616 log message error in 0.121 (Charles)
400012 nntp 501 error messages could be more helpful (Pavel)
400256 spurious error message after deleting server (Pavel)
400329 spurious error opening newsrc file when adding new servers (Pavel)
400026 spurious error messages when decoding articles w/o attachments (Pavel)
358062 spurious error message on nntp 411 response (Pavel)
361603 translatability problems for message strings (Flammie Pirinen)
400670 fold together some of the redundant translation strings (Charles)
0.121 "Dortmunder"
390784 crash when dragging over URL (Paul Williamson)
394139 fix small memory leaks
398074 free memory read on socket error
396523 fix minor compiler warnings
395475 make the save dialog simpler and more consistent with other Gnome apps
393912 'cache article' downloads articles in random order (Per Hedeland)
395069 faster thread filtering
397409 remove unneeded temporary objects from Quark::to_view()
390735 prompt for path if none specified when adding a nzb via command-line.
380429 References: header gets lost when superseding an article.