File: NEWS

package info (click to toggle)
pan 0.14.2.91-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 12,928 kB
  • ctags: 5,943
  • sloc: ansic: 81,518; sh: 2,953; makefile: 952
file content (992 lines) | stat: -rw-r--r-- 39,536 bytes parent folder | download
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

Pan 0.12.90 (July 9 2002)

    NEW FEATURES

        * Added a toolbar in the main window.

        * Restored, via the new toolbar, the much-missed single-click filter
          buttons from Pan 0.9.7.

        * Added the ability to restore, on startup, Tasks that were still
          queued the last time you exited Pan.

        * Added on-the-fly spellchecking in the compose window.  Thanks to
	  Evan Martin for writing gtkspell, the library that Pan uses to do
	  this, and to Michael Alger, for contributing a patch to plug
	  gtkspell into Pan.

    UPDATES

        * Eliminated the memory penalty for having tasks queued that operated
          on newsgroups other than the current newsgroup.  This should make
          alt.binaries.* go much easier on system resources.

        * Flagging messages now works across all newsgroups.  Previously
          articles could only be flagged for the current newsgroup.

        * Better support for non-standard Subject & Author headers containing
          8bit characters. Thanks to Carl Hudkins, Kang Jeong-Hee and William 
          Maddler for suggesting improvements in this area. 
          (#80002, #81181 ,#85510)

        * We now use the locale to determine the group's default charset, 
          rather than a hard-coded 'ISO-8859-1'.  Thanks to Martin Tomasek for 
          suggesting this. (#84995)

    BUG FIXES (sorted by age)

	* Fixed long-standing bug that would cause Pan to download only a 
          subset of bodies, when getting bodies for all headers. Thanks to Si
          for reporting this. (#72555)

        * Fixed 0.12.0 bug where Pan would lose the article's state when 
          switching newsgroups, making it difficult to see which articles has 
          already been saved. Thanks to Gabi Davar for reporting this. (#85445)

	* Fixed 0.12.0 bug in the Composer where the reply would be corrupted 
          if a signature was specified that contained 8bit characters.
          Thanks to Alexander Skwar for reporting this. (#85502)

        * Added the character encoding to outgoing email. Thanks to Alexander 
          Skwar for suggesting this. (#85503)
         
        * Fixed 0.12.0 bug in the Composer where the automatic wrapping would 
          corrupt the message if it contained 8bit characters. Thanks to
          Alexander Skwar for reporting this. (#85508)
  
        * Fixed long-standing bug that made it impossible to attach a rule to 
          a renamed newsgroup. Thanks to Carl Hudkins for reporting this. 
          (#85725)

        * Various build fixes reported for 0.12.0. (#85968, #86203)

        * Fixed 0.12.0 bug that caused sorting the articles in tabbed view 
          to switch to the article tab. Thanks to Fred Fraley for reporting 
          this. (#86409)

        * Fixed 0.11.3 bug that would cause Pan to unnecessarily retry failed 
          tasks. Thanks to Carl Hudkins for reporting this. (#86795)

        * Fixed 0.12.0 bug that didn't close the 'Are you sure you want to quit'
          dialog if a user pressed 'no'. Thanks to D.m.D. Ljungmark for
          reporting this. (#87518)


Pan 0.12.0 (June 18, 2002)

    NEW FEATURES

        * Better Internationalization: Pan can now finally display messages
          and headers in their appropriate charsets and fonts (#53465, #79275)
          as well as post messages in user-specified charsets (#65161).

        * Added menu button "File|Work Offline" for toggling on/offline.

        * Added menu button "File|Delete Last Task" (the "oops" button ;)

        * Added new preferences option to get new headers, or new headers and
          bodies, from subscribed groups automatically when starting Pan.

        * Added support for message/partial mime content headers.
          Thanks to T. Gamble for requesting this. (#80715)

    CONFIGURATION

        * Reduced minimum requirements to gtk2 and libxml2, for people
          running minimalist systems without GNOME or KDE.

    UPDATES

        * Decoding attachments is now very fast and uses less memory.

        * Usability improvements in
          space reading (#81868),
          copying articles to folders (#64867),
          watching/ignoring articles (#78006),
          the `next article' button (#82724),
          reading a group for the first time (#82092),
          underlining URLs (#65511),
          displaying attachments (#67554),
          saving attachments (#75591, #79338),
          colors in the compose window (#80470, #75999),
          logging error messages for failed posts (#69390),
          and rot13'ing selected text (#72015).

        * menu cleanups for GNOME Human Interface Guidelines compliance.

        * New filter dialog: The article filter GUI has been changed so that
          it can all be driven from keyboard accelerators, so that several
          changes can be made at once for a single refiltering, and so that
          subject/author filters can be kept as the user changes from one
          group to another.

        * Minor speed improvements in startup, article reading, threading,
          and sorting.

    BUG FIXES (sorted by age)

        * Fixed minor 0.11.3 memory leaks.

        * Fixed 0.11.3 bug that didn't allow i18n characters in users'
          From: headers in new posts. (#80177)

        * Fixed 0.11.2.90 bug that failed to deccode yEnc-encoded text
          messages (such as .nfo files) properly when the user tried to
          read them inside Pan's text pane.  Thanks to William McBrine for
          reporting this bug. (#75136)

        * Fixed 0.11.2.90 bug that caused Pan to crash when showing a
          warning dialog before posting a user's article. (#76350)

        * Fixed 0.11.2 bug that didn't show HTML messages.  We still don't
          parse the HTML -- HTML has no place in Usenet -- but we at least
          show the message now.  Thanks to Himanshu J. Gohel for reporting
          this bug.  (#78723)

        * Fixed 0.11.2 bug that let the article cache grow too large.
          Thanks to Bernard Debreil for reporting this bug. (#81464)

        * Fixed long-standing bug that didn't properly thread articles
          that had the subject header idiom "track (n/M] part (x/y)".
          Thanks to gaw zay for reporting this bug. (#80901)

        * Fixed long-standing bug that could cause Pan to crash when adding
          new tasks while the task manager dialog was open.  Thanks to
          Thomas Gamble for reporting this bug. (#82262)

        * Fixed long-standing bug that could cause Pan to crash when deleting
          articles which had crossposts in a group that was being unloaded by
          Pan.  Thanks to bickingd for reporting this bug. (#82865)

        * Fixed long-standing crash when rewrapping text in the
          compose window (#81258).

        * Fixed long-standing bug that caused Pan to segfault on shutdown
          when it could not write the threads.txt file in the data directory.
          Thanks to Corey Rogers for reporting this bug. (#81080)

        * Fixed long-standing bug that cuased Pan to crash sometimes 
          when the log view window was open. (#65617)

        * Fixed long-standing bug that could cause Pan to crash if the
          grouplist file was corrupt.  Thanks to Adam M for reporting
          this bug. (#72435)

Pan 0.11.94 (June 7, 2002)

    UPDATES

        * Small UI improvments for copying articles to folders (#64867),
          watching/ignoring articles (#78006), and the `next article'
          button (#82724).

        * Many small memory and speed improvements.

    BUG FIXES

        * Fixed 0.11.91 bug that caused the header pane to get switched to
          the body pane when an article was cleared, such as when deleting
          an article or switching groups.  Thanks to Sam Solon for reporting
          this bug and providing a patch.

       * Fixed long-standing bug that could cause Pan to crash when deleting
          articles which had crossposts in a group that was being unloaded by
          Pan.  Thanks to bickingd for reporting this bug. (#82865)

        * Fixed long-standing bug that could cause Pan to crash when adding
          new tasks while the task manager dialog was open.  Thanks to
          Thomas Gamble for reporting this bug. (#82262)

        * Fixed minor bug that could give the wrong error message for
          articles that users tried to post without a Subject header. (#82828)


Pan 0.11.93 (May 21, 2002)

    NEW FEATURES

        * Added support for message/partial mime content headers.
          Thanks to T. Gamble for requesting this. (#80715)

    UPDATES

        * Tweak to `space reading': if a user selects an article without
          reading it, pressing the space key will then display that
          selected article.  Likewise if a group selection changes,
          pressing the space key will jump to the selected group.  Thanks to
          William Wu for reporting issues that led to this feature. (#81868)

        * Some menu cleanups: `space reading' is back in; a shortcut for
          `delete last task' has been added, and the menus are now
          compliant with the GNOME Human Interface Guidelines.

        * Decoding attachments takes less memory and much less disk space.

        * Minor speed improvements in startup and article reading.

    BUG FIXES

        * Fixed 0.11.91 bug that made tabbed-mode reading difficult to
          use.  Thanks to Roman Moeller for reporting this bug. (#81726)

        * Fixed 0.11.90 problem that caused the text pane to scroll to the
          bottom of long articles when reading them in 'zoom' mode.
          Thanks to Kang Jeong Hee for reporting this bug.  (#76110)

        * Fixed 0.11.90 bug that made the article pane not take the
          users' color preferences seriously. (#80739)

        * Fixed a couple of minor 0.11.3 memory leaks.

        * Fixed long-standing article-cache-never-shrinks bug.
          Thanks to Bernard Debreil for reporting this bug. (#81464)


Pan 0.11.92 (May 8, 2002)

    NEW FEATURES

        * Added menu button "File|Work Offline" for toggling on/offline

        * Added menu button "File|Delete Last Task"; ie, the "oops" button :)

        * Pan's window title now indicated how many articles are selected.
          This makes life easier when checking to see if all the parts of 
          a rar post are present. (#79338)

        * Pan now puts the architecture in the User Agent header. Thanks to 
          Colin Leroy for contributing this code. (#81029)

    UPDATES

        * Other Miscellaneous changes (#75999)

        * Slightly faster deleting articles and marking articles read.

    BUG FIXES

        * Fixed 0.11.91 cut-and-paste bug that could cause article bodies
          to be saved in the wrong location.  Thanks to Colin Leroy for
          reporting this bug. (#75591)

        * Fixed 0.11.91 bug that caused threads sometimes not to be expanded.
          Thanks to Frank Van Damme for reporting this bug.

        * Fixed some 0.11.91 menu typos reported by Marcel Telka.

        * Fixed two 0.11.90 bug in `User Profiles' Tool which kept
          new profiles from being saved.

        * Fixed two 0.11.90 bug in `User Profiles' Tool which kept
          users from being able to edit their profile's custom headers.

        * Fixed 0.11.90 bug that could add garbage to the signature of a 
          posted message.

        * Fixed 0.11.2.90 bug that failed to deccode yEnc-encoded text
          messages (such as .nfo files) properly when the user tried to
          read them inside Pan's text pane.  Thanks to William McBrine for
          reporting this bug. (#75136)

        * Fixed long-standing bug that didn't create user-specified
          directories when saving article bodies via "Save As...".
          Thanks to Colin Leroy for reporting this bug and submitting
          a patch. (#80292)

        * Fixed long-standing bug that didn't properly thread articles
          that had the subject header idiom "track (n/M] part (x/y)".
          Thanks to gaw zay for reporting this bug. (#80901)

        * Fixed lond-standing bug that caused Pan to segfault on shutdown
          when it could not write the threads.txt file in the data directory. 
          Thanks to Corey Rogers for reporting this bug. (#81080)


Pan 0.11.91 (April 28, 2002)

    NEW FEATURES

        * Added a user-configurable per-group default charset to use
          when converting messages that don't specify their own charset.
          In 0.11.90 Pan didn't know how to convert messages that didn't
          specify a charset and just left the message blank.
          Thanks for Frank Van Damme for reporting this. (#79275)

        * Added new preferences option to get new headers from
          subscribed groups automatically when starting Pan.

    UPDATES

        * Call bind_textdomain_codeset() when starting Pan to set the
          output codeset for message translations.
          Thanks to Kang JeongHee for suggesting this. (#78158)

        * Refined `rot13 article body' to `rot13 selected text', since
          most rot13ed text is just punchlines or a spoiler paragraph,
          rather than an entire body.  Thanks to jim at cosx for
          suggesting this. (#72015)

        * Added `%g' and `%G' substitution fields into the download
          directory path.  If used these will be replaced with
          the.group.name/ and the/group/name/ when saving articles.
          Thanks to Hans Verkuil for this suggestion. (#75591)

    BUG FIXES

        * The single-keystroke hotkeys (like 'n' for next article), which
          disappeared in 0.11.90, are back! (#75478) (#78528)

        * Fixed major memory leak in 0.11.90 that didn't free pictures
          that were read inline.

        * Fix bug that kept 0.11.90 from compiling on platforms that
          can't take a NULL in a function expecting a va_list.
          Thanks to chaton.jm for reporting this bug.  (#78112)

        * Fixed 0.11.90 bug that didn't clear out the previous contents of
          the compose window before adding the contents from the external
          editor.  Thanks to Kang JeongHee for suggesting this. (#74885)

        * Fixed 0.11.90 bug that caused filtering on new/unread/old to
          not work properly.  Thanks to Philip Langdale for reporting
          this bug. (#79669)

        * Fixed 0.11.90 bug that didn't convert text to UTF-8 before
          displaying it in the Task Manager window.  Thanks to
          Kang Jeong-Hee for reporting this bug.  (#80004)

        * Synchronize with 0.11.3 bugfixes that were made after 0.11.90
          was released. (#73179) (#62909) (#78287)

        * Fixed 0.11.2 bug that didn't show HTML messages.  We still don't
          parse the HTML -- HTML has no place in Usenet -- but we at least
          show the message now.  Thanks to Himanshu J. Gohel for reporting
          this bug.  (#78723)

        * If an article was selected (for, say, a context menu operation),
          then clicking on the same article again wouldn't download & display
          the article; you had to double-click, which was nonintuitive.
          Now clicking on an already-selected article will download & display
          the article.  Thanks to Dan Hensley for reporting this bug. (#78557)

        * Other miscellaneous changes (#79377) (#69390)


Pan 0.11.3 (Apr 18, 2002)

    BUG FIXES

        * Fixed crash that occurred in the Japanese Locale.  Thanks to
          Erik Anderson and Bill Huang for reporting this bug, and to
          T. Aihana for fixing the Japanese translation file. (#78244)

        * Fixed crash that occurred when parsing empty/corrupt messages.
          Thanks to Jorge Salinas for reporting this bug. (#78287)

        * Fixed crash that occurred when the user tried to create a new
          identity that was incomplete.  Thanks to Jef E. for reporting
          this bug. (#77582)

        * Increased the default maximum number of connections for new
          servers to two, since we also default to reserving one connection
          for reading messages. Thanks to William Peterson for reporting
          this. (#76867)

        * Fixed bug that could incorrectly cause articles to become
          marked as read.  Thanks to Jiri Kubicek for some great sleuthing
          to find and patch this bug. (#77878)

        * Fixed bug that was too strict on what Message-IDs to retain
          in a References: header when posting a follow-up.  Thanks to
          Colin Leroy and Jim Henderson for reporting this bug. 

        * Pan now uses GMT rather than local time when generating the
          timestamp for unique message ids of new posts.  When using
          local time and daylight savins ends, a date could show up
          twice.  Thanks to Mirko Liss for suggesting this. (#77528)

        * Fixed 0.11.1 branefart that moved widget focus to the thread pane,
          rather than the text pane, whenever a message was read via
          the 'N' key.  Thanks to Florian Schmidt for reporting this bug.

        * Fixed some potential news server connection problems.
          Thanks to Sven Neuhaus for reporting these issues. (#73179)

        * Fixed gui lockup bug that occured when changing groups while
          the log viewer was open.  (#77909)

        * The Filter Text in the Edit Rule dialog box now has a scrollbar
          when needed. Thanks to  Himanshu J. Gohel for reporting this. 
          (#62909)


Pan 0.11.90 (April 5, 2002)

    NEW FEATURES

        * Better Internationalization: Pan can now finally display messages
          and headers in their appropriate charsets and fonts, as well as
          post messages in user-specified charsets.

        * Much Smaller Library Requirements: Pan 0.11.90 no longer requires
          Gnome.  This is to make Pan easier to install on smaller systems,
          and to leave the door open for a Windows port of 0.12.0.  We love
          Gnome and will be adding _optional_ Gnome features back soon.

        * New Filter UI: The article filter GUI has been changed so that it
          can all be driven from keyboard accelerators, so that several
          changes can be made at once for a single refiltering, and so that
          subject/author filters can be kept as the user changes from one
          group to another.

        * Better Display of Images: The awkwardness of combining text and
          inline images in 0.12.x has been cleaned up thanks to
          improvements in gtk2.


Pan 0.11.2.91 (Mar 29 2002)

    NEW FEATURES

        * Added the ability to specify which characters are recognized
          as quote prefix characters, so nonconformists not using '>' to
          quote text will still have their articles colored right in Pan. :)
          Thanks to Colin Leroy for contributing this code.  (#68159, 75916)

        * Added "Go to previous article" navigation button.  Thanks to
          Colin Leroy for contributing this patch.  (#75716)

    UPDATES

        * Add a new preference option, dictating whether failed tasks should
          be removed from the Task Manager. Unconditionally clearing the queue
          didn't go down too well with some of the leechers. ;-) Thanks to 
          Aric S. Campling <denim@hosers.org> for suggesting this.  (#75186)

        * Added support for mime articles which explicitly specify a
          Content-Transfer-Encoding of x-uuencode.  Thanks to Sam Solon and
          Jeff Stedfast for this code. (#74798)

        * Make sure that the default window size is large enough that a
          full line, up to the default number of wrap characters and with
          the default font, will fit without scrolling.  Thanks to John Mellor
          for suggesting this obvious-in-hindsight improvement. :) (#76062)

    BUG FIXES

        * Fixed a memory corruption bug in decoding yEnc messages.
          Thanks to Bill Cattell for reporting this bug. (#74946)

        * Fixed a crash that occurred when Pan couldn't connect to the news 
          server. Thanks to Aurelien Gouny for reporting this bug. (#70858)

        * Fixed a bug in Follow-Up that caused some new text typed in by
          the user to be colored in the quoted-text color rather than the
          normal text color.  Thanks to Michael McIntyre for reporting
          this bug. (#75993)

        * If a yenc block ends without a "=yend", or a uu block ends
          without an "end", treat the block as plaintext instead of encoded
          data.  Looks like some M$ bashers are starting their posts with
          "begin 666" to tickle a similar bug in OE.  :)
          Thanks to Jason Rumney and mr_p for reporting this bug. (#76358)



Pan 0.11.2.90 (Mar 15 2002)

    NEW FEATURES

        * Added support for decoding yenc-encoded attachments!  Thanks to
          Gabi Davar and Jeff Stedfast for contributing code and debugging
          to this effort. (#70368, 71330)

    UPDATES

        * The 'Download Articles' dialog now switches the articlelist to 
          the group when the headers have been downloaded. Since this dialog 
          is mostly used to sample a (potentially large) group, this seems 
          the more intuitive approach. Thanks to Himanshu J. Gohel for 
          suggesting this. (#66510)

        * Added Message-ID to Find Article's search criteria. Thanks to 
          Pascal Valois for suggesting this. (#68332)

        * If an article no longer exists on the news server, tasks to read
          that article are now automatically removed from the Task Manager.
          Thanks to John Mellor for reporting this. (#71992)

    BUG FIXES

        * Fixed bug that caused multi-part binary posts with variable-length
          segment number to be seen as incomplete. Thanks to Craig Orsinger
          for reporting this. (#71647)

        * Fixed 0.11.2 bug where Pan could crash when a confirmation dialog
          was needed to confirm sending a message with issues. (#71440)

        * Fixed 0.11.2 bug that could cause the article count not to be reset
          to zero when the group was empties. Thanks to Craig Orgsinger for
          reporting this. (#71645)

        * Fixed long-standing bug that made it impossible to cancel an unread 
          message. Thanks to Kerstin Rohlfs for leading me to this bug. (#64287)

        * Fixed UI bug in the message composer that caused Ctrl-space to send 
          the message. (#71352)

        * When editing an existing server profile, the server name is now 
          read-only.  Thanks to Ned Boddy for reporting this bug.  (#72432)

        * Better handling for the case where the 'Followup-To:' header
          contains an email address. Thanks to Mike Brodbelt for suggesting
          this.  (#72608)

        * Fixed UI bug in the Preferences that caused the <OK> button not
          to activate when directly various fields. Thanks to John Mellor
          for reporting this. (#73180)

        * The Profile Editor now rejects double-quotes in the author's real 
          name. Thanks to Martin Bruchanov for reporting this.
          (#68770)

        * Fixed a crash that occurred when sending mail from a system that 
          didn't have a resolvable hostname. Thanks to T'aZ for reporting 
          this bug. (#74129)

        * Fixed various memory leaks.


Pan 0.11.2 (Feb 11, 2002)

    BUG FIXES

        * Fixed bug that incorrectly parsed some command-line arguments
          passed to the external editor when composing messages.  This
          caused some external editors to not communicate with Pan properly.

        * Fixed another crash that occurred when emptying groups.  Thanks to
          Carl Hudkins and Alex Evonosky for reporting this bug. (#70457)

        * Fixed small 0.11.1 memory leak.

        * Fixed long-standing bug that caused "Show All Headers" to not
          display mime headers.


Pan 0.11.1.94 (Feb 1, 2002)

    BUG FIXES

        * Fixed 0.10.0.93 bug that caused a GUI lockup under arcane 
          circumstances when reading articles.

        * Fixed 0.11.1.92 bug that caused Pan to crash when emptying
          a group which had an article displayed in the text pane.
          Thanks to Jean Ribiere for reporting this bug.

        * Fixed 0.11.1.92 bug that caused a GUI lockup under other
          arcane circumstances.  Thanks to Torbjorn Olofsson for
          reporting this bug.

        * Fixed 0.11.1.92 bug that caused the first article read to
          not be displayed if the user started up Pan in zoom mode.
          Thanks to Stefan Van Theemsche and Douglas Bollinger
          for reporting this bug.

        * Fixed several other 0.11.1.93 deadlock issues.  Thanks to
          Gabi Davar for reporting some of these.

        * Now handles '~' in the TMPDIR environmental variable.
          Thanks to Jukka Salmi for suggesting this change.


Pan 0.11.1.93 (Jan 29, 2002)

    BUG FIXES

        * Fixed 0.11.1.92 bug that caused cached articles to not be
          marked as read when the user read them.  Thanks to
          Tivo Leedjrv and Adrian von Bidder for reporting this bug.

        * Fixed 0.11.1.92 bug that made the "Edit Filter" dialog too
          wide to fit even on large screens.

        * Fixed 0.10.0 bug where new articles that automatically get
          deleted by user-defined rules could still appear in the
          article pane.

        * Fixed a long-standing NNTP server connection corruption bug.

        * Fixed a couple of long-standing GUI thread bugs.



Pan 0.11.1.92 (Jan 21, 2002)

    NEW FEATURES
 
        * Added the option to have all threads expanded by default.
          Thanks to Bas Mevissen for submitting a patch for this
          feature.

    UPDATES

        * The "Directory" field in the "Save As" dialog now handles
          ~ correctly as shorthand for the users' home directory.

    BUG FIXES

        * Fixed 0.11.1.91 gui lockup bug.  Thanks to Douglas Bollinger
          for reporting this bug.

        * Fixed 0.11.1.90 bug that caused Pan to crash sometimes when
          reading or decoding articles.

        * Fixed 0.11.1.90 bug that caused pan to crash on a SIGPIPE
          signal when a news server connection closed unexpectedly.
          Thanks to Alen Williams for reporting this bug.

        * Fixed 0.11.1.90 bug that caused Pan to not authenticate
          properly on at least one older NNTP server.  Thanks to
          Avtar Marwaha for reporting this bug and to Marc Prud'hommeaux
          for providing this patch.

        * Fixed 0.10.0.93 bug that caused crossposts to not be marked
          as read when a single article or entire group is marked as
          read.

        * Fixed 0.10.0.93 memory leak that didn't free all article
          information on duplicate or user-deleted articles.

        * Fixed long-standing bug that required two left-clicks,
          rather than the typical one left-click, to pop down the
          context menu in the article pane.  Thanks to Devin Carraway
          for reporting this bug. (#69170)


Pan 0.11.1.91 (Jan 15, 2002)

    UPDATES

        * Slightly faster download and display of articles.

    BUG FIXES

        * Fixed bug that caused Pan to crash when reading an article.

        * Fixed bug that improperly hid new replies that were in
          collapsed threads.  The top-level articles should have been
          showed in boldface to indicate that the thread had new replies.

        * Fix the "group->_article == NULL" assertion failure when
          loading a group.

        * Fixed gmime build errors that occurred on platforms that need
          to include alloca.h.  Thanks to Alan Young for reporting this.

        * Fixed bug that caused the first group to be loaded during a Pan
          session to not be filtered properly.  Thanks to Douglas Bollinger,
          Dan Hensley, and others for reporting this.


Pan 0.11.1.90 (Jan 7, 2002)

    NEW FEATURES

        * The thread pane now looks many GUI mail clients in that it
          boldfaces articles with new replies and greys out read articles
          to show which articles are new, unread, and old.  Also, when a
          thread is collapsed, the subject column will tell how many new
          replies are in the collapsed thread.  Thanks to Jed Baer,
          Douglas Bollinger, and Andreas Ollinger for working these ideas
          through to consensus on the pan-users mailing list.

        * Added support for Microsoft Secure Password Authentication ("SPA")
          so that Pan will work with Microsoft NNTP servers.  Thanks to the
          Samba team for writing the SPA authentication code and to 
          Marc Prud'hommeaux for plugging it into Pan!

        * Pan now has a Greek translation!
          Thanks to Simos Xenitellis for contributing this.

        * Added the ability to specify, on a per-Identity basis, the
          domain name to be used in the Message-Id header in new posts.
          This can be used to point to your proper domain or just
          for privacy's sake.

        * Added new regression tests to the testing module.

    UPDATES

        * The Preferences Dialog now fits on an 800x600 screen
          and has other UI improvements.

        * Better error reporting on disk I/O errors
          (full disk, permissions errors, etc.)

        * About two dozen small speed tweaks.

        * We now support POSIX extended regular expression syntax,
          giving us support for operators like '?'.  Thanks to
          Chris Petersen for suggesting this.

    BUG FIXES

        * Fixed huge 0.11.1 memory leak.

        * Fixed bug that caused some attachments to be decoded incorrectly.
          Thanks to Dave at dalrun for reporting this bug.

        * Fixed crash that seemed to happen for no reason when reading new
          articles.

        * Fixed thread safety bug in the article cache.

        * Fixed thread safety bug in the Task Manager backend.  Thanks
          very much to Christian Suder for reporting this bug.

        * Fixed crash that could sometimes occur when cancelling tasks or
          going offline from the Task Manager.

        * Fixed crash when overriding the system defaults for article 
          foreground and background colors. This crash seems to be related
          to specific GTK themes. Thanks to T'Az and Krishna Naik for reporting
          this problem.

        * Fixed crash that occurred when incomplete identities were entered
          in the Identity Editor.  Incomplete identities can no longer be
          entered.  Thanks to nhodge1 for reporting this bug. (#67311)

        * Fixed bug that caused Pan to crash when an invalid rules xml file
          was read.  Thanks to Roger Gregory for reporting this bug.  (#67657)

        * Double-clicking a URL would open up to three browsers if the
          browser wasn't already running. Note: URLs only need a single click.
          Thanks to Mart van de Wege for reporting this.  (#68009)

        * Fixed bug that accidentally downloaded a couple of old articles
          in the "Get New Headers" command.

        * If Followup-To is set to 'poster', only send the article as an
          email.  Thanks to Christian Lohmaier for reporting this bug.

        * Fixed mistake in 0.11.1 that used "supercede" instead of "supersede"
          when superseding articles.

        * Fixed bug in importing grouplists from Pan version 0.9.6 and older.
          Thanks to Brandon McCombs for reporting this bug.



Pan 0.11.1 (Dec 5, 2001)

    NEW FEATURES

        * The left/right arrow keys now collapse/expand the currently-selected
          threads.  Thanks to Chris Petersen for suggesting this.

        * Added 'Newsreader' to the 'Headers to Show' selection in the 
          preferences. Thanks to Jim22 for suggesting this.

    UPDATES

        * New Simplified Chinese translation by Zipeco <zipeco@btamail.net.cn>.

        * New Portuguese translation by Duarte Loreto <happyguy_pt@hotmail.com>.

    BUG FIXES

        * Fixed "supercede article" bug.

        * Small task manager bug fixes.


Pan 0.11.0.92 (Nov 27 2001)

    UPDATES

        * If some bozo includes a windows pathname in the filename of an
          attachment, strip out that pathname.

        * Now also saving the group's 'Which Articles to Show' filter setting.
          Thanks to Uli Wachowitz for suggesting this feature.

        * Slightly faster downloading of article headers.

    BUG FIXES

        * Fixed bug that caused Pan to crash on startup if the newsrc file
          exists, but Pan is unable to read this (e.g. permissions). Thanks 
          to Joris Lambrecht for reporting this bug.

        * Fixed posting bug.

        * Fixed bug that caused the CPU to peg at 100% when the user
          hit the "empty group" button.

        * Fixed bug that caused filtering on complete/incomplete multiparts to
          be inaccurate.

        * Fixed bug that caused non-visible filters to reappear on the filter
          menu when Pan was restarted. Thanks to Douglas Bollinger for reporting
          this bug.

        * Mac OS X build fixes.  Thanks to Max Horn for reporting these and
          providing patches.


Pan 0.11.0.91 (Nov 19, 2001)

    UPDATES

        * Better error-checking, handling, and writing-to-the-Pan-log
          when the group header cache can't be saved.

        * Better data recovery in the case of a Pan or system crash.

    BUG FIXES

        * Significant memory leak when saving articles fixed.  Thanks to Rick
          for noticing this and tracking own the problem.

        * Fixed bug that caused article bodies to be saved improperly when
          the user specified the filename from the save dialog.  Thanks to
          Andreas Ollinger for reporting this bug and to Joseph Turian for
          providing a patch.

        * Fixed bug that caused tasks to get stuck in the task manager.
          Thanks to Alex V Flinsch, Alan Young and Gabi Davar for reporting
          this bug.

        * Fixed awful bug that caused the server header cache directory to
          not be created, which caused new users to not be able to read
          articles in 0.11.0.90.  D'oh!

        * Fixed 0.11.0 bug that, when an empty group was activated, Pan would
          go to the server twice for new headers instead of once.  In addition
          to pointless load, if you were really unlucky there would be one or
          two new articles in the second load, marking the ones from the first
          run and leaving you scratching your head "how did I just download a
          batch of old articles from a new group?" :)

Pan 0.11.0.90 (Nov 14, 2001)

    NEW FEATURES

        * Added new builtin filter: "Articles/Threads posted by Me"

        * When multiple articles are selected and the enter key is pressed,
          in addition to downloading and displaying the first article, the
          remaining selected articles are now also downloaded.  Thanks to
          Cory Dodt for suggesting this.

        * Added "Filter by Message-ID" to the header pane toolbar filter.

        * Better at guessing a default news server for news users.

    UPDATES

        * Better data recovery in the case of a Pan or system crash.

        * Slightly faster threading of articles.

    BUG FIXES

        * Fixed crash that occurred when repeatedly loading the same group.

        * Better conformance to RFC977 2.4.1.  This bug caused some binary
          attachments to be decoded improperly in 0.11.0.  Thanks to
          Thomas K. Gamble for reporting

        * If saving attachments to disk because a directory isn't writable
          then give a warning in the Pan log and fail the task so that the
          user can fix the problem.  Thanks to Sebastien Leclair for
          reporting this bug.

        * Build fixes for the Compaq C compiler on Linux Alpha.  Thanks to
          Alan Young for reporting these problems and submitting a patch.

        * The Article cache was growing past the user-defined limit in
          0.11.0.  Thanks to Muralito and Alan Young for reporting this bug.

        * Fixed rare crash-on-exit bug that occurred when one thread was
          shutting down the Pan app log while another thread was trying to
          log a shutdown message. :)  Thanks to Jed Baer for reporting this
          bug.

        * Now handles watching/ignoring a thread even if the article
          selected when 'watch' button is pressed has a broken References:
          header.  (Shame on you Forte Agent 1.8! :)  Thanks to David Watson
          for reporting this bug.

        * Fixed rare gui lockup bug when loading new articles for the group
          that's currently loaded.

        * "Flag Thread" and "Unflag Thread" didn't flag the entire thread
          as they should have.  Thanks to Peter Borgmann for reporting this
          bug.

        * Fixed bug that caused groups to be threaded more often than
          necessary.

        * Fixed bug that didn't remember the "Thread/Unthread Header Pane"
          setting between sessions and required the button to be pressed
          twice before it would work.  Thanks to Jed Baer for reporting
          this bug.

        * Fixed small compile problem reported by Gabi Davar and
          Francesco Lamonica.

        * Fixed bug that incorrectly saved the pane dimensions for the
          "three vertically stacked panes" layout mode.  Thanks to
          Douglas Bollinger and Erik W. Hanson for reporting this bug.

        * Memory leaks fixed.


Pan 0.11.0 (November 2, 2001)

    NEW FEATURES

        * Added Estonian translation by Tivo Leedjrv.

    UPDATES

        * Slightly faster downloading of article headers and bodies.

    BUG FIXES

        * Fixed bug in encoding the From: header in new posts.  Thanks to
          Julien Plissonneau Duquene for reporting this bug.

        * Build fixes for FreeBSD.  Thanks to Christian Kuhtz for reporting
          these problems and suggesting fixes.

        * Fixed 0.10.0.91 bug that caused failed tasks to remain queued.
          Thanks to Frederik Vanrenterghem, Jed S. Baer and Alan Young for 
          reporting this.

        * Fixed 0.10.0.93 bug that caused Pan to not clear the header pane
          toolbar's search field when a new group is loaded.
          
        * Fixed 0.10.0.93 bug that caused Pan to not remember which sort
          column to use when reloading a group.   Thanks to Alen Williams for
          reporting this bug.

        * Fixed 0.10.0.93 bug that didn't show new headers properly when
          they were downloaded into the current group. Thanks to 
          Himanshu J. Gohel for reporting this bug. #62913

        * "Get New Headers in Selected/Subscribed Groups" was queueing the
          groups tasks in reverse order. #62969

        * Fixed bug in the rot13 code that truncated lines when they
          encountered characters like , , or .  Thanks to Nightshade
          for reporting this bug.

        * Ensure that Control+Return in the compose window is a shortcut
          for "Send Now" as it is in Agent.  Thanks to Himanshu Gohel for
          reporting this bug. #62569