-
Notifications
You must be signed in to change notification settings - Fork 47
/
NEWS-1.0
2939 lines (1837 loc) · 87.5 KB
/
NEWS-1.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Evolution 1.0.8, 2002-06-23
---------------------------
Bugzilla Bugs Fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#17332 -- Addressbook crashes in LDAP address completion code.
(Toshok)
#26130 -- Close contact editor before save as crashes. (Toshok)
* Calendar
#25757 -- Fix quoting of icalendar properties (JP)
#25829, #25830, #26066
-- Fix a number of meeting usability and interop issues (JP)
#25697 -- Exchange reminders still not quite working (Rodrigo)
Other fixes:
* Addressbook
- Some memory leak fixes in the addressbook backends and
libversit. (Toshok)
* Calendar
- Update time zone information (Damon)
Updated translations:
- sk (Stanislav Visnovsky)
- sv (Christian Rose)
Evolution 1.0.7, 2002-06-07
---------------------------
Bugzilla Bugs Fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#25054 -- "New Contact List" button is no longer active in
folders that don't support contact lists. (Toshok)
* Calendar
#16962 -- Make the schedule page use the work hours set in the
preferences. (JP)
#23350 -- Crash when refreshing meeting or task. (JP)
#24783 -- Fix crash in wombat. (Rodrigo)
* Mail
#11391 -- Bogus gnome_vfs_file_info_unref() that caused an
occasional crash. (Frederic Crozat)
#15185 -- Non-RFC-compliant From/To/Cc being displayed as empty
in mail display. (Dan)
#19920 -- Messages hiding in threaded view. (Michael)
#21604 -- Various crashes. (Michael)
#23782 -- Stop button causes a hang. (Michael)
#25056 -- wombat segfaults when scrolling around calendar in month view
(Rodrigo)
#25456 -- Crash when deleting an account that has not been added
to the Evolution storage yet. (Jeff)
#24615 -- VFolders with the UNMATCHED vfolder as a source hang.
(Michael)
* Shell
#24284 -- Copyright notice inconsistent in the about box.
(Ettore)
Other fixes:
* Misc
- Fixed some typos in the names of some French locations.
(Christophe Merlet)
Updated translations:
- et (GNOME ET Team)
- eu (Josu Waliño)
- sk (Stanislav Visnovsky)
- fr (Christophe Merlet)
- fi (Sami Pesonen)
- vi (pclouds)
Evolution 1.0.5, 2002-05-06
---------------------------
Bugzilla Bugs Fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Mail
#24140 -- Crash when downloading a message with invalid header.
(Jeff)
#17174 -- Mail spools appear to be unread forever. (Michael)
* Shell
#23538 -- Intermittent bug when moving folders around. (Michael)
Other fixes:
* Calendar
- Make reminders work with remote backends. (Rodrigo)
* Misc
- Added support for adding an Evolution icon to the CDE
Application Manager. (Ettore)
Updated translations:
- bg (Borislav Aleksandrov)
- pl (GNOME PL Team)
Evolution 1.0.4, 2002-04-18
---------------------------
Bugzilla Bugs Fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#22965 -- Comply with RFC 2739 for calCalURI and calFBURL. (Toshok)
* Calendar
#22624 -- Unable to accept meeting request that doesn't list user
as attendee. (JP)
* Startup Wizard
#22047 -- Crash after closing the start-up wizard. (Ettore)
* Mail
#8214 -- "Error Synchronizing Folder" on incoming mail spool.
(Michael)
#18929 -- If we get multiple Content-Type header values, change
subsequent headers to X-Invalid-Content-Type so it doesn't
wreck processing. (Michael)
#22363 -- Problems resyncing IMAP folders when going Online. (Jeff)
#21716 -- Fixes to decoding illegally rfc2047 encoded words. (Michael)
#22657 -- Fixes printing for some localizations (Radek)
Other fixes:
* Calendar
- Use default tasks folder in calendar view. (Rodrigo)
- Added getQuery method to CalBackend to allow custom queries for
each calendar backend. (Rodrigo)
* Mail
- Fixed Daylight-Savings-Time calculations on systems that use
tm.tm_gmtoff rather than 'timezone' (affects BSD systems). (Jeff)
- Fixed the annoying EINPROGRESS error dialogs when connecting
to IMAP/SMTP/POP via SSL. (Jeff)
- Changed the date format used in From-lines in mbox spools to be
the same as those used by Pine to fix interoperability issues.
(Michael)
- Fixed some filtertypes.xml typos. (Michael)
* Summary
- Change the dot.kde.org url.
Updated translations:
- fi (Sami Pesonen)
- fr (Christophe Merlet, Frederic Riss)
- ko (Young-Ho Cha)
- nl (Tino Meinen)
- no (Kjartan Maraas)
- pt_BR (Gustavo Maciel Dias Vieira)
Evolution 1.0.3, 2002-03-19
---------------------------
Bugzilla Bugs Fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#16097 -- Need a way to let the user specify the DN to
authenticate against. (Toshok)
#16680 -- LDAP performance problem. (Toshok)
#16968 -- Changing search type immediately requeries. (Toshok)
#20089 -- Cannot copy contacts with comma from "Contacts" to LDAP.
(Toshok)
#20690 -- LDAP contacts dont show when using letter shortcuts.
(Toshok)
#20740 -- LDAP performance problem. (Toshok)
#20871 -- SelectNames dialog needs search feedback. (Toshok)
* Calendar
#14705 -- iMIP compatibility with versions of Outlook. (Better fix
for the pseudo-fix in 1.0.1). We now support Outlook in
both Workgroup and Internet-Only modes. (Dan)
#19054 -- Minimum number of alarm repetitions should be
1. (Federico)
#19234 -- BYMONTH off-by-one in RRULE:FREQ=YEARLY. (Damon)
#20510 -- Load free busy info as attendees are added. (JP)
#20022 -- Itip addresses are case sensitive. (JP)
#20226 -- Timezone data missing from some itip replies. (JP)
#20346 -- Calendar should indicate if backend dies. (Rodrigo)
#20780 -- Better subjects in iMIP messages. (Dan)
#20787 -- Accepted/declined messages aren't always clear. (JP)
#20800 -- Sorting of free busy information in schedule page does
not work. (JP)
#20783 -- Accepting updated meeting request doesn't work. (Rodrigo)
#21198 -- Outlook didn't recognize Evolution's acceptance of an
updated meeting request. (Dan)
#21240 -- Calendar Reminders don't appear for appointments in remote
servers. (Rodrigo)
* Mail
#19564 -- Don't crash when changing to disconnected mode. (Michael)
#20779 -- Set a 'name' parameter in the Content-Type header
since Outlook doesn't seem to check the filename
parameter on the Content-Disposition header. (Jeff)
* Shell
#20234 -- Deleting folder gratuitiously causes /local to open.
(Ettore)
#20237 -- Shell silently drops xfer errors. (Ettore)
#20311 -- New window from shortcuts should not show the folder
bar and the shortcut bar. (Ettore)
* Summary
#18025 -- Summary crash upon switching to offline mode. (Ettore)
Other fixes:
* Calendar
- Show more descriptive messages on opening errors. (Rodrigo)
- Remove $filename.ics from remote URIs. (Rodrigo)
* Addressbook
- Fix search weirdness in local addressbooks. (Toshok)
- Let backends return general error status from load_uri instead
of just TRUE/FALSE. (Toshok)
- EBook(View) handling fixes in ESelectNames and
EAddressbookModel. (Clahey)
- Rethink (and change) some of the default queries to ones that
are at the same time useful and more easily implemented
efficiently by the backends, in both the component's view and in
the select-names dialog. (Toshok)
- Change the "beginswith" query implementation on the name field
to search both first and last name, so it's a little more useful
in the general case. (Toshok)
Updated translations:
- es (Carlos Perelló Marín)
- fr (Christophe Merlet)
- jp (Akira TAGOH)
- nl (Vincent van Adrighem)
- nn (Roy-Magne Mo)
- no (Kjartan Maraas)
- pt_BR (Gustavo Maciel Dias Vieira)
Evolution 1.0.2, 2002-01-24
---------------------------
Bugzilla Bugs Fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#17725 -- Non-ASCII letter headings are black when printing
(Zbigniew Chyla)
* Calendar
#6544 -- Make Timezone names translatable (Damon)
#18801 -- Alarms with specific trigger times are not shown (Damon)
* Importers
#16864 -- LDIF importer chokes on long description field (Toshok)
#17441 -- Crash trying to import VCards file into an LDAP folder
(Ettore)
* Mail
#6896 -- message_list_select() with wraparound won't select very
first message (Jeff)
#11499 -- All recovered Composer windows have HTML enabled (Jeff)
#16947 -- Crash while setting up a new mail account (Jeff)
#17205 -- Crash of evolution-mail on start-up (Jeff)
#17634 -- Marking a message as unread should undelete it, as well
(Jeff)
#17694 -- Exchange 5.5 reporting 2 messages as having the same UID
breaks Evolution (Jeff)
#17759 -- Cancelling Send/Receive can lose mail for local case
(Jeff)
#18142 -- Mailer crash when trying to send an email (Jeff)
Other fixes:
* Summary
- Change the list of items in the mail preferences (Iain)
* Calendar
- Make Tasks default to public as in Outlook (Rodrigo)
* Importers
- Make the druid as a transient window for the main shell (Iain)
* Mail
- Follow symlinks for mbox files (Jeff)
- Fixed copy/paste problems in mail-account-gui.c (Ian Goldberg,
Jeff)
- Make Vfolders work with add-on storages (Dan)
* Shell
- Don't crash on missing icon on start-up (Michael Meeks)
- Change activation/deactivation order for views in order to
reduce flicker in the toolbars (Michael Meeks)
Updated translations:
- bg (Alexander Shopov)
- el (Nick Niktaris, Panayotis Pakos, Simos Xenitellis)
- fr (Christophe Merlet)
- hu (Andras Timar)
- it (Clara Tattoni, Ettore)
- lv (Peteris Krisjanis)
- nn (Roy-Magne Mo)
- no (Kjartan Maraas)
- sk (Stanislav Visnovsky)
- sv (Christian Rose)
Evolution 1.0.1, 2001-12-18
---------------------------
New features:
* csv2vcard script to convert CSV addressbook files from Outlook
into VCard files that the Evolution importer can understand (by
Michael MacDonald).
* Alarms are now properly synced in the calendar conduit.
Bugs fixed:
* Addressbook
#10114 -- No icon for Delete in the New Contact List editor
#10241 -- Occasional address completion flakiness
#10910 -- "Save" in list editor vs. "Save and Close" in contact editor
#11776 -- Email addresses are case sensitive
#13751 -- AddressBook address entry form usability problem
#14002 -- Select names dialog stays up after composer is closed
#14074 -- Editing fields under the "Collaboration" LDAP contact
#14715 -- Wombat gets locked up when LDAP server is down
#14876 -- Modifying LDAP contacts destroys existing objectclass entries
#15379 -- Printing from the addressbook totally broken
#16156 -- "Save As", "Send As", "Send To" not available in list editor
#16176 -- Tab order starts wrong
#16510 -- Small contact editor fixes
#16744 -- Crash
#16852 -- Crash closing empty mail
#16910 -- Crashed addressbook when selecting addresses
#17109 -- Crashed when editing a contact
#17126 -- Adding some addresses does not work
* Calendar
#7641 -- Crash in EMap widget when used in Evolution
#8993 -- Attendees not stripped properly from itip replies
#13843 -- Deleting tasks causes crash
#13952 -- Notifier repeatedly gives alarm after appointment ended
#14087 -- Daily repeat event with end-date misses one day
#14489 -- UI bug in Calendar Settings
#14699 -- gtk_signal_disconnect_by_data warning
#14705 -- iMIP compatibility with versions of Outlook. (We now support
Outlook in an Exchange environment by default, but the old
behavior can be turned on with the environment variable
EVOLUTION_SEND_IMIP_AS_ATTACHMENT. This will be fixed better
later.)
#15401 -- Use UTF-8-aware gnome-print calls
#15456 -- Typo in translatable string
#15774 -- Crashed by selecting "decline" in meeting request
#15941 -- Location missing for the calendar
#15749 -- Empty end time in all-day-event crashes calendar.
#15774 -- Selecting decline in schedule meeting request makes evo crash
#15798 -- Calendar Date Never Updates
#16232 -- e-itip-control.c - init() doing odd stuff
#16359 -- Calendar Crash
#16460 -- Changing a meeting doesn't always offer to send an update
#16571 -- Weird URI in meeting request email
#16910 -- Crashed when entering a completion percentage
#16224 -- remove unsupported columns from Tasks view
#16880 -- Cannot import ical (ics) even its own
#17344 -- iCalendar should not be translated
#17526 -- Refreshing request does not show relevant information
#17527 -- Refresh requests have wrong menu
#17531 -- libical does not build with bison 1.30
#17606 -- libical does not build with autoconf 2.52
(none) -- Scheduling page did not accurately display no information range
* Conduits
#1183 -- Handle alarms in conduits
#14452 -- Converting names wrong from Palm
#15810 -- Crashed during EAddress sync
#15922 -- Crash
#16460 -- Changing a meeting doesn't always offer to send an
update
#16997 -- Pilot compilation with libiconv
#17230 -- Custom data on Pilot being over written
* Importers
#14701 -- Importing locks up Evolution
* Mail
#2233 -- Don't show RTF attachments inline
#5547 -- Crash: Error closing a HTML-mail
#12062 -- Can't use 'n' to skip to next unread if multiple messages
are selected
#13898 -- Crash: Cannot create emails in evolution
#14127 -- Wrong error message
#14348 -- Some things that need open messages...
#14517 -- "Clear" needed twice for non-body+subject searches
#14662 -- GPG signature showing as attachment
#14678 -- Timestamp on outgoing mail incorrect on FreeBSD
#14734 -- Evolution-mail crashes while accessing imap servers
#14770 -- Appending messages to other IMAP folder can cause INBOX to
stop updating
#14838 -- Saving passwords doesn't work
#14848 -- Forwarding wrong email due to next/prev
#14965 -- Message copy fails with space in folder names
#14976 -- Crash when reading a message from an IMAP server
#15264 -- Crash: evolution-mail seg fault on exit
#15374 -- "___" in autogenerated name of vfolder created by sender of
#15415 -- Virtual Folders Editor: display of non-ascii symbols is broken
#15449 -- `N' wraps `P' doesn't
#15451 -- Crash when pressing stop during "going offline"
#15489 -- Evolution crashed while deleting my IMAP mail account
#15491 -- Evolution crashes/becomes unusable if ppp connection is lost
#15498 -- Crash: Faulty vFolder editor
#15512 -- Hangs while scanning for changed messages on S/IMAP+Exchange
#15552 -- Crash
#15608 -- RCPT TO: response error: Success
#15647 -- Composer "send" button has wrong tooltip when offline
#15657 -- Empty recipients
#15693 -- Crash: Loading message contents from IMAP and close application
#15745 -- Search edit window widgets disabled. / Mail component crash.
#15813 -- Decrypting cuts off initial text
#15843 -- Attachments inside attachments
#15946 -- Opening IMAP mailbox made it crash
#15952 -- Mailer crashed after hitting page down key
#16227 -- "Body contains" seems to want a regexp
#16254 -- Add Sender to Addressbook missing from menus
#16284 -- Evolution-mail crashed selecting "create vfolder on subject"
#16371 -- Corrupt Email crashes Mail component
#16416 -- X-Mailer says "Preview Release"
#16501 -- Crash while creating new account
#16520 -- Crash
#16559 -- Race-condition in the Camel type system
#16669 -- Camel 64-bit badness
#16695 -- A few dialogs are missing sensible titles
#16698 -- Crash: Can't empty trash; segfault when I try to exit
#16722 -- Attachment properties dialog crash
#16903 -- Crash: segv retrieving mail
#16924 -- Crash on a particular spam message
#16936 -- Crash when opening a specific message
#16947 -- Crash: Trouble Setting up a new mail account
#17085 -- Bad encoding for subject
#17386 -- Crash when reading a specific message
* Shell
#7827 -- Switching desktops leaves the folder bar popped up
#14518 -- Crashed when starting the program
#14701 -- Importing locks up Evolution
#15435 -- "Rename folder" dialog: non-ASCII folder names are displayed
#16507 -- Right Click -> View does nothing
#16693 -- Crash when creating a new folder
#17258 -- Shell displays splash even if Evolution is already running
* Summary
#8029 -- Locations.h file for translators
#11212 -- Degree symbol in weather
#14483 -- "Hello"?
#14996 -- All-day appointments are displayed incorrectly in the
summary view
#16417 -- Have a better default than CNN headlines
#16772 -- Summary crashes on startup
#17249 -- Crash going offline
* Misc
#16358 -- Evolution doesn't have a man page
#17377 -- Evolution doesn't work on multi-visual displays
Evolution 1.0, 2001-11-14
-------------------------
Misc:
Removed OpenSSL support.
Mailer:
#14893 -- Mailer hanging if you specify an invalid password
Evolution 0.99.2 (Release Candidate 2), 2001-11-14
--------------------------------------------------
Misc:
#14783 -- killev does not check for system type properly
#14630 -- HTML docs refer to missing gifs in stylesheet-images
#15027 -- Typos in the docs
#15028 -- Corrections to the user documentation
#15056 -- Spelling Error
Shell:
#6295 -- Go to folder dialog should have the e-tree focused
#13872 -- Crash
Summary
#13478 -- Summary hangs at startup
#14518 -- Crashing while starting the program
Mailer:
#10560 -- Messages in Korean charset displayed as blank
#10735 -- Extra cruft at bottom of Compose window's View menu
#11177 -- Closing main window while dialog up, hangs
#11647 -- "Body contains" and "Body does not contain" searches are
matching strings in the message header
#13996 -- Searches not available in IMAP in offline mode
#14351 -- pgp 5.5.8 not supported, recognized as 2.6.x
#14361 -- IMAP/SSL APPENDs hang
#14542 -- Crash pressing ctrl-a ctrl-k
#14569 -- Crash when moving a folder
#14620 -- Weird font issue in Mdk 7.2
#14659 -- GPG messages are truncated
#14672 -- evolution-mail crashes on startup
#14794 -- PGP signing problem, complaining about 2.6.x when 6.5.1
is installed
#14826 -- Crashed the editor by using Alt-C (capitalize word)
#14838 -- Saving passwords dosen't work
#14848 -- Forwarding wrong email in separate window when using prev/next
buttons
#14861 -- DnD a message from a folder with a space in the name fails
#14951 -- Cancelling before IMAP connect causes IMAP to loop forever
#14965 -- Message copy fails with space in folder names
#15038 -- Can page up or page down off of table
#15154 -- Long line rendering bug
#15267 -- Outgoing filter move/copy to folder crashes Mailer
#15296 -- Mailer hangs when fetching mail
#15324 -- Table handling code not rendering centered content when
it should
#15374 -- "___" in autogenerated name of vfolder created by sender of message
#15393 -- Pointer grab when shift-double clicking
Addressbook:
#9501 -- Appointment Editor has "Save changes?" confirmation but
Contact editor does not
#14107 -- Crash: Address auto-complete pop-up appears after sending mail
#14646 -- Doesn't handle failure in default_book case
#14743 -- Contacts crashes when saving a List
#14780 -- Pushing categories in Contact editor crashes Contacts
#17355 -- e-select-names/completion from arbitrary storages
Pilot conduits:
#9465 -- Palm Addressbook sync corrupts character set
#14562 -- Crash
#15355 -- Bogus warning in calendar conduit
Calendar:
#10285 -- Problem printing the calendar
#13631 -- Left-over debug print
#14021 -- Problems entering a task
#14335 -- UTF-8 Error in schedule meeting
#14337 -- Meeting is added to calender even when selecting decline
#14362 -- Appointments (public or private) don't show in the Day
view of the calendar
#14392 -- Event editor removes wrong pages when object updated
#14524 -- Meeting page dragging broken for all day events
#14655 -- evolution-alarm-notify crash on start
#14687 -- load_uri failures are not noticed by the client talking
to the wombat
#14704 -- Free/busy info not in UTC
#14765 -- Schedule page timezone problems
#14842 -- EWeekView - typing in event & day incorrect
#14845 -- Crash assigning category to new task
#14941 -- Crash
#15137 -- Crash when double clicking on empty appointment
Version 0.99.0 (1.0 Release Candidate 1), 2001-11-05
----------------------------------------------------
Shell:
- Fixed problems with icons not showing up in the druids. (Ettore,
Anna)
- Fixed some dnd brokenness. (Ettore)
- Fixed some random crashes and made the shell more robust in case
of activation problems or components crashing. (Ettore)
- Implemented a newer, prettier about box. (Ettore)
- Made sure the quit message always gets displayed. (Ettore)
- Made sure the shell doesn't allow for folder names with slashes.
(Ettore)
- Made the folder selection and folder creation dialogs play better
with the WM for out-of-proc components. (Ettore)
- Make sure components don't display dialogs before the shell
windows are displayed. (Ettore)
- Fixed some problems with copying/transferring/renaming folders.
(Ettore)
- Made the pop-up folder bar have the expected size when popped up.
(Ettore)
Mailer:
- Fixed SMTP truncation, IMAP/SSL truncation/hangs when
sending/appending messages. (Jeff)
- Implemented rename for imap/maildir folders. Rename also tracked
in vfolder and filter code. Use rename for local folders when we
can instead of copy/delete. (Michael, Jeff)
- Fixed startup wizard next page race bugs. (Michael)
- Fixed toolbars vanishing, Bonobo Suxors. (Michael)
- Made filter/vfolder on mailing lists honour domains, but also
backward compatible. (Michael)
- Fixed the password coming up behind the main window. (Michael,
Ettore)
- Fixed numerous crash on startup/exit/while doing nothing/switching
folder/components, many races and other architectural errors.
(Michael, Jeff)
- Bunch of vFolder fixes and feature completion. (Michael)
- Added a 'index body' option to configure folder. (Michael)
- Fixed 'unread' counts, again. (Michael)
- Fixed some problems leaking file descriptors and overusing them
when not necessary. (Michael)
- Implemented iconv() caching and Solaris friendly iconv name
converter. Made override display charset work in more cases.
(Michael, Jeff)
- Various untranslated buttons/menus and other translation issues
fixed. (Michael, Jeff)
- Offline searching in IMAP. (Michael)
- Don't warn the user if he drags a message and drops it in the same
place. (Jeff)
- Fixed replying-to and forwarding messages with attachments to
attach the appropriate attachments in the new message. (Jeff, Larry)
- Don't allow the user to edit the default searches and keep all the
search menus consistant accross all folders. (Jeff)
- Allow the user to drag&drop and/or move messages to the Trash
folder. (Jeff)
- Various fixes to the filtering code. (Jeff, Michael)
- Make various dialogs non-modal. (Jeff)
- Fixes to POP3 UID caching so users can "leave mail on server" and
not get duplicates. (Jeff)
- Fixes to IMAP caching code where servers support the UIDPLUS
extension. Will also now un-cache a folder when the user deletes
it from the IMAP server. (Jeff)
- Removed support for PGP 2.6.x due to security issues (pgp would
always return 0 suggesting that the signature was valid even when
it wasn't). (Jeff)
- "Whitespace-only" recipients are now ignored, rather than being
flagged as invalid. (Trow)
- Fixed bugs related to message searching: memory leak, i18n problems,
etc. (Trow)
- We no longer leave stray windows lying around after doing the
"Add Sender to Addressbook" operation. (Trow)
- Bcc: headers are now shown when viewing drafts, sent mail. (Trow)
- Lots and lots and lots of other little and not so little things.
(Michael, Jeff, Dan, Trow)
Addressbook:
- General bug fixes. (Everybody)
- Printing fixes. (Trow)
- Fixed the dreaded "this should never happen" bug. (Trow)
- Plugged memory leaks. (Trow)
- Fixed use-score sort ordering when doing completion. (Trow)
- Fixed EAddressPopup race conditions. (Trow)
- Implemented transfer function for shell, so moving contact
folders now works. (Trow)
- Fixed occasional completion flakiness. (Trow)
- Fixed contact count on folder bar. (Trow)
- Fixes for LDAP/multibook address completion. (Toshok, Trow)
- Added a "Do you want to save changes?" dialog to the contact
and contact list editors. (Toshok)
- Fixed date (birthday and anniversary) handling for LDAP. (Toshok)
- Fixed nasty LDAP modification bug. (Toshok)
- Add a config setting (/Addressbook/default_book_uri) to specify where
vcards and email addresses from mail messages are stored as contacts.
(Toshok)
- Fixed problem that arose in an earlier beta where some contacts
couldn't be modified or deleted from local addressbook.
(Chris Toshok)
- LDIF Importer. (Chris Toshok, Michael M. Morrison)
- Fixed Memory Leaks. (Trow)
- Always show the correct message about the number of contacts on the
message bar. (Trow)
- Fixed printing of contacts. (Trow)
- Fixed the incredibly annoying bug which caused completed
(underlined) contacts to spontaneously revert when edited.
(Trow)
- Better event handling in minicard view. (Chris Lahey)
- Fixed Bold font in select names dialog. (Chris Lahey)
- Show error dialog if saving a contact to a file fails. (Chris Lahey)
- Handle carriage returns in any contact field properly. (Chris Lahey)
Summary:
- Worked around gnome-vfs problems that were causing crashes. (Trow)
- Set the defaults to be CNN and Boston (Ettore)
- Move the location of the RDF file to be in a place that will always exist.
- Fixed numerous bugs (Trow, iain)
- Made the offline stuff work correctly (iain)
- Fixed a bug were the summary wouldn't retain settings if all folders,
or RDFs, or weather stations were removed. (iain)
Importers:
- Made the pine importer work for multidepth mail folders. (iain)
Calendar:
- Underlined accelerators now work in the editor dialogs. (Damon)
- Many fixes for scheduling meetings. (JP)
- Status bar messages for long queries. (Rodrigo)
- Appointments with empty summaries are now deleted from the views.
Also, you can press Escape to cancel editing [#780]. (Federico)
- The alarm daemon no longer displays "old" alarms twice. (Federico)
- Alarms now handle timezones correctly [#5852]. (Federico)
- Repeating alarms are now handled [#12163]. (Federico)
- The alarm daemon is launched as soon as the calendar starts, not
when you actually open a folder [#13867]. (Federico)
- You can now set a default reminder to be added to new appointments
[#13649]. (Federico)
- Fixes for printing week views [#13687, #13688]. (Damon)
- Tasks printout now matches the task list better [#10280]. (Damon)
- Better handling of DATE values, as opposed to DATE-TIME ones. (Damon)
- Many changes to handle the default timezone better. (Damon)
- Recurrence generation fixes [#11525]. (Damon)
- Fixed merging of complete VCALENDAR components. (Damon)
- Fixes to the folder transfer functions. (Ettore, Federico)
- Tasks activation fixes. (Damon)
- Outlook interoperability fixes. (Damon, JP)
- Miscellaneous fixes to the event/task editors. (Damon, JP, Federico)
- New iCalendar importer. (Rodrigo)
- Fixed problems introduced in Beta 6 due to the changes in the URI
management functions. (Rodrigo)
- Prettier alarm notification dialog. (Larry)
- Session management for the alarm daemon. (Federico)
- Added activity bars for long calendar operations. (Rodrigo)
- Added iCal file importer. (Rodrigo)
- Show error dialogs on calendar failures. (Rodrigo)
Conduits:
- Addressbook phone numbers now preserved if they can't all be
synced to desktop (JP)
- Sync addressbook phone numbers from non-english pilots (JP)
- Various memory leak fixes (JP)
- Handle multi-day calendar events (without recurrences) (JP)
- Make sure task records are marked complete in every relevant field
(JP)
- Use new timezone stuff everywhere (JP, Damon)
- Translate task priorities better (JP)
Version 0.16 (Beta 6), 2001-10-10
---------------------------------
Shell:
- Now the shell restarts stale components from previous sessions
properly. This should reduce the need for oaf-slay to only the
cases in which a specific component is completely stuck (which
hopefully should never happen). (Ettore)
- Fixed the saving of the size of the shortcut bar and the folder
bar. (Ettore)
- Always display a new default view for the shell, unless the user
specified an `evolution:' URI on the command-line. (Ettore)
- Fix the weird behavior for right click -> open in new window in a
pop-up folder bar. (Ettore)
- Make the copy/move and dnd code to detect copying of folders onto
themselves correctly. (Ettore)
Mailer:
- Bcc: addresses are now visible when browsing messages in
the "Sent" folder. (Trow)
- Various backend fixes like thread safeness of concurrent
triggered events, more forgiving address header decoding,
fixes for recent breakage to progress reports, adding a deleted
event/state for folders, various deadlocks. (Michael, Jeff)
- Fixed quick-searching by receipients to work. (Michael)
- Caching of iconv handles to improve performance of many internal
mail reading/indexing operations. (Michael)
- Major oops in mbox code that caused significant performance
problems getting/filtering mail fixed. (Michael)
- Message charsets can now be overridden by a user-chosen charset
encoding in the mail display. (Jeff)
- Report errors when file cannot be attached in the composer. (Jeff)
- File->Folder->Properties and Delete Folder now work for VFolders.
(Michael)
- VFolders, Filters and Searches are saved in a safe manner so that
they should not be lost with quota/filled disk problems. (Michael)
- VFolders now update with new mail on their sources. (Michael)
- Fixed the "Load HTML Images" radio button options in the mail
config dialog to work properly. (Jeff)
- When an IMAP folder is deleted, removed any cached messages that
had been in that folder when it was "alive". (Jeff)
- New icons for PGP signature authenticity. (Jeff, Jimmac)
Addressbook:
- General fixes. (Chris Toshok, Trow, Iain, Chris Lahey, JP)
- LDAP configuration dialog fixes. (Chris Toshok)
- New authentication work. (Chris Toshok)
- Fixed crashes related to editing the Master Category List. (Trow)
- Address completion is no longer confused by whitespace. (Trow)
- More work on having multiple wombats. (Chris Toshok)
- Contact names no longer mysteriously disappear when using the
SelectNames dialog. (Trow)
Calendar:
- Backend improvements (Rodrigo)
- Compilation fixes for latest Bonobo (Rodrigo)
- Fixed problem with exceptions to recurring events. (Damon)
- Fixed handling of UNTIL property in recurring events. (Damon)
- The alarm daemon will now notify you of alarms that should have
occurred while it was not running. (Federico)
- Handle monthly-by-day and "last day" recurrences in the conduits. (JP)
- Added priorities to the fields in the attendee list. (Chris)
- Enhancements to the event editor for meetings. (JP)
Summary:
- Bugfixes. (Iain)
- Recurring events have the correct time and date. (Iain)
Version 0.15 (Beta 5), 2001-10-02
---------------------------------