-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
8561 lines (7652 loc) · 379 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Evolution 3.2.0 2011-09-26
--------------------------
Translations:
Abderrahim Kitouni (ar)
Marek Černocký (cs)
Mario Blättermann (de)
Jorge González (es)
Daniel Mustieles (es)
Fran Dieguez (gl)
Sweta Kothari (gu)
Rajesh Ranjan (hi)
Luca Ferretti (it)
Changwoo Ryu (ko)
Hannie Dumoleyn (nl)
A S Alam (pa)
Djavan Fagundes (pt_BR)
Matej Urbančič (sl)
Muhammet Kara (tr)
Evolution 3.1.92 2011-09-19
---------------------------
Bug Fixes:
Bug 659125 - Reference counting issues in calendar (Milan Crha)
Bug 655253 - Do not show detached instances twice in a calendar (Milan Crha)
Bug 635347 - Message lacks ID when submitted for sending (Matthew Barnes)
Bug 657611 - Hidden error of invalid attendee on send (Milan Crha)
Bug 658460 - alarm-notify issues runtime warning (Matthew Barnes)
Bug 657386 - Changing default source doesn't unmark previous one (Milan Crha)
Bug 655728 - Read proxy settings from GSettings since Gnome 3 (Milan Crha)
Bug 655564 - Express remembers settings of not finished account (Milan Crha)
Bug 655568 - Cursor lost after Collapse all threads called (Milan Crha)
Bug 655709 - Hide 'Group by' in views when not supported (Milan Crha)
Miscellaneous Fixes:
Make sure GConf schemas have defined default values (Milan Crha)
User Docs: Fix order of sentences. (Andre Klapper)
User Docs: Hide 'Other Settings' if there is no content. Thanks to Michael Hill for pointing this out (Andre Klapper)
User Docs: Add TODOs as pointed out by Michael Hill (Andre Klapper)
Make maintiner mode enabled by default (Javier Jardón)
Added hu to DOC_LINGUAS (Gabor Kelemen)
User Docs: Update CSS/WebKit integration version statement (Andre Klapper)
User Docs: Add subsections to Receiving settings for better readability, use lists everywhere (Andre Klapper)
User Docs: Include Security and Default tab pages in new EWS account settings page (Andre Klapper)
User Docs: Add missing includes for Exchange account types (Andre Klapper)
User Docs: Add initial docu for EWS account setup. Thanks to Akhil Laddha for screenshots. (Andre Klapper)
Translations:
Dr.T.Vasudevan (ta)
Fran Dieguez (gl)
Mario Blättermann (de)
Duarte Loreto (pt)
Jiro Matsuzawa (ja)
Bruce Cowan (en_GB)
A S Alam (pa)
Gabor Kelemen (hu)
Luca Ferretti (it)
Kenneth Nielsen (da)
Jorge González (es)
Piotr Drąg (pl)
Mojca Ograjšek (sl)
dmustieles (es)
Matej Urbančič (sl)
Rudolfs Mazurs (lv)
Andika Triwidada (id)
Hannie Dumoleyn (nl)
Alexander Shopov (bg)
Daniel Mustieles (es)
Evolution 3.1.91 2011-09-05
---------------------------
Bug Fixes:
Bug 657765 - Explicitly link libgnomecanvas against libm
(Frederic Peters)
Bug 657836 - Work around g_unix_signal API changes. (Matthew Barnes)
Other Changes:
* Various user documentation improvements. (Andre Klapper)
* Disable inline-image plugin by default. (Matthew Barnes)
* Create tar.xz files for 'make dist' only (Milan Crha)
Translations:
Jorge González (es)
Daniel Mustieles (es)
Bruno Brouard (fr)
Andika Triwidada (id)
Daniel Nylander (sv)
Cheng-Chia Tseng (zh_HK)
Evolution 3.1.90 2011-08-29
---------------------------
* New user documentation in Mallard format by Andre Klapper.
Bug Fixes:
Bug 362366 - Dragging selected folder to message pane duplicates
messages (Milan Crha)
Bug 650839 - Add option for alarms into calendar preferences
(Milan Crha)
Bug 651633 - Hidden task/memo sidebar always automagically re-appears
(Milan Crha)
Bug 651741 - Find in text message doesn't warn about no matching found
(Milan Crha)
Bug 652092 - 'Mark messages as read' doesn't work with search folder
(Milan Crha)
Bug 652914 - IMAP: moving mail puts a copy into real Trash too
(Milan Crha)
Bug 655254 - Cropped Junk settings text (Milan Crha)
Bug 655419 - "Save as iCalendar" misses mnemonic (Milan Crha)
Bug 655490 - Location chooser dialog for Weather calendar is too small
(Milan Crha)
Bug 655549 - [mail-to-task] Ignores cancel of source select dialog
(Milan Crha)
Bug 655551 - [mail-to-task] Pick organizer based on selected folder's
store (Milan Crha)
Bug 655629 - "Path:" label for spool file should be "File:" label
(Milan Crha)
Bug 655666 - Split task preferences into its own tab (Milan Crha)
Bug 655708 - Unreadable tooltip for Memo/Task (Milan Crha)
Bug 655942 - Shows 'Storing folder...' when deleting a local folder
(Milan Crha)
Bug 656258 - Critical runtime warning on comp-editor close (Milan Crha)
Bug 656537 - Fix mallard relaxng validation errors in help pages
(Alexandre Rostovtsev)
Bug 656620 - Account editor doesn't update on settings change
(Milan Crha)
Bug 656622 - 'Check for supported types' fails again (Milan Crha)
Bug 656718 - Runtime warning in folder_tree_get_folder_info_cb()
(Matthew Barnes)
Bug 656720 - Exclude NNTP stores from Create Folder dialog
(Matthew Barnes)
Bug 656722 - Incorrect prototype of notify:: signal callback
(Milan Crha)
Bug 656723 - Forgets 'Use secure connection' setting during account
configuration (Milan Crha)
Bug 656733 - GUI no longer allows for non-default ports for email
(Milan Crha)
Bug 656810 - Too strict checking for validity of received calendars
(Milan Crha)
Bug 657310 - Crash when editing transport-only accounts (Milan Crha)
Bug 657396 - Rename Alarms tab to Reminders in preferences (Milan Crha)
Other Changes:
* Adapt to new CamelSettings API. (Matthew Barnes)
* Adapt to new CamelSubscribable interface. (Matthew Barnes)
* Notify about all newly received messages since the last check
(Milan Crha)
* Using of uninitialized memory in
em-folder-tree-model.c:store_info_free (Milan Crha)
* Simplify em_config_target_new_account_update_settings().
(Matthew Barnes)
* Change license of Czech Help translation as per
https://mail.gnome.org/archives/gnome-cs-list/2011-August/msg00013.html
(Andre Klapper)
* Use new CamelService:display-name property. (Matthew Barnes)
* e_mail_store_foreach(): Take an EMailSession parameter.
(Matthew Barnes)
* Do not show IM icons, a workaround till bug #473862 is fixed
(Milan Crha)
* Update EMailBrowser actions when MessageList reloads. (Matthew Barnes)
* Invalidate region by one more pixel in width and height (Milan Crha)
* plugin-mono: Remove Camel.cs and Evolution.cs (Matthew Barnes)
* Cannot add folder to previously saved Search folder (Milan Crha)
* Add translator comment for screenshot in docs (Andre Klapper)
* Very slow filling of EMSubscriptionEditor tree view (Milan Crha)
* Changing source in CompEditor blocks UI (Milan Crha)
* [mail-to-task] Uses incorrect function to free array of message
uids (Milan Crha)
* Stick Account Editor widgets at the top, like it used to before gtk3
(Milan Crha)
* Fix enum generation problems in glib-gen.mak. (Matthew Barnes)
Translations:
Christian Kirbach (de)
Jorge González (es)
Daniel Mustieles (es)
Fran Dieguez (gl)
Andika Triwidada (id)
OKANO Takayoshi (ja)
Kjartan Maraas (nb)
A S Alam (pa)
Yuri Myasoedov (ru)
Мирослав Николић (sr)
Daniel Nylander (sv)
Dr.T.Vasudevan (ta)
Evolution 3.1.5 2011-08-14
--------------------------
Bug Fixes:
Bug 656290 - "Always carbon-copy (cc) to:" option not honored (Milan Crha)
Bug 656267 - Checking for auth types doesn't work properly (Milan Crha)
Bug 655957 - Current account / all accounts search changes column (Milan Crha)
Bug 645476 - Message list unnecessarily scrolls back to selected row (Milan Crha)
Bug 656133 - Mail-local not initialized when adding/editing account (Milan Crha)
Bug 655843 - Copy to calendar doesn't add timezone information (James Bottomley)
Bug 655944 - Import dialog is not showing operation progress (Milan Crha)
Bug 655492 - Move 'Automatic contacts' tab to 'Contacts' part (Milan Crha)
Bug 655494 - Move 'Calendar and Tasks' tab out of Mail Preferences (Milan Crha)
Bug 655872 - [pst-import] Fails to properly open remote client (Milan Crha)
Bug 655669 - Can't save inline pictures embedded in HTML Mails (Milan Crha)
Bug 656136 - Remove time field in task editor (Milan Crha)
Bug 656035. Add missing colon to string (Andre Klapper)
Bug 655943 - Meeting request mails are not imported properly (Milan Crha)
Bug 655870 - Uses incorrect pointer as string in error message (Milan Crha)
Bug 655702 - Do not call Lists Groups when they are Lists anywhere else (Andre Klapper)
Bug 655507 - Do not unload extensions, keep them preloaded (Milan Crha)
Bug 655507 - Crash on startup when initializing spamassassin (Matthew Barnes)
Bug 655893 - Crash on pst folder hierarchy import (Milan Crha)
Bug 646646 - Incomplete and folder-incorrect import of pst file (Milan Crha)
Bug 655190 - Sluggish performance interacting with calendar/tasks (Milan Crha)
Bug 635211 - Select-all processed on timeout when not needed (Milan Crha)
Bug 655444 - Alarm/reminder settings split in two tabs in Settings (Milan Crha)
Bug 655441 - Fix typo (Andre Klapper)
Bug 655430 - Forgotten EMailJunkOptions type init for mail-config.ui (Milan Crha)
Bug 655353 - Add translator comment (Andre Klapper)
Bug 655255 - Make comp-editor toolbar buttons' tooltips saner (Milan Crha)
Bug 654889 - Closes when clicking on year/month selector (Milan Crha)
Bug 654261 - Importing ics files into Evolution fails silently (Milan Crha)
Bug 340614 - Replace alarm by reminder for UI consistency. (Andre Klapper)
Miscellaneous Fixes:
git.mk: Add support for mallard. (Matthew Barnes)
EConfig: Broadcast abort/commit events by way of signals. (Matthew Barnes)
Fix duplicated section ID (Andre Klapper)
Gtk-Doc updates. (Matthew Barnes)
EMAccountEditor: Simplify real junk/trash folder selection. (Matthew Barnes)
EMFolderSelectionButton: Add an "account" property. (Matthew Barnes)
EMFolderSelector: Add a "model" construct-only property. (Matthew Barnes)
Add em_folder_tree_new_with_model(). (Matthew Barnes)
EMFolderSelectionButton: Add a "folder-uri" property. (Matthew Barnes)
Bugfixes and corrections pointed out by Akhil Laddha (Andre Klapper)
Remove non-existing option as pointed out by Akhil Laddha (Andre Klapper)
Fix TODO now that the code is fixed (Andre Klapper)
EShell: Remove unused macro. (Matthew Barnes)
Cannot reply to message without preview panel enabled (Milan Crha)
Help->FAQ menu item and action are gone (Milan Crha)
Fix typos in new docs (Yuri Chornoivan)
EModule: Make all modules resident. (Matthew Barnes)
Remove link to FAQ as content is covered by new user docs (Andre Klapper)
Rename picture to new name (Andre Klapper)
Add the one reused translatable picture again (Andre Klapper)
Put new user documentation in place (Andre Klapper)
Remove outdated instructions for doc translators (Andre Klapper)
EMAccountEditor: Readability improvements. (Matthew Barnes)
Avoid crashes when moving between messages quickly (Milan Crha)
Do not leak memory on each mail folder change (Milan Crha)
Use the same term 'Secure connection' everywhere instead of SSL (Andre Klapper)
Use email instead of e-mail spelling, like anywhere else (Andre Klapper)
Replace user name by username as used anywhere else in Evolution (Andre Klapper)
Fix spelling of "Basic Headers" option to be consistent with the rest (Andre Klapper)
Drop the duplicated 'Format' from filetype descriptionsto also sync strings with the ones used in shell/e-shell-utils.c (Andre Klapper)
Forward button in Evolution Mail Configuration Assistant is actually called Continue (Andre Klapper)
Translations:
Fran Dieguez (gl)
Christian Kirbach (de)
Chao-Hsiung Liao (zh_HK)
Jorge González (es)
Mario Blättermann (de)
Daniel Nylander (sv)
Aurimas Černius (lt)
Daniel Mustieles (es)
Evolution 3.1.4 2011-07-25
--------------------------
Bug Fixes:
Bug 652629 - GnomeCanvas: Disregard synthesized crossing events
(Matthew Barnes)
Bug 652634 - Runtime warning on second search dialog (Matthew Barnes)
Bug 653568 - Forward as Redirect doesn't work (Matthew Barnes)
Bug 653699 - Improve mail notifications (Matthew Barnes)
Other Changes:
* Adapt to CamelSession and e-passwords changes. (Matthew Barnes)
* Prefer g_seekable_seek() over camel_stream_reset(). (Matthew Barnes)
* Avoid camel_stream_printf(). (Matthew Barnes)
* EShellContent: Fix underallocation of EAlertBar. (Matthew Barnes)
* online-accounts: Give Google calendars a color. (Matthew Barnes)
* connman: Recover from dropped D-Bus connections faster.
(Matthew Barnes)
* network-manager: Recover from dropped D-Bus connections faster
(Matthew Barnes)
* network-manager: Keep network availablility state accurate.
(Matthew Barnes)
* Fix OpenBSD/FreeBSD support (Antoine Jacoutot)
* Add more categories to settings desktop file. (Antoine Jacoutot)
* Convert junk filtering EPlugins to EExtensions. (Matthew Barnes)
* Make "open_calendar" function as expected. (Chenthill Palanisamy)
* EMailBackend: Explicitly remove CamelServices during dispose.
(Matthew Barnes)
* error in mail notification (Punit Jain)
Translations:
Marek Černocký (cs)
Jorge González (es)
Daniel Mustieles (es)
Tommi Vainikainen (fi)
Fran Dieguez (gl)
Gabor Kelemen (hu)
Shushi Kurose (ja)
Rudolfs Mazurs (lv)
Kjartan Maraas (nb)
Abduxukur Abdurixit (ug)
Evolution 3.1.3 2011-07-04
--------------------------
Bug Fixes:
Bug 650671 - Service connect/disconnect not cancelled properly (Milan Crha)
Bug 499739 - "Flag for follow-up" should be easier to set (Milan Crha)
Bug 652958 - Evolution Account Assistant jumps steps (Matthew Barnes)
Bug 653247 - Don't show TIFF documents inline (Matthew Barnes)
Bug 653644 - Warning when adding plain address into a contact list (Dan Vrátil)
Bug 224687 - Various fixes in contact list editor (Dan Vrátil)
Bug 652627 - Invalid unref on a NULL pointer from query_cb (Milan Crha)
Bug 653618 - Sending email doesn't disconnect from a server (Milan Crha)
Bug 224687 - Create lists of lists (Dan Vrátil)
Bug 653358 - Do not duplicate google address book (Gustavo Noronha Silva)
Bug 653466 - Crash in efh_format_headers (Milan Crha)
Bug 653154 - Crash when constructing calendar view (Milan Crha)
Bug 637402 - No quoted mail when replying to html email (Milan Crha)
Bug 650278 - Tab doesn't exit port field (Milan Crha)
Bug 646442 - [mail-to-task] Edit event details before adding to calendar (Dan Vrátil)
Bug 653008 - Preference window for imap accounts is too large (Milan Crha)
Bug 648468 - Disconnect service after mail fetching is done (Milan Crha)
Bug 631954 - itip formatter makes synchronous calls to ecal (Milan Crha)
Bug 269413 - Search treats "4 weeks" and "1 month" as synonymous (Milan Crha)
Bug 650223 - Do not wait on evolution's exit when done with backup/restore (Milan Crha)
Bug 638307 - Error when sending mail after converting to maildir (Milan Crha)
Bug 652620 - Can use uninitialized memory in alarm-notification-dialog (Milan Crha)
Bug 652626 - Fix initial position of contact maps markers (Dan Vrátil)
Bug 252670 - Remember columns settings in Certificates tab (Dan Vrátil)
Bug 530335 - Allow Reply to selected address only (Rathin)
Miscellaneous Fixes:
Autocompletion in contact list editor didn't work (Milan Crha)
online-accounts: Set GoaAccount ID in calendar and contact sources. (Matthew Barnes)
Add a bit more error checking and do not leak icalcomponent-s (Milan Crha)
Fix crash when adding account in express mode (Gustavo Noronha Silva)
Limit the size of tab labels to a reasonable size (Gustavo Noronha Silva)
Check for cancelled GIO operation error code too (Milan Crha)
Keep opening EClient-s till they report busy error (Milan Crha)
Prototype an online-accounts module. (Matthew Barnes)
Postpone ENameSelector loading as much as possible (Milan Crha)
[itip-formatter] stock_animation is gone, use GtkSpinner instead (Milan Crha)
Add "Open With Other Application" to attachment menu. (Matthew Barnes)
Allow the startup-wizard to be delayed. (Matthew Barnes)
Could not select real Junk/Trash folder (Milan Crha)
Fix typo in a GConf key for alarm-notification dialog timezone setting (Milan Crha)
Fix few memory leaks (Milan Crha)
Translations:
Kristjan SCHMIDT (eo)
Kjartan Maraas (nn)
Мирослав Николић (sr)
Jorge González (es)
Mario Blättermann (de)
Matej Urbančič (sl)
Fran Diéguez (gl)
Daniel Mustieles (es)
Marek Černocký (cs)
Evolution 3.1.2 2011-06-13
--------------------------
Bug Fixes:
Bug 229244 - Re-ordering email addresses in contact list editor
(Dan Vrátil)
Bug 243938 - Clicking on week numbers changes work week to week view
(Milan Crha)
Bug 332907 - Contact editor duplication alert misleading (Dan Vrátil)
Bug 537691 - Account editor window HIG (Matthew Barnes)
Bug 578245 - View settings for threads getting lost (Milan Crha)
Bug 601541 - Add 'Copy Image' Option On Inline Email Images (Milan Crha)
Bug 608203 - Left pane of mailer window is narrow at startup
(Milan Crha)
Bug 614274 - Labeling many messages is very slow (Matt McCutchen)
Bug 619347 - Decode QP in email in Contact List Editor (Milan Crha)
Bug 633948 - Try harder to use -lresolv in LDAP_LIBS
(Mathieu Trudel-Lapierre)
Bug 636809 - Address labels formatting improvements (Dan Vrátil)
Bug 640083 - Cannot configure LDAPS on port 636 (Milan Crha)
Bug 642557 - Display maps in contact preview (Dan Vrátil)
Bug 643526 - Crash in et_get_n_children (Milan Crha)
Bug 643819 - Autocomplete the Location field (Dan Vrátil)
Bug 645476 - Avoid scroll to cursor on folder change in message list
(Milan Crha)
Bug 646033 - Update progress in Send/Receive dialog (Milan Crha)
Bug 646109 - Fix use of include <config.h> to make sure translations
work (Milan Crha)
Bug 646615 - Bad single form (Milan Crha)
Bug 647785 - Pasting an 24h event in month and week view doesn't work
(Milan Crha)
Bug 648612 - Crash during drag & drop of recurring events (Punit Jain)
Bug 649310 - Calendar only shows midnight to noon (Milan Crha)
Bug 649392 - Improve calendar's "Goto" dialog and move it to dialogs
(Dan Vrátil)
Bug 649757 - 'Local delivery' accounts stopped working (Milan Crha)
Bug 649939 - Cann't create new folder (Milan Crha)
Bug 649939 - Cann't create new folder (Milan Crha)
Bug 649939 - Cann't create new folder (second shot) (Milan Crha)
Bug 649952 - Do not unref result of camel_session_get_service()
(Milan Crha)
Bug 649990 - Remove get_font_options() from e-util.c. (Matthew Barnes)
Bug 649993 - Change behavior of --component option (Matthew Barnes)
Bug 650088 - Cannot send message from Contacts view (Matthew Barnes)
Bug 650223 - evolution-backup does not terminate without --gui
(Matthew Barnes)
Bug 650491 - Shell handles forwarding uris to existing process wrong
(Matthew Barnes)
Bug 650522 - em-format-html: Fix uninitialized variable (Colin Walters)
Bug 650524 - Use g_unix_signal_add_watch_full() for SIGTERM
(Colin Walters)
Bug 650525 - Don't install a SEGV handler (Colin Walters)
Bug 650587 - Hide Search Folder actions when Search Folders are
disabled (Matthew Barnes)
Bug 651001 - Cannot send message from accounts not having a provider
(Lucian Langa)
Bug 651039 - Always update signature in composer on account change
(Milan Crha)
Bug 651062 - refresh_folders_exec() reports progress incorrectly.
(Matthew Barnes)
Bug 651135 - Crash using saved search with an empty expression
(Milan Crha)
Bug 651316 - Crash with Outgoing mail filters (Milan Crha)
Bug 651684 - Creates a copy of message in Outbox instead of replacing
(Milan Crha)
Bug 651761 - Message window doesn't mark message seen (Milan Crha)
Bug 651976 - Reply/Forward setting isn't respected in message window
(Milan Crha)
Other Changes:
* Simplified the format of folder URIs and refactored the
evolution-mail library to use CamelFolder objects as much as
possible instead of folder URIs.
* Chip away at the legacy message passing infrastructure for
mail operations. Prefer GIO-style async ops using EActivity.
* Cannot send message with just enabled account (Milan Crha)
* Remove unused e_get_gnome2_user_dir(). (Matthew Barnes)
* Add EPortEntry to the Glade catalog. (Matthew Barnes)
* EMailReader: Support multiple action groups. (Matthew Barnes)
* EMailReader: Remove the forward/reply style hack. (Matthew Barnes)
* Handle SIGTERM instead of SIGQUIT. (Matthew Barnes)
* Fix crash when opening message window. (Matthew Barnes)
* Remove emfu_create_folder_real(). (Matthew Barnes)
* Updated the help license from GFDL 1.2 to GFDL 1.3 and
CC-BY-SA 3.0 (Chenthill Palanisamy)
* Replace deprecated g_atomic_int_exchange_and_add() (Milan Crha)
* Move EPopupMenu to /widgets/table. (Matthew Barnes)
* Embed e_hsv_tweak() directly in e-table-item.c. (Matthew Barnes)
* Do not add 'Local delivery' accounts into folder tree (Milan Crha)
* Replace G_CONST_RETURN with 'const'. (Matthew Barnes)
Translations:
Alexander Shopov (bg)
Carles Ferrando (ca@valencia)
Marek Černocký (cs)
Jorge González (es)
Daniel Mustieles (es)
Seán de Búrca (ga)
Fran Diéguez (gl)
Kjartan Maraas (nb)
Yuri Kozlov (ru)
Matej Urbančič (sl)
Мирослав Николић (sr)
Abduxukur Abdurixit (ug)
Evolution 3.1.1 2011-05-09
--------------------------
Bug Fixes:
Bug 303653 - Make headers collapsable in preview pane (Dan Vrátil)
Bug 303862 - Cannot scroll message after clicking image attachment
button (Dan Vrátil)
Bug 332497 - Add Edit -> Available Categories (Dan Vrátil)
Bug 418954 - Add a separate entry combo for port numbers (Dan Vráti)
Bug 502188 - Store 'Remember password' for calendars (Milan Crha)
Bug 547954 - Clarify delete-from-search-folder warning (Dan Vrátil)
Bug 588891 - Spam settings dialog terribly un-higgy (Dan Vrátil)
Bug 597082 - Crash while migrating folder info (Matthew Barnes)
Bug 619782 - Characters override in contact editor express mode
(Matthew Barnes)
Bug 627952 - 'Local delivery' mbox's aren't read properly (Milan Crha)
Bug 641154 - Crash in emae_check_authtype_done (Milan Crha)
Bug 641845 - Add default expansion variables to templates plugin
(Dan Vrátil)
Bug 644310 - Rework "Set as Background" image option (Matthew Barnes)
Bug 645545 - Attachment reminder dialog uses wrong expand
(Matthew Barnes)
Bug 645551 - Mailer statusbar jumping in size (Matthew Barnes)
Bug 645610 - Editing contact doesn't refresh view (Milan Crha)
Bug 645721 - Fix build error when enabling kerberos without specifying
path (Niki Guldbrand)
Bug 645825 - Search bar not changing color when showing results
(Dan Vrátil)
Bug 646197 - Crash with VALARM without ACTION property (Milan Crha)
Bug 646200 - Insufficient requirement on libsoup (Matthew Barnes)
Bug 646384 - Updated App Icon (Matthew Barnes)
Bug 646817 - Hide View->Preview menu in express mode (Matthew Barnes)
Bug 647116 - Crash in g_error_matches,
e_contact_editor_contact_modified (Milan Crha)
Bug 647429 - Hide port-entry for providers without port (Dan Vrátil)
Bug 647698 - Selected calendar doesnt authenticate after offline/online
(Matthew Barnes)
Bug 647708 - e_plugin_xml_prop() can return libxml2 allocated memory
(Matthew Barnes)
Bug 647816 - Moving folder hierarchy causes error (David Woodhouse)
Bug 648308 - Do not display full folder URI in "Opening folder"
activity (Dan Vrátil)
Bug 648317 - MeeGo shell looking for the wrong atom (Abner Silva)
Bug 648346 - Add style class to message browser toolbar
(Matthew Barnes)
Bug 648756 - Custom imap port forgotten (Dan Vrátil)
Bug 649046 - crash on startup with latest CamelURL modifications
(Lucian Langa)
Bug 649365 - Creation of new repository evolution-groupwise
(Vibha Yadav)
Bug 649381 - Memory leaks in contact editor (Dan Vrátil)
Other Changes:
* Remove unique-3.0 dependency from configure.ac. (Matthew Barnes)
* Port EShell to GtkApplication. (Matthew Barnes)
* Port AlarmNotify to GtkApplication. (Matthew Barnes)
* evolution-settings doesn't really need to be unique. (Matthew Barnes)
* Fix alignment of extra widgets in EAlertDialogs. (Matthew Barnes)
* Fix an EShell reference leak. (Matthew Barnes)
* Change the accelerator map file location. (Matthew Barnes)
* Reduce EAlertBar height. (Matthew Barnes)
* EAlertBar: Make warnings time out after 5 minutes (Matthew Barnes)
* Change "mail:async-error" alerts to warnings. (Matthew Barnes)
* Restore lockdown integration. (Matthew Barnes)
* Rip out Anjal-specific cruft we don't need. (Matthew Barnes)
* Remove the profiler plugin. (Matthew Barnes)
* Remove no longer existing files from POTFILES.in (Wouter Bolsterlee)
* Don't crash on missing EAlert definitions. (Matthew Barnes)
* EWebView: Implement the EAlertSink interface (Matthew Barnes)
* EWebView: Fix icon retrieval when showing EAlerts. (Matthew Barnes)
* Demonstrate EWebView as an EAlertSink. (Matthew Barnes)
* Don't try to refresh or sync mail folders when offline.
(Matthew Barnes)
* Kill em_composer_prefs_new_signature(). (Matthew Barnes)
* Adapt to sealed up CamelService. (Matthew Barnes)
* evolution-alarm-notify: replace Moblin by Meego (Alban Crequy)
* Adapt to CamelService changes. (Matthew Barnes)
* Do not require unique-3.0 in .pc files (Milan Crha)
* e_mail_local_init(): Improve error handling. (Matthew Barnes)
* Adapt to new CamelSession background job API. (Matthew Barnes)
* Bump gladeui-2.0 minimum version to 3.10.0. (Matthew Barnes)
* EMailBackend: Ignore cancelled background jobs. (Matthew Barnes)
* Some modules missing CFLAGS/LIBS for EShell. (Matthew Barnes)
* Remove redundant EAccountList utilities. (Matthew Barnes)
* Add e_meeting_store_find_self(). (Matthew Barnes)
* Add itip_address_is_user(). (Matthew Barnes)
* Refactor CompEditor pages to isolate EAccount usage. (Matthew Barnes)
* Add itip_get_user_identities(). (Matthew Barnes)
* Fix a memory leak (Milan Crha)
* Add itip_get_fallback_identity(). (Matthew Barnes)
* Make EAlertBar messages selectable (Milan Crha)
* Adapt to extra arg in camel_session_get_service_by_url().
(Matthew Barnes)
* EMFolderSelectionButton: Remove unused multiselect functions.
(Matthew Barnes)
* groupwise-features: Fix a compiler warning. (Matthew Barnes)
* MailFolderCache: Remove 'folders_uri' hash table (Matthew Barnes)
* e_get_account_by_uid(): Also handle CamelTransport UIDs.
(Matthew Barnes)
* EMEventTargetFolder: Add an EAccount member. (Matthew Barnes)
* EMConfigTargetAccount: Add original_account member. (Matthew Barnes)
* Simplify mail_session_get_password(). (Matthew Barnes)
* Remove e_get_account_by_transport_url(). (Matthew Barnes)
* EMailSession: Fix popb4smtp authentication. (Matthew Barnes)
* Add em_folder_tree_get_selected_account(). (Matthew Barnes)
* EMailShellView: Open the selected folder ourselves. (Matthew Barnes)
* Remove e_mail_reader_set_folder_uri(). (Matthew Barnes)
* Drop 'folder_uri' param from message_list_set_folder().
(Matthew Barnes)
* Add some handy folder URI utility functions. (Matthew Barnes)
* Replace camel_store_folder_uri_equal() with
e_mail_folder_uri_equal(). (Matthew Barnes)
* em-utils.c: Simplify guess_account_from_folder(). (Matthew Barnes)
* Drop 'folder_uri' param from em_utils_folder_is_drafts().
(Matthew Barnes)
* Drop 'folder_uri' param from em_utils_folder_is_templates().
(Matthew Barnes)
* Drop 'folder_uri' param from em_utils_folder_is_sent().
(Matthew Barnes)
* Drop 'folder_uri' param from em_utils_folder_is_outbox().
(Matthew Barnes)
* Change em_folder_tree_model_user_marked_unread() params.
(Matthew Barnes)
* Remove 'from_uri' params from e-msg-composer-utils.c.
(Matthew Barnes)
* Build vfolder rules with CamelFolders instead of folder URIs.
(Matthew Barnes)
* Remove e_mail_reader_get_folder_uri(). (Matthew Barnes)
* Drop 'folder_uri' member from MessageList. (Matthew Barnes)
* groupwise-features: Avoid e_get_account_by_source_url().
(Matthew Barnes)
* MessageList: Simplify the "Location" column. (Matthew Barnes)
* EMFolderSelectionButton: Avoid e_get_account_by_source_url().
(Matthew Barnes)
* Remove EMFolderTreeModel::folder-added signal. (Matthew Barnes)
* Use e_mail_folder_uri_from_folder() instead of
camel_folder_get_uri(). (Matthew Barnes)
* Simplify em_folder_tree_set_selected_list(). (Matthew Barnes)
* Teach e_mail_folder_uri_parse() to parse 'email://' URIs.
(Matthew Barnes)
* Simplify e_mail_session_uri_to_folder_sync(). (Matthew Barnes)
* Drop support for command-line 'email://' URIs. (Matthew Barnes)
* Simplify emae_account_folder(). (Matthew Barnes)
* Simplify em_utils_folder_is_templates(). (Matthew Barnes)
* Simplify em_utils_folder_is_drafts(). (Matthew Barnes)
* Simplify em_utils_folder_is_sent(). (Matthew Barnes)
* Simplify em_folder_tree_model_set_folder_info(). (Matthew Barnes)
* EMFolderTreeModel: Always populate the CamelStore column.
(Matthew Barnes)
* EMFolderTreeModel: Avoid e_get_account_by_source_url().
(Matthew Barnes)
* EMAccountEditor: Fix a runtime warning. (Matthew Barnes)
* Introduce a new, simpler folder URI format. (Matthew Barnes)
* EMFolderTreeModel: Use the new folder URI format. (Matthew Barnes)
* EMFilterFolderElement: Use the new folder URI format. (Matthew Barnes)
* EMVFolderRule: Use the new folder URI format. (Matthew Barnes)
* e_mail_local_init(): Use the new folder URI format. (Matthew Barnes)
* Simplify e_mail_session_unsubscribe_folder_sync(). (Matthew Barnes)
* Simplify em_vfolder_rule_from_message(). (Matthew Barnes)
* Simplify em_vfolder_rule_from_address(). (Matthew Barnes)
* Simplify vfolder_adduri_desc(). (Matthew Barnes)
* MailFolderCache: Emit folder names instead of URIs in signals.
(Matthew Barnes)
* mail-config.c: Don't try to rename obsolete config files.
(Matthew Barnes)
* Remove em_uri_from_camel() and em_uri_to_camel(). (Matthew Barnes)
* fetch_mail_exec(): Remove hack for local Inbox. (Matthew Barnes)
* Remove uid_cachename_hack(). (Matthew Barnes)
* Adapt to X-Evolution-Source headers storing UIDs. (Matthew Barnes)
* Remove e_get_account_by_source_url(). (Matthew Barnes)
* em_folder_utils_copy_folder(): Change function parameter.
(Matthew Barnes)
* em_folder_utils_create_folder(): Change function parameters.
(Matthew Barnes)
* Remove em_folder_tree_get_selected_folder_info(). (Matthew Barnes)
* MailFolderCache: Drop folder URI in "folder-changed" signal.
(Matthew Barnes)
* mail-send-recv.c:get_folders(): Adapt to CamelVeeStore change.
(Matthew Barnes)
* Adapt to CamelFolderInfo.name -> display_name. (Matthew Barnes)
* Adapt to CamelFolder:name -> display-name. (Matthew Barnes)
Translations:
Abderrahim Kitouni (ar)
Krasimir Chonov (bg)
Alexander Shopov (bg)
David Planella (ca)
Jordi Serratosa (ca)
Jiří Eischmann (cs)
Kenneth Nielsen (da)
Christian Kirbach (de)
Daniel Mustieles (es)
Ivar Smolin (et)
Inaki Larranaga Murgoitio (eu)
Fran Diéguez (gl)
Gabor Kelemen (hu)
Luca Ferretti (it)
Takayuki KUSANO (ja)
Takayoshi OKANO (ja)
Shankar Prasad (kn)
Žygimantas Beručka (lt)
Kjartan Maraas (nb)
Wouter Bolsterlee (nl)
Hannie Dumoleyn (nl)
Djavan Fagundes (pt_BR)
Yuri Myasoedov (ru)
Daniel Nylander (sv)
Dr.T.Vasudevan (ta)
Abduxukur Abdurixit (ug)
Daniel Korostil (uk)
Aron Xu (zh_CN)
Chao-Hsiung Liao (zh_HK)
Evolution 3.0.0 2011-04-04
--------------------------
Bug Fixes:
Bug 646200 - Insufficient requirement on libsoup (Matthew Barnes)
Bug 646384 - Updated App Icon (Matthew Barnes)
Bug 645551 - Mailer statusbar jumping in size (Matthew Barnes)
Other Changes:
* Fix translations being broken by removing calls to bindtextdomain()
from plugins. It shouldn't be needed for plugins that live in
the evolution source tree anyway since they should just use the
translation domain they inherit from main(). (Kjartan Maraas)
Translations:
Khaled Hosny, Abderrahim Kitouni (ar)
David Planella, Jordi Serratosa (ca)
Jiří Eischmann (cs)
Kenneth Nielsen (da)
Wolfgang Stöggl (de)
Inaki Larranaga Murgoitio (eu)
Bruno Brouard (fr)
Rajesh Ranjan (hi)
Gabor Kelemen (hu)
Luca Ferretti (it)
Takayuki KUSANO (ja)
Shankar Prasad (kn)
Žygimantas Beručka (lt)
Sandeep Shedmake (mr)
Wouter Bolsterlee, Hannie Dumoleyn (nl)
Djavan Fagundes (pt_BR)
Daniel Nylander (sv)
Dr.T.Vasudevan (ta)
Daniel Korostil (uk)
Aron Xu (zh_CN)
Chao-Hsiung Liao (zh_HK)
Evolution 2.91.92 2011-03-21
----------------------------
Bug Fixes:
Bug 223838 - Do not share global Sent folder view with regular folders
(Milan Crha)
Bug 586461 - Remove signature also from HTML formatted emails on reply
(Milan Crha)
Bug 615204 - Adding AOL mail account as IMAP results in POP account
(Milan Crha)
Bug 618440 - "Reply" does not always strip signatures (Milan Crha)
Bug 637641 - Crash on audio alarms with invalid file URI set
(Milan Crha)
Bug 641939 - Doesn't read online state on start (Milan Crha)
Bug 643507 - Font preferences don't work (Matthew Barnes)
Bug 644053 - Fix packing in "Network Preferences" (Matthew Barnes)
Bug 644066 - Text selection is cleared when right-clicking on a link
(Matthew Barnes)
Bug 644107 - Local addressbooks created without relative_uri set
(Milan Crha)
Bug 644164 - Using outdated Connman D-Bus names (Hao H Li)
Bug 644166 - Add style class to primary toolbars (Matthew Barnes)
Bug 644194 - EAddressbookModel: Logic error in remove_contact
(Jari Urpalainen)
Bug 644232 - Support NetworkManager 0.9 (Dan Williams)
Bug 644235 - Make EActivityProxy a GtkFrame (Cosimo Cecchi)
Bug 644301 - Invalid GVariant format in NetworkManager module
(Milan Crha)
Bug 644792 - Crash when sending D-Bus message (Milan Crha)
Miscellaneous Fixes:
* Typo in comment: s/datefime-formats/datetime-formats/ (Paul Menzel)
* Do not prompt for offline when mail backend not started (Milan Crha)
* Use message subject for attachment description if no filename
provided (Milan Crha)
* Minor glitches in Account Editor (Milan Crha)
* Fix build break after recent eds changes (Milan Crha)
* Fix few invalid reads caused by ECanvas (Milan Crha)
* Save account list when changing account (Milan Crha)
* Select IMAP+ by default in new account setup (Matthew Barnes)
Translations:
Mario Blättermann (de)
Bruce Cowan (en_GB)
Ivar Smolin (et)
Bruno Brouard (fr)
Fran Diéguez (gl)
Gabor Kelemen (hu)
Luca Ferretti (it)
Changwoo Ryu (ko)
Rudolfs Mazurs (lv)
Manoj Kumar Giri (or)
Piotr Drąg (pl)
Duarte Loreto (pt)
Lucian Adrian Grijincu (ro)
Yuri Myasoedov (ru)
Andrej Žnidaršič (sl)
Daniel Nylander (sv)
Daniel Korostil (uk)
Evolution 2.91.91 2011-03-07
----------------------------
Bug Fixes:
Bug 434972 - Reply does not detect "RE :" subject prefix (Milan Crha)
Bug 550867 - Showing location in meetings (Milan Crha)
Bug 608804 - Some attachments make evolution crash in libical
(Milan Crha)
Bug 614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedly
(Milan Crha)
Bug 623593 - Cannot drag&drop attached messages from mails (Milan Crha)
Bug 635002 - Fix invalid use of .la file in contact-editor
(Pacho Ramos)
Bug 637091 - Crash in g_str_hash, task_shell_sidebar_client_removed
(Matthew Barnes)
Bug 640829 - Can drop text/plain message lines in message preview
(Milan Crha)
Bug 641343 - Cannot scroll to bottom of folder list while dragging
(Milan Crha)
Bug 641374 - "Send new mail to..." popup action doesn't work
(Milan Crha)
Bug 641456 - Crash in pst_process_appointment at pst-importer.c
(Milan Crha)
Bug 641805 - Clicking links in mail composer opens URL twice
(Milan Crha)
Bug 642093 - Frees message attachment content on Reply (Milan Crha)
Bug 642447 - Invalid reads while disabling groupwise account
(Milan Crha)
Bug 642954 - Doesn't commit/abort sequence on modification error
(Milan Crha)
Bug 643218 - Local delivery doesn't deliver after maildir migration
(Milan Crha)
Bug 643297 - multipart/related formatter skips the last part
(Milan Crha)
Bug 643402 - Fails to build with --disable-smime (Milan Crha)
Bug 643635 - Typo in the code from commit for bug #434972 (Milan Crha)
Bug 643693 - Crash opening attached text/html mail (Milan Crha)
Other Changes:
* Write state.ini immediately in EShellView::dispose method
(Milan Crha)
* Use G_SIGNAL_TYPE_STATIC_SCOPE for all GdkEvent signal params.
(Matthew Barnes)
* Fix incorrect use of ngettext from a patch for bug #635414
(Milan Crha)
* Slightly smaller dialogs for Reply type questions (but not all)
(Milan Crha)
* Let Esc behave like Cancel in Reply questions and do not leak
message (Milan Crha)
* Do not leak attachments in a mail view (Milan Crha)
* Merge duplicate local sources (Milan Crha)
* Do not flush Outbox when mail shell backend not started (Milan Crha)
* Construct attachment bars for correct message part ids (Milan Crha)
* Bump BASE_VERSION to 3.0. (Matthew Barnes)
Translations:
Daniel Mustieles (es)
Mattias Põldaru (et)
Bruno Brouard (fr)
Rudolfs Mazurs (lv)
Kjartan Maraas (nb)
Nguyễn Thái Ngọc Duy (vi)
Wei Li (zh_CN)
Chao-Hsiung Liao (zh_HK)
Evolution 2.91.90 2011-02-21
----------------------------
Bug Fixes:
Bug 639483 - Category list includes weather information (Milan Crha)
Bug 639043 - Alarm notify snooze time not properly adjustable (Chris Hemsing)
Bug 642121 - Won't build with --with-clutter due missing include (Dan Vrátil)
Bug 642566 - Picture Gallery, not Image Gallery (Matthew Barnes)
Bug 638307 - Error when sending mail after converting to maildir (Milan Crha)
Bug 642088 - Crash when changing advanced send options in GroupWise (Milan Crha)
Bug 638478 - During sending fails to parse X-Evolution-PostTo field (Milan Crha)
Bug 638391 - Always passing NULL to emu_addr_cancel_book() (Milan Crha)
Bug 638333 - Critical warning when invoking File->New->Mail Folder (Milan Crha)
Bug 640802 - [express] Message preview automatically switches to vertical view (Milan Crha)
Bug 255973 - Contact preview waste space and cosmetic correction (Dan Vrátil)
Bug 642171 - Implicit libgnome dependency for lockdown GConf keys (Matthew Barnes)
Bug 638057 - Evolution --express doesn't remember status bar setting (Milan Crha)
Bug 637924 - Shows duplicate sentence while click "Back-Sending" button (Gary Lin)
Bug 637923 - Wrap long text in Yahoo email setup (Frederic Crozat)
Bug 637727 - Sent/Draft folder not set in startup-wizard account (Milan Crha)
Bug 637493 - Fails to build with --enable-profiling configure option (Milan Crha)
Bug 636408 - Loss of data on removal of an IMAP folder with an asterisk (Milan Crha)
Bug 641502 - Flickering while resizing the mail list (Milan Crha)
Bug 641701 - Issues with pst-import plugin (Milan Crha)
Bug 641756 - Fix warnings from GCC 4.6 (Kjartan Maraas)
Bug 634571 - Check for 'mono-2' rather than 'mono' package (Milan Crha)
Bug 641451 - Crash in folder_selection_button_new (Bharath Acharya)
Bug 641011 - Ugly appointment editing windows (Milan Crha)
Bug 222423 - Support Face headers (Dan Vrátil)
Bug 640801 - Workaround gtk3 bug (Milan Crha)
Bug 635144 - Using external editor duplicates signature (Milan Crha)
Miscellaneous Fixes:
Order matters, process master object first, then detached instances (Milan Crha)
Slightly nicer EAlertDialog after move to gtk3 (Milan Crha)
Require libsoup-gnome-2.4 instead of libsoup-2.4. (Matthew Barnes)
Remove NULL checks for GObject methods. (Matthew Barnes)
Bump GTK+ requirement to 3.0. (Matthew Barnes)
Do not perform the summary consistency check on local folders, 'On this Computer' (Chenthill Palanisamy)
Composer: Add Edit -> Preferences (Matthew Barnes)
Fix cairo-gobject.h include path (Milan Crha)
Fix image dropping in composer while in HTML mode. (Matthew Barnes)
Translations:
Changwoo Ryu (ko)
Daniel Mustieles (es)
Ivar Smolin (et)
Petr Kovar (cs)
Jorge González (es)
Fran Diéguez (gl)
Xandru Armesto (ast)
Mario Blättermann (de)
Kjartan Maraas (nn)
Sweta Kothari ()
Evolution 2.91.6 2011-01-11
---------------------------
Bug Fixes:
Bug 640760 - New mail "stuck" if missing attachment dialog cancelled (Matthew Barnes)
Bug 640707 - Crash on 'Add to address book'->'Edit full' click (Milan Crha)
Bug 640706 - Can't edit filter/advance search condition (Milan Crha)
Bug 640704 - Replace GtkWindow::allow_shrink/grow with resizable (Milan Crha)
Bug 640536 - Warnings when adding a google account in express mode (Milan Crha)
Bug 640526 - Default column width in address card view is small (Matthew Barnes)
Bug 640522 - Set minimal height on Description fields in event editors (Milan Crha)
Bug 640516 - Information bar above folder list is empty (Milan Crha)
Bug 640517 - Runtime warnings when launching composer (Milan Crha)
Bug 640083 - Cannot configure LDAPS on port 636 (Matthew Barnes)
Bug 640025 - Silence debug output in spamassassin plugin (Matthew Barnes)
Bug 640091 - Improve error handling during send post-processing (Matthew Barnes)
Bug 634403 - Mails Label popup menu is not updated properly (Milan Crha)
Bug 604534 - Evolution "ignores" key-usage info in certificates (Milan Crha)
Bug 633982 - Crash when trying to Create a search folder from a search (Milan Crha)
Bug 633788 - Mail plugin's update-actions handler is never called (Milan Crha)
Bug 553438 - Deletes lines of a reply when changing address (Milan Crha)
Bug 600013 - Crash in mail_reader_message_loaded_cb (Milan Crha)
Bug 634305 - Crash on move of contacts between books (Milan Crha)
Bug 638087 - Crash at merging duplicate contact (Vibha Yadav)
Bug 638808 - camel_shutdown() called too early (Milan Crha)
Bug 593020 - Do not check Bcc in "Sender or Recipients" condition (Milan Crha)
Miscellaneous Fixes:
libchamplain-0.8 exists now. (Matthew Barnes)
gladeui is 2.0 now (Milan Crha)
Require the latest gtk+-3.0 release until 3.0. (Matthew Barnes)
No more "expose-event" on GtkWidget (Milan Crha)
Most (but not all) packing issues from Mail preferences (Milan Crha)
Do not oversize New and Send/Receive toolbar buttons (Milan Crha)
Adapt size_request vfuncs to latest gtk+-3.0 API. (Rodrigo Moya)
Adapt smclient to latest gtk+-3.0 API. (Kjartan Maraas)
Adapt gdk_window_get_geometry for gtk+-3.0 (Vibha Yadav)
Adapt to GtkComboBox class reorg. (Matthew Barnes)
Avoid using deprecated GTK_SELECTION_EXTENDED (Vibha Yadav)
Use latest gnome-desktop API (Rodrigo Moya)
gdk_cursor_unref() -> g_object_unref() (Matthew Barnes)
Dialogs no longer have separators. (Matthew Barnes)
Drop support for gtk+-2.0. (Matthew Barnes)
Adapt to Camel API changes. (Matthew Barnes)
mail: Use G_DEFINE_TYPE for EmFolderTreeModel (Benjamin Otte)
Use e_load_book_source_async() for all EBook loading. (Matthew Barnes)
Use e_source_selector_get_source_by_path(). (Matthew Barnes)
Fudge GtkScrollable for gtk2. (Matthew Barnes)
Fudge gtk_widget_get_preferred_size() for gtk2. (Matthew Barnes)
Do not hide maildir accounts from UI (Milan Crha)
GtkSelectionData is sealed in GTK3. (Matthew Barnes)
Translations:
Andrej Žnidaršič (sl)
Ivar Smolin (et)
Klemen Košir (sl)
Jorge González (es)
Fran Diéguez (gl)
Daniel Nylander (sv)
Daniel Mustieles (es)
Michael Kotsarinis (el)
Evolution 2.91.5 2010-01-10
---------------------------
Bug Fixes:
Bug 567879 - Add View >> Gallery Option In Email Composer (Milan Crha)
Bug 633854 - Crash in build_template_menus_recurse (Milan Crha)
Bug 637482 - Flushing outbox gives up on first error (Matthew Barnes)
Bug 637906 - Don't ask again when sending to non-mail recipients
(Milan Crha)
Bug 638245 - Crash when printing Work Week view (Milan Crha)
Other Changes:
* Disconnect signal handlers from actions in alert_dispose()
(Milan Crha)
* Temporarily remove GDK_DISABLE_DEPRECATED (again). (Matthew Barnes)
* Call setlocale() instead of gtk_set_locale(). (Matthew Barnes)
* Fix menu item capitalizaion. (Matthew Barnes)
* Add e_shell_submit_alert(). (Matthew Barnes)
* Fix wrong button name in Restore instructions (Andre Klapper)
* Fix all back up that should be backup (Andre Klapper)
* Improve wording of Maildir migration dialog. (Matthew Barnes)
* Avoid idle callbacks in EMailBackend initialization. (Matthew Barnes)
* Improve Maildir migration. (Matthew Barnes)
* EMFolderTree: Fully implement ESelectableInterface. (Matthew Barnes)
* EActionComboBox: Fix runtime warnings with GTK3. (Matthew Barnes)
* EAttachmentIconView: Fix runtime warnings with GTK3. (Matthew Barnes)