aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
blob: 56d9cee0e82783988060036bdfece5da1ae7022f (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
Evolution 2.0.3, 2004-12-06
----------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

 * Addressbook

   #67656 - almost the same email address are considrered identical (Siva)
   #69079 - Data repeated after save with bad date format (Siva)
   #66854 - Some strings are missed to translation (Rodney)

 * Calendar
    
   #47529 - Date in reminder window appears in UTF-8 in non-UTF-8 locale (Rodney)
   #68707 - Events ending at 12:00 AM show as ending at 12:00 pm (JP)
   #67403 - wrong alarm time displayed (Rodrigo)
   #68077 - appointment dialog re-size (Rodrigo)

 * Mail

   #69533 - Unable to subscribe to the alt hierarchy (Michael)
   #69776 - Signed Mail with attachments displays everything with multipart/boundaries stuff (Michael)
   #69615 - delete certificate after viewing smime message (Michael)
   #69109 - EHLO or HELO with ip addresses does not conform rfc 821  (Michael)
   #69982 - During Newsgroup list refresh, it crashes (Michael) 
   #69446 - Mail shown as attachment if some headers are upper case (S. Caglar Onur) 
   #68556 - NNTP with SSL won't work, even with stunnel (Michael) 
   #69145 - toplevel message/rfc822 parts are broken for IMAP (Michael)
   #69241 - base64 attachement holding PGP block (Jeff)
   #67895 - nntp support not asking for password (Michael)
   #67898 - Use of symbolic port-names is not guaranteed to work everywhere (Michael)
   #69851 - remember password check doesn't stick (Michael)
   #69623 - Moving a message from an IMAP INBOX to an IMAP folder caused crash (Radek)
   #69339 - postscript and some other attachments not visable (Michael)
   #69579 - vFolders#UNMATCHED generates errors (Michael)
   #68958 - current message forgotten in vfolders (Michael)
   #68974 - Wizard doesn't store smtp auth settings (Michael)
   #67496 - html email not rendered in preview pane (Michael)
   #67014 - Checking supported auth types doesn't work with new SSL certificate (Michael)
   #68006 - Evo crashed after viewing previously-sent email and copying URL from it (Michael)
   #68787 - Crash when migrating 1.4 data to 2.0.2 (Michael)
   #67622 - SMTP auth usernames containing % character fail (Jeff)

Other bugs

 * Mail

    - fix pthread_key_delete args (Julio M. Merino Vidal)

 * Calendar

    - leak fixes (Chen)
    - sensitize menu items in list view properly (JP)
    - redraw display when 24hr time setting changes (JP)    

Updated translations:

  - nl (Vincent van Adrighem)
  - pt (Duarte Loreto)
  - hu (Laszlo Dvornik)
  - ca (Jordi Mallach)
  - fr (Jeremie Knuesel, Sebastien Bacher, Christophe Merlet)
  - sv (Christian Rose)
  - de (Hendrik Brandt)
  - id (Mohammad DAMT)
  - es (Francisco Javier F. Serrador)
  - da (Martin Willemoes Hansen)
  - ko (Changwoo Ryu)
  - zh_CN (Funda Wang)
  - ms (Hasbullah Bin Pit)
  - hu (Laszlo Dvornik)
  - cs (Miloslav Trmac)
  - ru (Leonid Kanter)
  - bg (Vladimir Petkov)
  - sq (Laurent Dhima)
  - en_GB (David Lodge)
  - pl (Artur Flinta)
  - sr (Danilo Segan)
  - sr@Latn (Danilo Segan)
  - en_CA (Adam Weinberger)
  - pt_BR (Raphael Higino)
  - nn (Åsmund Skjæveland)

Evolution 2.0.2, 2004-10-11
----------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

 * Addressbook

   #66520 - Crash deleting addressbooks (Michael)
   #66369 - VCard import requires blank lines between contacts (Hans)
   #65537 - Updating Contacts Causes Crash (Hans)

 * Calendar
    
   #65932 - Crash when accessing the details of an appointment notification (Rodrigo)
   #64683 - meeting invite expands to larger than workspace (Rodrigo and JP)
   #66736 - crash clicking Search Clear button twice (Michael)
   #61766 - select personal calendar/tasks by default when migrating (JP)
   #65599 - 'Evolution 1.5' crash in 'Free/Busy' editor (Rodrigo)
   #62053 - select GroupWise calendar by default (Siva)
   #66164 - popup date edit drop down in correct place (JP)
   #45951 - Scroll properly in task description (Rodrigo)

 * Mail

   #67170 - Unable to subscribe to the alt hierarchy (Michael)
   #67028 - 2.0.1 compilation fails on camel-service.c: In function `camel_getaddrinfo' (Jeff)
   #67257 - evolution busy waits looking up hostname if network down (Michael)
   #66509 - Evolution Crashes when deleteing a news group (Michael)
   #65828 - Fix typo in error message (Jeff)
   #63881 - "Cannot copy or move messages into a Virtual Folder" when
         dragging from UNMATCHED vfolder into real folder (Ed Catmur)
   #63521 - stale / bogus pop cache file (Michael)
   #66991 - crash creating folders (Michael)
   #66706 - Evolution Crashes while refreshing Folder Subscriptions (Michael)
   #67408 - Seg Fault on exit (Michael)
   #67211 - Evolution crashes when getting summary from folder (Michael)
   #66703 - S/MIME signing fails randomly (Jeff)

 * Shell

   #61285 - use better query for config pages (Michael)
   #66216 - don't show translator-credits directly in about box (Malcolm Treddinnick)

Other bugs

 * Address Book

    - Crash when exiting (Hans)

 * Mail

    - Provide error dialogs if host/name lookups fail (Jeff)
    - Improve NNTP locking (Michael)
    - Work with complete MBox hierarchy (Michael)
    - Forward as inline sends attachments (Michael)
    - Fix possible migration bug from 1.2 (Dave Malcolm)
    
  * Other

    - Updated documentation (Rodney and Novell Doc Team)
    - Don't dereference NULL nickname or emailAddr on certificate (Michael)

Updated translations:

  - el (ta panta rei, Nikos Charonitakis)
  - ja (Takeshi AIHANA)
  - hu (Laszlo Dvornik)
  - pt (Duarte Loreto)
  - sq (Laurent Dhima)
  - es (Francisco Javier F. Serrador)
  - nl (Vincent van Adrighem, Michel Klijmij)
  - en_CA (Adam Weinberger)
  - zh_CN (Funda Wang)
  - cs (Miloslav Trmac)
  - pl (GNOME PL Team)
  - pt_BR (Raphael Higino)
  - sr (Danilo Segan)
  - sr@Latn (Danilo Segan)
  - en_GB (David Lodge)
  - ca (Xavier Conde Rueda)
  - ko (Changwoo Ryu)
  - ro (Mugurel Tudor)
  - fr (Christophe Merlet)
  - nb (Kjartan Maraas)
  - no (Kjartan Maraas)
  - da (Martin Willemoes Hansen)
  - ru (Leonid Kanter)
  - fa (Meelad Zakaria)

Evolution 2.0.1, 2004-09-24
----------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

 * Addressbook

   #61070 - Fix improper grammar (hannah rebekah & fazlu huq)
   #59725 - Conduit syncing to wrong desktop record (JP)
   #63191 - Fix contact list editor title (JP)
   #64080 - addressbook gui component needs to be linked with libcamel (Michael)
   #64024 - Lower pane doesn't go away when you uncheck "Preview Pane" in Contacts (Siva)
   #64011 - Remove C99-ism (Vicent Noel)
   #62856 - in --offline mode, still get prompted for gw addressbook password, work around (Michael)

 * Calendar

   #66344 - Evolution crashes added start time column to tasks (JP)
   #63513 - G/W appointment acceptance fails ('invalid object') (Chen)
   #60904 - Show all appointments when work week longer than 5 days (JP)
   #66158 - Completion status is not displayed immediately (JP)
   #59194 - Crash editing location field in event list (JP)
   #65682 - get error deleting appointments (Chen)
   #55172 - sync montly recurrences properly (JP)
   #62374 - alarms no function if run over night (Rodrigo)
   #62728 - week day heading in month view does not update after changing week start day in settings (JP)
   #62392 - Crash on close alarm notification (Rodrigo)

 * Mail

   #65329 - translate standar folder names (Michael)
   #65058 - Specific mails don't display picture but picture data (Michael)
   #64972 - signature auto-selection in composer with Maildir account is broken (Michael)
   #65448 - Opening a mail does not mark it read (Jeff)
   #64974 - Allow selecting of file or folder for maildir and mh accounts (Jeff)
   #65703 - Display reply to all icon (JP)
   #59717 - crash checking supported authentication types (Michael)
   #47821 - try all host names available when connecting (Michael)
   #66199 - Image loading fails with authenticated proxy (Michael)
   #64023 - Forget NNTP password if it was wrong (Michael)
   #64092 - Ambiguity in nomenclature of GW Tasks in Evolution (Siva)

 * Shell

   #61285 - use better query for config pages (Michael)
   #66216 - don't show translator-credits directly in about box (Malcolm Treddinnick)

Other bugs

  * Addressbook

    - point to correct documentation file (Rodney)
    - check for LABEL supported (Siva)

  * Calendar

    - Don't allow deletion of system calendar or tasks (JP)
    - Don't allow a task to be changed to an assigned task if the backend doesn't support it (Chen)

  * Mail

    - Fix typo setting the root node in folder tree (Dave Malcolm)
    - Handle 0 length token read for summary (Michael)
    - Make SSL connections async and cancellable (Michael)

Updated translations:
  - fr (Christophe Merlet, Craig Jeffares)
  - pl (Artur Flinta)
  - sq (Laurent Dhima)
  - cs (Miloslav Trmac)
  - es (Francisco Javier F. Serrador)
  - nl (Vincent van Adrighem)
  - zh_CN (Funda Wang)
  - en_CA (Adam Weinberger)
  - it (Craig Jeffares)
  - zh_TW (Craig Jeffares)
  - en_GB (Gareth Owen)
  - fa (Roozbeh Pournader)
  - el (Nikos Charonitakis)
  - ja (Takeshi AIHANA)
  - pt_BR (Raphael Higino)
  - da (Martin Willemoes Hansen)
  - ko (Changwoo Ryu)
  - nn (Åsmund Skjæveland)
  - sr (Danilo Segan)
  - hu (Laszlo Dvornik)
  - bs Danilo Segan
  - id (Mohammad DAMT)
  - nb (Sigurd Gartmann)
  - no (Sigurd Gartmann)
  - ar (Arafat Medini))

Evolution 2.0.0, 2004-09-13
----------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

 * Addressbook

   #59582 - Contact incompletely updated to LDAP store, address information lost/not editable (Siva)
   #64084 - addressbook gui component needs to be linked with libcamel (Michael)

 * Calendar

   #65454 - Evolution crashes while opening newly received e-mail (JP)
   #62392 - Crash on close alarm notification (Rodrigo)
   #64800 - broken timezone selector (Rodney)

 * Mail

   #60515 - signature setting is not preserved changing "Autogenerated" to "None"  (Michael)
   #63377 - Crash when replying to a (specific) message  (Jeff)
   #62665 - Wrong Folder is deleted (Jeff)
   #64377 - crash creating new folder (Michael)
   #63456 - crash replying to E-mail (Michael)

Other bugs

  * Addressbook

    - Confirmation dialog was showing up on contact-editor close,
      even if there were no changes (Hans Petter)

  * Calendar

    - 64 bit build fix (Rodrigo)
    
  * Misc
    
    - new documentation (Rodney)

Updated translations:

  - ar (Arafat Medini)
  - bn (Runa Bhattacharjee)
  - cs (Miloslav Trmac)
  - cy (Dafydd Harries, Telsa Gwynne)
  - da (Martin Willemoes Hansen)
  - de (Hendrik Richter)
  - el (Nikos Charonitakis)
  - en_CA (Adam Weinberger)
  - en_GB (David Lodge)
  - es (Francisco Javier F. Serrador)
  - et (Priit Laes)
  - fi (Ilkka Tuohela)
  - hi (Rajesh Ranjan)
  - hu (Laszlo Dvornik)
  - id (Mohammad DAMT)
  - ja (Takeshi AIHANA)
  - ko (Changwoo Ryu)
  - ms (Hasbullah Bin Pit)
  - nb (Sigurd Gartmann)
  - nl (Vincent van Adrighem)
  - nn (Åsmund Skjæveland)
  - no (Kjartan Maraas)
  - pl (Artur Flinta)
  - pt (Duarte Loreto)
  - pt_BR (Raphael Higino)
  - ro (Mugurel Tudor)
  - ru (Leonid Kanter)
  - sq (Laurent Dhima)
  - sr (Danilo Segan)
  - sv (Christian Rose)
  - tr (Baris Cicek)
  - uk (Maxim Dziumanenko)
  - zh_CN (Funda Wang)
  - zh_TW (Abel Cheung)

Evolution 1.5.94, 2004-08-27
----------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

 * Addressbook

   #61833 - Blank names in name selector (Hans Petter)
   #62715 - Free-form addresses not loading in contact editor (Hans Petter)

 * Calendar

   #62869 - Crash: attempt to access GW tasks from evolution (Siva)
   #62706 - Changing time-zone doesn't refresh calendar correctly (JP)
   #62063 - Meeting description does not wrap (Jeff)
   #58824 - Stray message or failing to open tasks? (Rodrigo)
   #62911 - ITIP control blocks mailer opening calendar (JP)
   #54101 - In itip control had "Birthdays & Anniversaries" as calendar (JP)

 * Mail

   #63189 - Deleting IMAP folders is too aggressive  (Michael)
   #63504 - Don't send IMAP commands to a disconnected socket  (Jeff)
   #63177 - Can't drag folder to "On This Computer"  (Jeff)
   #62812 - Crash when parent of search window is closed  (Jeff)
   #62963 - C99-isms in smime/gui/cert-trust-dialog.c  (Michael)

Other bugs

  * Addressbook

    - Confirmation dialog was showing up on contact-editor close,
      even if there were no changes (Hans Petter)

  * Calendar

    - Fixed problems in alarm daemon (JP, Siva, Rodrigo)
    - Clean up of stray status messages for tasks (Chen)
    - Don't remove GtkDialog's separator if using GTK >= 2.4.0 (Frederic)
    - Fix copy/move problems when pilot syncing (JP)
    - Don't mark menu accels for translation (Christian)

  * Mail

    - Crash in em-utils on GtkFileChooser with no name selected (Hans Petter)

  * Misc

    - avoid warnings on dialogs with GTK 2.4 (Frederic)
    - upgrade egg tray icon (Rodrigo)
    - fix memory corruption when pilot syncing tasks/events (JP)
    

Evolution 1.4.1, 2003-06-25
---------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook

    #41826 - Focus the first minicard when focusing the view for the
             first time (gilbert.fang@sun.com)
    #43841 - Contact editor will not save Web Page address (Toshok)
    #44477 - Make sure the master category list is upgraded (Toshok)

  * Calendar

    #41582 - Display incorrect after switching between week and day
             view (Rodrigo)
    #43585 - Ugly tasks printout (Hans Petter)
    #45273 - Tab through events in day view (Bolian Yin)
    #45275 - Shift+F10 to activate Popup menu in ToDo List (Bolian Yin)
    #45423 - Provide shortcus for "Go to today" and "Go to date" (Bolian Yin)

  * Mail

    #22542 - Creating a folder in the vFolder store fails with a
             meaningless message (Michael)
    #31745 - Cannot view mails under '#mh' namespace.  Temporary
             workaround, strip #'s (Michael)
    #33593 - Message remains displayed after last message removed from
             list (Michael)
    #40788 - Broken POP3 server causing evolution to hang/crash (Jeff)
    #42630 - collapsed thread always shows as unread (Jeff)
    #43917 - ECharsetPicker doesn't save user-specified charset strings
             properly (Jeff)
    #43972 - Invert selection doesn't work (Jeff)
    #43974 - Cannot retrieve "Local Delivery" mail (Michael)
    #44121 - Invalid multipart/signed message showing empty (Michael)
    #44139 - Composer spacing is not HIG compliant (Jeff)
    #44322 - Evolution crash with weird IMAP foldername (Michael)
    #44344 - Dont use quoted-printable encoding on anything but text/*
             parts, interoperation with Lookout and others (Jeff)
    #44457 - Crash viewing video content as inline-text (Jeff)
    #44519 - Popup message view redraws when new mail arrives (Michael)
    #44609 - HIG issue with vFolder properties editor (Michael)
    #44991 - Cannot send mail in GB-2312 (Jeff)
    #45082 - GB18030 BIG5HKSCS and EUC-TW charsets not supported in
             evolution mail (suresh.chandrasekharan@sun.com)
    #45063 - Message display refreshes when new mail arrives,
             introducted by #33593 (Michael)
    #45386 - Warnings when sending mail (Michael)
    #45368 - Crash when closing the folder browser

  * Summary

    #44111 - Crash on exit (Ettore)
    #44798 - Crash when closing print preview dialog (Ettore)

  * All

    #42691 - Build, make clean doesn't rebuild bonobo-activation
             .server files (Michael)
    #44717 - Tarball cointains generated files (Frederic Crozat)

Other bugs

  * Calendar

    - Fix invalid shared use of list of calendar factories (Rodrigo)
    - Make the calendar editor window title reflect the summary contents (Rodrigo)

  * Mail

    - Fix bug in indexer string normalisation (they weren't) (Larry)
    - Major memory leak in message-threading (Larry)
    - Only try to snoop a content-type if its application/octet-stream
      when displaying mail parts (Jeff)
    - Major memory leak in filter-file based filters (Jeff)
    - Try to make asynchronous dns lookup more asynchronously
      cancellable (Michael)
    - Fix a degenerate algorithm case in vFolder shutdown which could
      cause excessive exit cpu usage (Michael)

  * Shell

    - Wrong version number used for configuration upgrade (Michael)

  * All

    - Lots of miscellaneous memory leaks

Updated translations:

  - cs (Miloslav Trmac, Stanislav Brabec)
  - el (Kostas Papadimas)
  - es (Francisco Javier F. Serrador)
  - hu (Andras Timar)
  - it (Marco Ciampa)
  - ko (Kan Jeong-Hee)
  - mk (Ivan Stojmirov)
  - nl (Vincent van Adrighem)
  - pt_BR (Gustavo Maciel Dias Vieira)
  - sr, sr@Latn (prevod.org)
  - sv (Christian Rose)
  - tr (Gorkem Cetin)
  - zh_CN (Wang Li, Funda Wang)


Evolution 1.4, 2003-06-02
-------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Calendar
  
    #43388 - Problems importing appointments  (Rodrigo)
    #43455 - Crash on exit  (Rodrigo)
    #43763 - 2 right mouse menus appear in Week & Month views  (Rodrigo)
    #43775 - Crash under Chinese locale  (JP)

  * Mail

    #42854 - Copying files from one IMAP folder to another makes
             multiple copies of file  (Jeff)
    #43862 - First run imap account won't load folders until account
             is disabled and re-enabled  (Jeff, Michael)
    #42691 - Server files not regenerated after distclean  (Michael)
    #43805 - Evolution locked while editing reply to an mail  (Jeff)
    #43410 - Flag for Followup dialog opens up too small in Evo  (Michael)
    #43688 - Can't save signatures  (Michael)

  * Summary

    #43506 - Spontaneous crash  (Ettore)

  * Misc

    #43596 - Symlink icon file so it doesn't break existing panel
             setups  (Ettore)

Other bugs fixed:

  * Addressbook

    - Removed conflicting shortcut for the Print Preview menu item
      (Rodney)

  * Misc

    - Corrected some problems in the pkgconfig files  (Rodney)
    - Fixed an issue with GConf schema file installation  (Joe Marcus
      Clarke)

Updated translations:

  - nl (Vincent van Adrighem)
  - ru (GNOME Russian Team)
  - be (GNOME Belarusian Team)
  - es (Francisco Javier F. Serrador)


Evolution 1.3.92, 2003-05-22
----------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook

    #38084 - Rename local folder issue in contacts  (sean.gao@sun.com)
    #41130 - HIG compliance  (Anna)
    #41137 - HIG compliance  (Anna)
    #41140 - HIG compliance  (Anna)
    #41144 - Use stock buttons in the ldap config page  (Toshok)
    #41211 - Add icon to "Add" button in "Add to Contacts" dialog  (Toshok)
    #41229 - HIG compliance  (Anna)
    #41231 - HIG compliance  (Anna)
    #41232 - HIG compliance  (Anna)
    #41245 - HIG compliance  (Toshok)
    #41248 - HIG compliance  (Anna)
    #41249 - HIG compliance  (Anna)
    #41250 - HIG compliance  (Anna)
    #41251 - HIG compliance  (Anna)
    #41254 - HIG compliance  (Anna)
    #41255 - Use stock Add/Remove icons in the contact list editor  (Toshok)
    #41910 - Crash when deleting addresses from long contact lists  (Toshok)
    #42048 - "Print" not hooked up in etable view  (Toshok)
    #42177 - Cannot tab out of date edit widgets in contact editor  (Toshok)
    #42472 - Selecting a field in a contact highlights entire row  (Toshok)
    #42596 - Selecting text in a contact address field selects all
             rows of text (Toshok)
    #42604 - Display not shifted when cursor moved to next address
             line (Toshok)
    #42606 - Not saving information entered in Notes field of Contact
             editor (Toshok)
    #42620 - Crash related to mailing address checkbox  (Toshok)
    #42625 - Clicking in white space of contact brings up empty
             contact editor  (Toshok)
    #42780 - Crash on solaris due to missing NULL in g_guild_filename.
             (sean.gao@sun.com)
    #42825 - clicking on letters in LDAP address card view does not
             load selected letter (Dan, Toshok)
    #43005 - Crash on reply  (Toshok)
    #43016 - Crash when adding duplicate contact  (Toshok)
    #43023 - All contacts have disappeared  (Toshok)
    #43090 - GalView menu missing from the addressbook  (Toshok)
    #43175 - Evolution crashed pasting large amount of text into
             address field  (Toshok)
    #43213 - auto-completion folder list wasn't populated correctly on
             fresh install  (Toshok)

  * Calendar

    #40972 - connector crashed while evolution was idle  (Rodrigo)
    #41234 - button order of "Enter Delegate" dialog (Rodrigo)
    #41329 - Changing Options in scheduling tab causes display time to shift
    #41579 - Double clicked on meeting in Exchange calendar, Evo
             crashed  (Rodrigo)
    #41760 - Alarm dialog does not reappear after snoozing Exchange
             alarm  (Rodrigo)
    #41811 - Calendar update failing and crashing  (JP)
    #41930 - Warning while running gdb includes: "Some clown returned
             undeclared exception"  (JP)
    #41935 - day view ignores scroll wheel  (JP)
    #42056 - Accelerators in meeting selector not working/looks bad
             (Hans Petter)
    #42220 - calendar not refreshing correctly after changing meeting
             times  (Rodrigo)
    #43029 - When running under valgrind Evolution crashed while
             exiting  (JP)
    #43308 - scheduling page alignment (JP)

  * Mail

    #40074 - Thread expansion state not remembered  (Jeff)
    #41748 - Send/Recv not sending mail in connector Outbox  (Michael)
    #42000 - Crash selecting a non-selectable folder  (Michael)
    #42045 - Another workaround for mailers sending out invalid date
         formats  (Jeff)
    #42118 - Edit->Mark as unread doesn't behave the same as right
         click->mark as unread  (Jeff)
    #42170 - Thread expansion state lost on deleting messages  (Jeff)
    #42212 - Crash entering address in composer  (Rodrigo)
    #42294 - Custom fixed font setting not applying to composer
              (Michael)
    #42333 - Crash opening a mail again that was still being opened
              (Jeff)
    #42356 - Adding colour from not working properly  (Jeff)
    #42456 - Spelling preferences Enable/Disable button inconsisency
              (Michael)
    #42540 - Crash when pressing send/recv too quickly  (Michael)
    #42710 - Invalid 8 bit header data getting to the UI layer
             generating warnings  (Michael)
    #42763 - Crash deleting local folder with indexing turned off
              (Jeff)
    #42838 - Crash setting up local mail account  (Michael)
    #42854 - Copying many messages between IMAP folders results in
             several duplicates  (Jeff)
    #43214 - changing server settings enables the account  (Jeff)
    #43234 - crash reading mail  (Michael)
    #42748 - Check spelling while I type - broken (Larry)
    #42749 - Composer ignores color for misspelled words (Larry)
    #43392 - Reproducible crash after searching mail w/ attachment and
             closing (Jeff)
    #43406 - Evo crashed during POP download/filtering  (Jeff)

  * Shell

    #36956 - Window title too long  (Ettore)
    #40391 - Updated contributor list in the about box  (Michael)
    #42038 - Crash hitting escape or closing window on rename box
              (Michael, Ettore)
    #42342 - Send/receive sensitive when startedi in offline mode
              (Ettore)
    #42465 - Unread count problem in the shortcut bar  (Ettore)
    #42491 - Compilation problems on Forte  (Antonio Xu)
    #42518 - Folder bar selection lost on folder delete  (Ettore)
    #43079 - Don't crash when an invalid "default:" URI is given on
             the command-line  (Ettore)
    #43119 - Memory corruption problem in settings dialog  (Ettore)
    #43216 - Crash on exit  (Ettore)
    #43322 - Crash on exit  (Ettore)

  * Summary

    #41131 - HIG compliance  (Anna)
    #41133 - HIG compliance  (Anna)
    #41849 - Charsets not respected in news feed display  (Michael)
    #43101 - Crash on exit  (JP)
    #43117 - Crash on exit  (Ettore)

Other bugs:

  * Addressbook

    - 64bit cleanup and warning fixes  (Jeremy Katz)
    - Fixed some probable memory corruption (Toshok, Sean Gao)

  * Calendar

    - Fixed crash in cal_client_discard_alarm  (Rodrigo)
    - Fixed Bonobo unrefing problems on components  (JP)
    - Fixed multiple initialization in calendar factory  (Rodrigo)

  * Mail

    - Crash on exit if password dialog was open  (Ettore)
    - Make Ok the default response on the password dialog  (Ettore)
    - Crash in SMTP if unable to resolve the remote host name  (Jeff)
    - Fix an automake 1.6 issues with camel-lock-helper  (Dan)
    - Reload page if citation color changes (Larry)
    - Made all the composer preferences work (Larry)
    - Made newly created HTML signatures work again (Radek)

  * Shell

    - HIGified config settings dialog a bit more  (Anna)
    - Fixed a bunch of reference count problems  (JP)
    - Improved the look of the "open other user's folder" dialog
      (Dan)

  * Summary

    - Fixed a typo that caused the summary to not see the default
      calendar folder  (Ettore)
    - Made the print dialog close properly  (Ettore)
    - Reference count fixes  (JP)

  * All

    - Various container referencing issues  (JPR)
    - 64 bit and portability fixups  (Jeremy Katz)
    - Cleaned up lots of compile time warnings and run-time debugging
      output  (everyone)

Updated translations:

  - cs (Miloslav Trmac)
  - da (Kenneth Rode Christiansen)
  - de (Christian Neumair)
  - es (Francisco Javier Fernandez)
  - fr (Christophe Fergeau)
  - it (Marco Ciampa)
  - ja (Takuo Kitame)
  - no (Kjartan Maraas)
  - pt (Duarte Loreto)
  - pt_BR (Gustavo Maciel Das Vieira)
  - ru (GNOME Russian Team)
  - sv (Christian Rose, Anders Carlsson)

  - Fixed encoding of the ca, en_AU, en_CB, et, eu, ro catalogs (Abel
    Cheung)


Evolution 1.3.3, 2003-04-29
---------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook

    #37351 - Contact List drag-n-drop broken from sorted list view  (Toshok)
    #40954 - Wombat crashes when opening an appointment  (Toshok)
    #41843 - Don't use localized field names in the csv exporter  (Gilbert Fang)
    #41779 - Fix crash when adding emails to existing contacts  (Toshok)

  * Calendar

    #21499 - No docs in snaps (Rodney)
    #22444 - Deleting recurring meetings menu option (Rodrigo)
    #34498 - alarm-notify not noticing meetings canceled by organizer (Rodrigo)
    #35814 - same mnemonic for File:New:Mail Message and :Meeting (Rodney)
    #37552 - GUI doesn't notice Connector failed to delete task (JP)
    #39735 - Calendar View settings not persistent between sessions (JP)
    #40257 - selecting day from calendar control causes window resize (JP)
    #41129, #41215, #41221, #41256, #41148, #41216, #41235 - gui spacing (Rodrigo, Anna)
    #41230 - forwarded tasks blank when viewed in a separate window (JP)
    #41458 - Crash sending meeting invite (Dan)
    #41459 - remove "Delegate to..." from right click menu in meeting dialog (JP)
    #41641 - crash opening calendar for the first time (Hans)
    #41661 - Only one popup dialog for repeated message alarm (Rodrigo)
    #41671 - audio alarms pop up message dialog instead of playing tune (Rodrigo)

  * Mail

    #21499 - No docs in snaps  (Rodney)
    #38927 - Signature editor help brings up composer help
    #40694 - Focus not in To field of new message when From field is
             visible. (Toshok)
    #40989 - Deleted sub-folders hang around  (Michael)
    #41043 - Send/receive accelerators broken  (Michael)
    #41142 - Message search dialog has questionable button order  (Jeff)
    #41149 - Spacing/padding of "Filters" dialog  (Jeff)
    #41150 - Use stock buttons in "Filters" dialog  (Jeff)
    #41151 - Spacing/padding of "Add/Edit Filters" window  (Jeff)
    #41152 - Spacing/padding of "Vfolders" dialog  (Jeff)
    #41153 - Use stock buttons in "VFolders" window  (Jeff)
    #41155 - Spacing/padding in "Add/Edit Vfolders" dialog  (Jeff)
    #41156 - Use stock** buttons in "add/edit vfolders" dialog  (Jeff)
    #41163 - Forwarding HTML mail with inline images results in 
             misformatted mail  (Michael)
    #41164 - Can't import mails at all  (Michael)
    #41190 - Crash cursor navigating Inbox  (Michael)
    #41199 - Subscribe dialog's toolbar -- why? :)  (Michael)
    #41205 - Use icons on Add/Edit/Delete buttons in "Search Editor"  (Jeff)
    #41208 - Spacing/padding in "advanced search" dialog  (Jeff)
    #41209 - Spacing/padding of "Create VFolder from Search" dialog  (Jeff)
    #41238 - Crash when opening "attachment properties"  (Jeff)
    #41239 - Spacing/padding of "attachment properties"  (Jeff)
    #41241 - Title capitalisation of "Attachment Properties"  (Jeff)
    #41244 - Spacing/padding of "Reformat Mailbox" dialog  (Jeff)
    #41389 - Crash creating new Exchange acct  (Jeff)
    #41398 - vFolder Sources IMAP folder names not being unencoded 
             correctly  (Michael)
    #41419 - Variable font key has trailing slash  (katzj@redhat.com)
    #41448 - Crash on startup  (Michael)
    #41461 - camel_text_to_html doesn't do as good a job with URLs as 
             e_text_to_html  (Jeff)
    #41513 - Plain text attachments not showing up in the composer  (Jeff)
    #41578 - Up/down buttons broken in vfolder list  (Jeff)
    #41648 - 1.2 -> 1.3 vfolder conversion  (Michael)
    #41730 - Empty "Organization" headers  (Jeff)
    #41789 - Bonobo components can pause/freeze the gui  (Jeff)
    #41972 - Searching on labels is broken  (Michael)
    #42024 - Improper use of Error dialog  (Jeff)

  * Shell

    #21499 - Documentation not working in the snapshots  (Rodney)
    #33919 - Crash when opening other user's folder  (Dan)
    #41002 - Default folder bar size too narrow  (Ettore)
    #41008 - HIG compliance  (Anna)
    #41010 - HIG compliance  (Anna)
    #41022 - HIG compliance  (Anna)
    #41024 - HIG compliance  (Anna)
    #41025 - HIG compliance  (Anna)
    #41036 - HIG compliance  (Anna)
    #41059 - Crash connecting to other user's folder  (Ettore)
    #41013 - Startup wizard display problems  (Michael)
    #41128 - HIG compliance  (Anna)
    #41145 - HIG compliance  (Anna)
    #41146 - HIG compliance  (Anna)
    #41147 - HIG compliance  (Anna)
    #41225 - HIG compliance  (Anna)
    #41227 - HIG compliance  (Anna)
    #41242 - HIG compliance  (Anna)
    #41304 - Missing dialog title  (Michael)
    #41392 - HIG compliance  (Anna)
    #41413 - Creating folder needs to make sure parent folder is
             expanded  (Dan)
    #41468 - New Exchange public folders do not follow type of parent
             folder  (Dan)
    #41469 - Upgrade routine crashing on Solaris  (Jeff)
    #41484 - Make proxies work  (Sanshao Jiang)
    #41567 - HIG compliance  (Anna)
    #41569 - HIG compliance  (Anna)
    #41648 - Vfolder upgrade problem  (Michael)
    #41916 - Memory corruption in Storage interface  (Rodrigo)

  * Summary

    #39693 - Summary weather settings annoyances  (Ettore)
    #40902 - HIG compliance  (Ettore)

Other bugs:

  * Addressbook

    - Mostly, if not completely, fixed 33708  (Dan, Toshok)
    - Fix duplicate entry in exported CSV  (Gilbert Fang)
    - Use stock buttons  (Rodney)

  * Misc

    - Made Solaris/CDE integration work again  (Rodney)
    - Removed some debugging spewage  (everyone)
    - Don't crash on malformed GConf folder settings  (Toshok)
    - Don't error out if the directory already exists when creating a
      new folder  (Ettore)
    - Fixed various memory leaks all over the place  (Hans)

Updated translations:

  - cs (Miloslav Trmac)
  - de (Christian Neumair)
  - es (Francisco Javier Fernandez)
  - it (Marco Ciampa)
  - nl (Vincent van Adrighem)
  - no (Kjartan Maraas)
  - pt (Duarte Loreto)
  - sv (Christian Rose)
  - zh_CN (Wang Jian)


Evolution 1.3.2, 2003-04-11
---------------------------

Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):

  * Addressbook

    #7103  - Addressbook doesn't play nice with dark themes.  (Toshok)
    #19178 - importers only target default contact folder.  (Toshok)
    #20210 - Cannot save changes when invoked from mailer.  (Toshok)
    #23036 - Export Contact Data to CSV, XLS, etc.  (for mail merge,
             etc.) (Gilbert Fang)
    #25148 - Selected contacts fields are not scrolling properly.
             (Toshok)
    #31786 - LDAP config dialog not properly internationalized.
             (Toshok)
    #32113 - Problem with UTF8 and contact list.  (Toshok)
    #34085 - drag+drop not finalizing.  (Toshok)
    #34651 - Searches with 8bit ascii char. not working in Select
             Contacts.  (Toshok)
    #37204 - Ximian, Inc. contact info update.  (Michael)
    #38202 - Evolution crashed when I clicked the send button.  (Michael)
    #39170 - void function should not has a 'return' keyword.  (Philip
             Zhao)
    #39256 - "Forward Contact", "Send Message to Contact" don't
             work.  (Michael)
    #39381 - crash when adding an address from an email to addressbook.
             (Toshok)
    #39507 - Select-names search broken.  (Toshok)
    #39730 - Search Base Callback Not Working.  (Toshok).
    #39763 - Pasting text into "To:" field doesn't work.  (Toshok)
    #39788 - Can't add email address to contact.  (Toshok)
    #40026 - Using pulldown to view multiple emails changes email to
             random characters.  (Toshok)
    #40046 - To: and Cc: fields not accepting accented letters.
             (Toshok)
    #40403 - can't edit contact lists.  (Toshok)
    #40715 - Merge email address dialog non functional when adding
             contact that already exists. .  (Toshok)
    #40727 - email autocompletion not listing all names.  (Toshok)
    #40841 - Ctrl-v was being used for both "Save As VCard" and
             "Paste".  (Toshok)
    #40901 - HIG-ify the LDAP server editor dialog's button
             layout.   (Toshok)

  * Calendar

    #17231 - Private settings not retained.  (JP)
    #31382 - Free/busy retrieval didn't work for http source.  (Rodrigo)
    #31660 - Appointments with "for" recurrence synced with no end date.
             (JP)
    #32248 - Todo items imported from pilot have time set to 00:00.  (JP)
    #34095 - Memory leaks.  (Hans Petter)
    #34505 - Duplicate alarm dialogs for appts in exchange calendar.
             (Rodrigo)
    #35926 - Contacts entry in appointment editor to be removed.
             (Hans Petter, Dan)
    #37935 - Drawing problems in mini-calendar.  (Hans Petter)
    #39262 - Crash when importing an ics file to local calendar.  (Rodrigo)
    #39356 - New evo users didn't get calendar.  (Rodrigo)
    #39692 - File type names should not be OAF component types.  (Ettore)
    #39735 - View settings not persistent between sessions.  (Jeff)
    #39736 - Times in day view too large.  (Hans Petter)
    #39740 - Crash clicking in Attendees field when creating new
             meeting.  (Rodrigo)
    #39757 - Couldn't delete reminder for appointment.  (Hans Petter)
    #39770 - Not meeting request sent.  (Rodrigo)
    #39803 - Bottom part of text cut off in month view.  (Hans Petter)
    #39895 - Selection vanishes when day view loses focus.  (Michael/Hans)
    #39954 - Crash when setting recurrence rule for an appointment.
             (Hans Petter)
    #39955 - Crash when forwarding an appointment as icalendar.  (JP)
    #39961 - Appointment schedule autopick menu displays under File.
             (Rodrigo)
    #40133 - wombat startup error. (Toshok)
    #40195 - Cannot create new calendar folders (JP)
    #40252 - LOG(e...) syntax error (Michael)
    #40258 - Recurring event displayed truncated description.  (Hans Petter)
    #40578 - Event summaries cut off in month view.  (Hans Petter)
    #40655 - Mini-calendar always showed January 1970.  (Hans Petter)
    #40661 - Missing header for Forte compilation.  (Rodrigo)
    #40722 - Crash when closing a meeting.  (JP)
    #40789 - Didn't remember reminder text.  (JP)
    #40790 - Didn't launch programs added as reminders.  (JP)
    #40792 - Buttons in Select File dialog for sound reminder didn't
             work.  (Ettore)
    #40876 - Cannot create a meeting with a resource in Exchange 
         calendar (JP)
    #40894 - calendar switching weeks selected in small right subcalendars 
         (JP)
    #41127 - Evolution crashed when sending new meeting invitation (JP)

  * Mail

    #29564 - Message list loses focus when you expunge.  (Michael)
    #33786 - Crash when invalid expression fed to vFolder.  (Michael)
    #36245 - Translation string context problem.  (Dan)
    #37084 - Mailer forgets message list pane size on startup.
             (Michael)
    #38227 - Button spacing issues.  (Ettore)
    #38461 - Mail importers cannot import to non-local folders.
             (Michael)
    #38659 - RFC2047 word encoding errors.  (Jeff)
    #38926 - Configuration dialogs overlap each other. (Ettore, Jeff)
    #39165 - Losing all vFolder rules after editing them, until
             restart.  (Michael)
    #39168 - compiler compatability, empty structs.  (Jeff)
    #39170 - Compiler compatibility, returning a void return value.
             (Jeff)
    #39173 - prototype mismatch.  (Jeff)
    #39204 - Charset handling problems with broken mails.  (Jeff)
    #39256 - Send message to contact/forward contact doesn't work.
             (Michael)
    #39325 - Allow user to enable/disable account from account list.
             (Jeff)
    #39382 - Signature editor dialog buttons messed up.  (Jeff)
    #39464 - Trying to remove a duplicate vfolder crashes.  (Michael)
    #39486 - Cancelling send/receive could cause a crash.  (Michael)
    #39654 - vFolder source remove button doesn't work.  (Jeff)
    #39696 - Default composer window title is meaningless. (Jeff)
    #39741 - Configuration dialogs overlap each other. (Ettore, Jeff)
    #39744 - Sending 8 bit mime to a smtp server which doesn't say it
             supports it. (Jeff)
    #39759 - Crash using search dialog.  (Michael)
    #39800 - Make To: have focus on a new message.  (Jeff)
    #39809 - Dialog's don't match gnome 2 layout.  (Jeff)
    #39813 - Crash/noop adding signature script.  (Jeff)
    #39870 - Message browser button sensitivity not correct.  (Jeff)
    #39914 - Configuration dialogs overlap each other. (Ettore, Jeff)
    #39924, and many others - Subject entry box didn't work
             properly/support i18n very well.  (Jeff)
    #40043 - A warning dialog wont go away.  (Jeff)
    #40074 - Threads always open expanded.  (Jeff)
    #40083 - Search box doesn't work on subscription dialog - it was
             removed.  (Jeff)
    #40103 - Deadlock at startup.  (Michael)
    #40124 - Cannot unsubscribe from folders that aren't selectable.
             (Jeff)
    #40188 - Context menu on addresses crashes.  (Michael)
    #40300 - Files are only detected for recovery when you start an
             editor.  (Michael)
    #40314 - Some folders not expandable in subscriptions dialog.
             (Jeff)
    #40472 - Crash after entering password.  (Michael)
    #40522 - Two passphrase dialogues viewing encrypted mail.  (Michael)
    #40536 - Send/receive dialogue should transient for parent.
             (Michael)
    #40608 - Crash saving attachment.  (Jeff)
    #40679 - Composer crash browsing files to attach.  (Jeff)
    #40728 - Crash while scrolling.  (Jeff)
    #40764 - Composer backs up drafts too often.  (Jeff)
    #40778 - incorrect IMAP BODY parsing/display  (Jeff)
    #40900 - vfolder creation dialog has wrong button order.  (Michael)
    #40904 - Spontaneous crash.  (Jeff)
    #40921 - Cancel subscription dialogue while busy -> crash.  (Michael)
    #41004 - HIG compliance.  (Jeff)

  * Shell

    #17034 - Use UTF-8 in about box.  (Michael)
    #34371 - Tries to open other user's folder with blank user field.
             (Ettore)
    #38775 - Version number hardcoded in warning dialog text.  (Michael)
    #38974 - Xlib dependency causing linking error on Solaris.  (Ettore)
    #39096 - Start-up crash on Solaris.  (Ettore) 
    #39467 - Crash when splash image not found.  (Michael)
    #39599 - Crash when folder icons missing.  (Ettore)
    #39692 - OAFIIDs being shown in the importer dialog.  (Ettore)
    #39706 - Settings window too big.  (Michael)
    #40377 - Old stale wombat servers not being killed.  (Ettore)
    #40413 - Problem with closing the folder selector dialog.  (Ettore)
    #40474 - Summary settings not imported from 1.2.  (Michael)
    #40590 - Signature settings upgrade problem.  (Michael)    
    #40652 - Folder bar not resizing after resizing Evolution window.
            (Michael)
    #40748 - Cannot resize icons in the shortcut bar.  (Ettore)
    #40854 - Problem with selecting other user's folder.  (Dan)
    #40888 - Crash when selecting other user's folder.  (Dan)

  * Summary

     #5344  - Missing weather locations.  (Marten Woxberg)
     #7153  - Stock folder names not translated.  (Ettore)
     #12066 - Missing weather locations.  (Dan)
     #15740 - Missing weather locations.  (Dan)
     #18015 - Missing weather locations.  (Dan)
     #19957 - AM/PM setting not being honoured.  (Ettore)
     #40358 - Summary page not showing properly in non-C locales.
              (Ettore)
     #40141 - Preferences settings inconsistency when clicking "Close".
              (Michael)
     #32027 - Missing locations.  (Dan)

Other bugs:

  * Addressbook

    - HIG'ify the e-address-popup's buttons layout.  (Toshok)
    - Add input method support to the minicard view.  (Toshok)
    - Make the minicard view listen for style changes.  (Toshok)
    - Fix the select names component to be more friendly to non-shlib
      components.  (Dan)
    - Fix various errors in the contact editor caused by parsing
      addresses when we don't need to - especially after the user has
      explicitly entered the elements of the address
      themselves.  (Toshok)
    - Replace GtkImage based arrow buttons in the contact editor with
      GtkArrow.  (Toshok)

  * Calendar

    - Replaced all references to GdkFont deprecatedness with Pango.
      (Hans Petter)
    - Alarm notification fixes.  (Rodrigo)
    - Timezone dialog fix.  (Dan)
    - Use weak refs instead of destroy signal.  (Rodrigo, Hans Petter)
    - Use GtkMessageDialogs for meeting-related questions.  (Rodrigo)
    - GtkObject -> GObject fixes.  (Everyone)
    - Connector-related fixes.  (Dan)
    - Made meeting/scheduling work correctly.  (JP)
    - Only remove alarms for backends that request it (Rodrigo)
    - HIG'ify dialogs (Ettore)

  * Mail

    - Clear passwords didn't work.  (Michael)
    - Show preview and view threaded were made per-folder, as in
      1.2.x, 1.3.1 had them global.  (Michael)
    - Make the printing dialog, and account editor transient for the
      parent.  (Larry, Jeff)
    - Check for unique filter/vFolder names in all cases.  (Michael)
    - Most warnings removed.  (Jeff, Michael)
    - some text/plain mails detected as text/html, re-do the fix for
      #16817 to make it pickier.  (Michael)
    - Imap buffer overflow potential.  (Timo Sirainen)
    - GSSAPI SASL support.  (Jeff)
    - Handle broken header charset checking similarly to badly
      labelled/broken body content.  (Dan)
    - Various glib deprecation issues, and use non-locale specific
      string compares in various places.  (Jeff, Michael)
    - Mail piped to the sendmail transport is canoncalised into Un*x
      format, using network format (CRLF) confuses some versions of
      postfix.  (Jeff)
    - Some work on fixing cut and paste shortcuts in composer.  (Jeff)
    - Made the EvolutionComposer corba interfaces work again/port to
      GNOME 2.  (Michael)

  * Shell

    - Fixed some problems with the folder dialogs.  (Dan)
    - Fixed shell .server files.  (Dan)
    - Added --force-shutdown to the shell as a killev replacement.
      (Dan)
    - Make Evolution use large WM icons.  (Ettore)
    - Made the offline dialog work again.  (Ettore)
    - Fixed importer framework to support non-local folders.  (Ettore)

  * Summary

    - Make creation of the summary settings page faster.  (Dan)

  * All

    - A number of compiler portability fixes, varadic macro's,
      __FUNCTION__ -> G_GNUC_FUNCTION, inline usage, void returns, etc
      (Everyone)
    - Fixed druid colors.  (Dan)



Evolution 1.3.1, 2003-03-05
---------------------------

First release based on GNOME 2.