-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathNEWS
More file actions
17841 lines (16156 loc) · 822 KB
/
NEWS
File metadata and controls
17841 lines (16156 loc) · 822 KB
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.59.3 2026-02-27
---------------------------
Bug Fixes:
I#3238 - Calendar: Year view shows incorrect week number
I#3250 - One day events show misleding End Date in List view
I#3254 - Mail: Handle media CSS rules properly in "unset HTML colors"
Miscellaneous:
EDateEdit: Postpone fill of time combo until the widget is mapped
Use GHashTable's `replace()` instead of `insert()` on some places
mail-config-assistant: Skip "rss" Camel provider
itip-formatter: Correct time range for the "day agenda" column
Increase default connection timeout to 30 seconds
Check for libicalvcal pkgconfig file (for libical 4.x)
Translations:
Alan Mortensen (da)
Anders Jonsson (sv)
Александр Вахрамеев (ru)
Jordi Mas (ca)
Juliano de Souza Camargo (pt_BR)
twlvnn kraftwerk (bg)
Yuri Chornoivan (uk)
Evolution 3.59.2 2026-01-30
---------------------------
Bug Fixes:
I#519 - Hides .p7m attachments
I#3189 - e-cal-ops: Fallback to default list if selected list is read-only (Adithya)
I#3201 - Add “Mark as read” action to new mail-notifications (shivam)
I#3219 - Mail: Crash with invalid UTF-8 folder name
I#3227 - Mail: Reply with selected text can preserve also original body
I#3233 - Mail: Add "Copy Message Link" action
eds-I#617 - Calendar: Prepare to support build with libical 4.x
Miscellaneous:
EMailReader: Update actions also after message is parsed
Remove ESourceConflictSearch (moved to evolution-data-server)
e-vcard-editor: Skip stored empty values
Calendar: Component preview panel does not modify DATE value of DTEND
Translations:
Asier Saratsua Garmendia (eu)
Aurimas Aurimas Černius (lt)
Александр Вахрамеев (ru)
Ekaterine Papava (ka)
Juliano de Souza Camargo (pt_BR)
Martin (sl)
Yuri Chornoivan (uk)
Evolution 3.59.1 2026-01-02
---------------------------
Bug Fixes:
I#3144 - Subject not decrypted in GPG encrypted mail
I#3148 - EWebView: Draw symbolic icons with theme foreground color
I#3150 - Missing "search type" drop-down menu on Calendar window
I#3162 - Custom icon and text color for Search Folders lost on renaming
I#3164 - mail-vfolder: Correct and speed up setup and update of search folders
I#3169 - Renaming a mail folder resets its "Current View"
I#3172 - Crash when copying multiple lines from “Markdown as HTML” composer
I#3178 - Vendor autoar-gtk-chooser.c from gnome-autoar (Corentin Noël)
M!200 - shell: Connect the shell window delete-event handler using _after (gkatev)
M!201 - Fix an 'addres' typo (Bruce Cowan)
M!205 - metainfo: Add keywords to improve discoverability (Jean-François Fortin Tam)
M!206 - appearance-settings: Use the Settings portal to use the dark style (Corentin Noël)
eds-I#8 - Adapt to libebook API changes and added vCard 4.0 support
eds-I#554 - CalDAV: Provide a date limit for information sync
eds-I#614 - CamelSearchFolder: Add "not_all" "match-threads" kind
Miscellaneous:
help: Replace some dead GNOME wiki URIs with GitLab URIs (Andre Klapper)
Lower default connection timeout to 15 seconds
Adapt to libcamel API removals
shell: Make "Close Immediately" question button "destructive"
cal-config-caldav: Correct when showing limit-download-days option
Composer: Broken letters with reopened message in other than UTF-8 charset
data: Round down icon height of evolution-symbolic.svg
EStockRequest: Remove leftover code
Mail: Import preview panel can generate runtime warning
e-util: Check for non-NULL GError in e_show_uri()
mail-vfolder: Remove unneeded runtime warning
EContactEditor: Prefer vCard "take" functions
Calendar: Allow to use GNOME system setting for "week start day"
shell: Fix a crash on start when app initialization fails
flatpak: Add gettext ACLOCAL workaround
e-contact-quick-add: Remove unused code
EContactMapWindow: Use book view to get contacts and their changes
EABEditor: Remove unneeded signals
EContactEditor: Change how required and supported fields are read
EABEditor: Remove unused functions and rename eab_editor_closed()
Contacts: Add a new vCard editor
EABContactFormatter: Show "GEO Location" and "Time zone" attributes
Translations:
Aefgh Threenine (th)
Anders Jonsson (sv)
Asier Saratsua Garmendia (eu)
Aurimas Černius (lt)
Вячеслав Гурин (ru)
Bruce Cowan (en_GB)
Cheng-Chia Tseng (zh_TW)
Daniel Rusek (cs)
Ekaterine Papava (ka)
Emin Tufan Çetin (tr)
James Kerrane (es)
Jordi Mas (ca)
Juliano de Souza Camargo (pt_BR)
Martin (sl)
Quentin PAGÈS (oc)
Sabri Ünal (tr)
twlvnn kraftwerk (bg)
Yuri Chornoivan (uk)
Evolution 3.58.0 2025-09-12
---------------------------
Bug Fixes:
I#2972 - Partially quoting HTML email drops embedded pictures
I#2982 - itip-formatter: Show attendee mail according to user preference
I#3127 - EWebView: Set "unicode-bidi" style only in Evolution's iframe-s
Miscellaneous:
test-web-view-jsc: Correct JavaScript dictionary object creation (WebKitGTK 2.49.4)
Translations:
Balázs Úr (hu)
Daniel Rusek (cs)
Jordi Mas (ca)
Leônidas Araújo (pt_BR)
Quentin PAGÈS (oc)
Evolution 3.57.3 2025-08-29
---------------------------
Bug Fixes:
I#3016 - Zoom email editor
I#3082 - MessageList: Ellipsize column 'Location' in the middle
I#3120 - EDateEdit: Allocate entry width based on shown characters
I#3123 - Crash after saving advanced search
I#3124 - JavaScript: Correct dictionary objects creation (WebKitGTK 2.49.4)
Miscellaneous:
EMailReader: Changes in "show-all-headers" not properly propagated
Mail: Correct action group name in send_receive_menu_service_removed_cb()
Revert "M!196 - Remove ESimpleAsyncResult completely"
Translations:
Anders Jonsson (sv)
Asier Saratsua Garmendia (eu)
Jordi Mas (ca)
Juliano de Souza Camargo (pt_BR)
Olesya Gerasimenko (ru)
Piotr Drąg (pl)
Quentin PAGÈS (oc)
Vyacheslav Gurin (ru)
Evolution 3.57.2 2025-08-01
---------------------------
Bug Fixes:
I#3088 - Mail Folders in Dark Blue Colour have low Contrast in Dark Mode
I#3094 - text-highlight: Use dark style for dark theme
I#3099 - Mail: Add "Go to Containing Folder" action in search folders
M!196 - Use GTask instead of ESimpleAsyncResult (Corentin Noël)
M!198 - data: Rename appdata to metainfo (AsciiWolf)
M!198 - data: Change component type to "desktop-application" (AsciiWolf)
Miscellaneous:
Adapt to libcamel API changes
Mail: 'Ignore thread' does not find thread messages
rss: Set base URI also for complete articles
EHTTPRequest: Add more debug prints
Translations:
Álvaro Burns (pt_BR)
Ekaterine Papava (ka)
Emin Tufan Çetin (tr)
Martin (sl)
Yuri Chornoivan (uk)
Evolution 3.57.1 2025-06-27
---------------------------
Bug Fixes:
I#1441 - itip-formatter: Limit "meeting existence" lookup scope
I#2911 - Mail: Magic Spacebar sometimes doesn't switch mail
I#2950 - itip-formatter: Preview calendars' content around the event time
I#2953 - Change folder color when new messages are added
I#2987 - Remove Attachments fails with signed messages
I#2999 - Change some strings in EUICustomizeDialog
I#3000 - Typo in quota string
I#3019 - ECompEditor: Buttons to add attachments do nothing
I#3022 - "New->..." actions missing in UI customization dialog
I#3023 - Fix a typo in gsettings key description
I#3026 - Composer: Prompt for "send with shortcut" doesn't work
I#3030 - Calendar: Change organizer in 'Edit as New'
I#3037 - ToDoPane: Listen for changes in date/time format
I#3039 - e-convert.js: Exception on convert to plain text
I#3041 - For shared tasks the iTIP formatter does not show the organizer
I#3042 - Check return value of CamelDataWrapper calculate size functions
I#3045 - Cannot add actions in 'Customize User Interface' dialog
I#3046 - Some images do not display within RSS/ATOM feed articles
I#3052 - Ensure "New" button action in Calendar view
I#3056 - Copyright years outdated in "About"
I#3059 - Open a new window: Two windows open instead of one
I#3061 - Mail: Do not strip signature for Edit as New in Sent folder
I#3071 - EShellWindow: Unset minimum height for evo-titlebar-box
I#3072 - EHeaderbarButton: Toggle action not using toggle button
I#3073 - Compose: Can't resized to half screen when From address is too long
I#3075 - EAttachment: Notify about property changes only in the main thread
I#3079 - Mail: Incorrect calls to change search options
I#3080 - Crash on composer open (WebKitGTK without DRAG_SUPPORT)
M!182 - Replace deprecated webkit function (Corentin Noël)
M!183 - Replace GdkColor with GdkRGBA (Corentin Noël)
M!184 - Replace padding properties with margin (Corentin Noël)
M!187 - ECalendar: Remove unused methods (Corentin Noël)
M!190 - mail: Remove EMailFolderPane (Corentin Noël)
M!192 - ETableHeaderItem: Use GtkImage from resource directly (Corentin Noël)
M!193 - Remove unused functions (Corentin Noël)
Miscellaneous:
e-unicode: Replace e_unicode_get_utf8() with the same function from libedataserver
build: Make libnotify dependency more prominent
EImportAssistant: Correct typos in GLabel property names
EImportAssistant: Default to import single file
itip-formatter: Skip search for conflicts when not start nor end time is set
EPreferencesWindow: Check for duplicate pages
ToDoPane: Update day labels on date/time format change
ECalSourceConfig: Cannot change calendar color
Misc: Rename string<->color helper binding functions
Calendar: Cannot show/hide Tasks and Memos pane
Calendar: Year and List views: Hide mini-calendar container
Mail: Avoid message list double regeneration on folder change
EStockRequest: Use symbolic icons if preferred and available
Mail: Use insert-image for "Load Images" and remote content icon in the WebView
Adapt to Camel API changes
shell: Add migration progress for new folders.db format
Reference CamelProvider struct members by name in initialization
mail-folder-cache: Use CamelWeakRefGroup for updates
Adapt to more libcamel API changes
rss: Remove extra camel_pstring_free() call
EWebView: Do not set `media-playback-allows-inline` WebKitSetting property
EMailDisplay: Update "Load Remote Content" preview button also after the mail is loaded
Translations:
Álvaro Burns (pt_BR)
Asier Saratsua Garmendia (eu)
Balázs Meskó (hu)
Boyuan Yang (zh_CN)
Daniel Rusek (cs)
Ekaterine Papava (ka)
Emin Tufan Çetin (tr)
Jordi Mas i Hernandez (ca)
Martin (sl)
Mathis Joussemet (fr)
Yuri Chornoivan (uk)
純 小山田 (ja)
Evolution 3.56.0 2025-03-14
---------------------------
Bug Fixes:
I#2947 - Workaround shown menu icons when should not be
I#2989 - Crash on quit of the app
I#2991 - mail: Add .mbox extension to dragged email files (Ahmed Fatthi)
I#2998 - Tasks: Compare DUE date in local time zone, not the property's zone
I#3001 - ECalShellView: Add a translator comment for an ambiguous string
I#3002 - Forwarding from Unified Inbox picks wrong From account
I#3003 - Task bar in Calendar view is not sufficiently updated
I#3004 - Month View: Sometimes not fully populated
I#3006 - Mark Folder as read works not longer on subfolders
Miscellaneous:
EWeekView: Scroll by shown weeks when scrolling by month
templates: Fix a circular dependency between structures
e-mail-shell-view-actions: Fix a memory leak
prefer-plain: Fix a ref/unref imbalance on an EUIActionGroup object
Translations:
Anders Jonsson (sv)
Álvaro Burns (pt_BR)
Balázs Úr (hu)
Jean-Marc Tissières (fr)
Jordi Mas (ca)
Piotr Drąg (pl)
Sabri Ünal (tr)
Evolution 3.55.3 2025-02-28
---------------------------
Bug Fixes:
I#2970 - EImportAssistant: Keep the preview widget expanded (Corentin Noël)
I#2971 - Add option to use bigger text for time in the "To Do" pane
I#2973 - itip-formatter: State status of found appointment in email
I#2975 - MessageList: Use GTask instead of RegenData to keep track of current task (Corentin Noël)
I#2984 - EMailLabelTreeView: Label colors not shown with symbolic icons
I#2986 - Switcher appearance resets to "Icons and Text" after restart
I#2992 - Entering number in search bar colours selected message
I#2993 - Composer: Middle-click paste misplaced with changed font scaling
I#2996 - ETree: Expander triangle is reversed
M!179 - Use GdkDisplay instead of GdkScreen when possible (Corentin Noël)
M!188 - EUIManager: Do not do direct comparison with GVariantType (Corentin Noël)
M!189 - e-util: Remove GalA11yETableFactory and GalA11yETreeFactory (Corentin Noël)
Miscellaneous:
EWebKitEditor: Correct GObject property type on read
text-highlight: Update 'highlight' arguments
Composer: Do not add extra empty lines at the end of the plain text
help: Add missing help files into the build script
Translations:
Ekaterine Papava (ka)
Jiri Eischmann (cs)
Martin (sl)
Vincent Chatelain (fr)
Yuri Chornoivan (uk)
Evolution 3.55.2 2025-01-31
---------------------------
Bug Fixes:
I#2384 - Mail: Show inline images with 'name' as attachments
I#2829 - Apply changes in attachment properties popover with Enter (Vishruth-Thimmaiah)
I#2926 - Change default button in delete confirmation dialog
I#2932 - S/MIME: Backup certificate with stronger/better algorithm
I#2938 - Expose the "Bulk Edit..." in the contextual menu
I#2941 - mail-autoconfig: Use real user e-mail in the request
I#2943 - ETableSortInfo: Have a strong reference on the ETableSpecification
I#2948 - Mail: "To Do" bar is always shown after restart
I#2952 - Mail: Allow save of a message attachment to a mail folder
M!153 - mail-dialogs: Use GtkGrid instead of GtkTable (Corentin Noël)
M!155 - canvas: Actually subclass GInitiallyUnowned (Corentin Noël)
M!156 - libgnomecanvas: Remove gnome-canvas-i18n.h (Corentin Noël)
M!157 - Replace all occurences of gtk_icon_info_free (Corentin Noël)
M!158 - EMeetingTimeSelector: Subclass GtkGrid (Corentin Noël)
M!158 - EMeetingTimeSelector: Use a GtkGrid for the time selector (Corentin Noël)
M!159 - EComposerHeaderTable: Make it a GtkGrid subclass (Corentin Noël)
M!159 - EContactEditor: Use GtkGrid instead of GtkTable (Corentin Noël)
M!159 - EContactQuickAdd: Use GtkGrid instead of GtkTable (Corentin Noël)
M!161 - Remove ESendOptionsDialog (Corentin Noël)
M!162 - ETableConfig: Use GtkComboboxText directly (Corentin Noël)
M!163 - Use GtkGrid instead of GtkTable (Corentin Noël)
M!164 - Require GLib 2.70 (Corentin Noël)
M!165 - Get rid of GtkAlignment in the code (Corentin Noël)
M!166 - EAlphabetBox: Base the widget on GtkListBox (Corentin Noël)
M!167 - Replace GtkArrow with images (Corentin Noël)
M!169 - Remove e_util_check_gtk_bindings_in_key_press_event_cb (Corentin Noël)
M!170 - Remove the use of gtk_scrolled_window_add_with_viewport (Corentin Noël)
M!172 - EWeekdayChooser: Switch to native GTK widgets (Corentin Noël)
M!173 - Replace g_memdup with g_memdup2 (Corentin Noël)
M!174 - Do not use GTimeVal (Corentin Noël)
M!175 - Avoid the use of g_binding_get_source/target (Corentin Noël)
M!176 - Replace gtk_combo_box_set_focus_on_click with gtk_widget_set_focus_on_click (Corentin Noël)
M!178 - Use webkit_settings_font_size_to_pixels to set font size (Corentin Noël)
M!181 - Remove calendar/gui/misc.c|.h (Corentin Noël)
ews-I#295 - itip-formatter: Import of forwarded meeting as bare event
Miscellaneous:
ETaskTable: Use "stock_check-filled-symbolic" icon name
EAddressbookView: Context menu could be shown twice in the Minicard view
Switcher button icon does not change when action's icon name changes
EShellView: Do not process accels when search entry is focused
Preview layout setting does not stick after app restart
Remove e-reflow and e-reflow-model (Corentin Noël)
EAttachmentBar: Verify 'possible_attachments" is non-NULL before using it
Replace margin-left/right with margin-start/end (Corentin Noël)
e-misc-utils: Remove unused e_util_stop_signal_emission_cb()
Use gtk_show_uri_on_window instead of gtk_show_uri (Corentin Noël)
EShellSwitcher: Cannot create a new window by a switcher button press
docs: Remove index references for versions not in the code any more
Translations:
Anders Jonsson (sv)
Boyuan Yang (zh_CN)
Ekaterine Papava (ka)
Martin (sl)
Quentin PAGÈS (oc)
Yuri Chornoivan (uk)
Evolution 3.55.1 2025-01-03
---------------------------
* Evolution replaced deprecated GtkUIManager with its own EUIManager and related
structures. Some API changed too. Plugins/modules should be ported accordingly.
Bug Fixes:
I#2803 - Mail: Add a 'Correspondents' column to the message list
I#2834 - Account Editor: Disable Refresh button for disabled accounts (Дилян Палаузов)
I#2843 - ToDo bar meeting deletion differs from Calendar view
I#2856 - publish-calendar: Settings UI does not resize with window
I#2878 - Missing sender's S/MIME certificate import button
I#2882 - shell: Increase default window size to 1440x900 (Jordan Petridis)
I#2886 - Composer: Possible crash on paste
I#2890 - icons: stock_check-filled is dark in the dark theme
I#2891 - Calendar: Current view menu not always updated
I#2892 - e-html-editor: Check EColorCombo::default-color before using it
I#2893 - prefer-plain: Reword plugin description (Дилян Палаузов)
I#2895 - "Matches" needs clarification
I#2897 - Correct certificate key usage constants
I#2902 - ToDo bar sometimes does not display due tasks
I#2905 - Autocrypt header uses wrong email address
I#2907 - Ctrl+C does not Copy from the Mail preview
I#2910 - Display absolute account quota usage / total
M!138 - help: Mention Collection accounts, RSS feeds, the Evolution Accounts (Дилян Палаузов)
M!141 - message-list: Access RegenData from GTask task_data (Corentin Noël)
M!143 - cal-config-caldav: request checks for DAV:calendar-auto-schedule (Дилян Палаузов)
M!144 - ECalSourceConfig: Read-only calendars cannot be default (Дилян Палаузов)
M!147 - Set project-wide emacs formatting rules (Дилян Палаузов)
M!148 - help: Add CardDAV address book documentation (Дилян Палаузов)
M!151 - e-datetime-format: Port from GtkTable to GtkGrid (Corentin Noël)
M!152 - Allow customization of the menus, toolbars and shortcuts in the GUI
eds-I#570 - Adapt to libical icalrecurrencetype changes
Miscellaneous:
HTMLEditorLinkPopover: Change button label to not clash on mnemonic
build: Update CMake uninstall file
libgnomecanvas: Add few checks for argument validity
Port to GTask from GSimpleAsyncResult (Corentin Noël)
WebKitGTK 2.46.1: Middle mouse button inserts primary clipboard twice
iconv-detect: Fix a memory leak detected by Coverity Scan
e-cell-size.c: typo (Дилян Палаузов)
webkit-editor: Middle mouse button double-click pastes text twice
Guard most of the g_file_info_get_...() calls with checks for attribute existence
Default inbox email: Update URIs, remove link to defunct mailing list (Andre Klapper)
Mail: Fix 'Send/Receive' button on the toolbar/headerbar
strings: harmonize drag-and-drop spelling (Alexandre Franke)
e-color-combo: Correct GObject property get/set type for the 'palette' property
Sidebar is one word (Дилян Палаузов)
Replace GtkMisc with GtkLabel.x/yalign (Corentin Noël)
EActionComboBox: User change not always notified to the listeners
message-list: Avoid possible use of an uninitialized variable
ESourceSelector: Source child drawn in too thin font
mail-notification: Fix switch to the 'mail' view
help: Clarifications on Calendar Publishing (Дилян Палаузов)
help: Update wiki.gnome.org hyperlinks (Дилян Палаузов)
help: Sidebar is one word (Дилян Палаузов)
help: Update a Wikipedia URI anchor (Andre Klapper)
Translations:
Alexandre Franke (fr)
Andika Triwidada (id)
Daniel Rusek (cs)
Ekaterine Papava (ka)
Jean-Marc Tissières (fr)
Juliano de Souza Camargo (pt_BR)
Jürgen Benvenuti (de)
Martin (sl)
Милош Поповић (sr)
Piotr Drąg (pl)
Robin Mehdee (bn)
Yuri Chornoivan (uk)
Evolution 3.54.0 2024-09-13
---------------------------
Bug Fixes:
I#2840 - Calendar: Correct typos "Sent Notice" -> "Send Notice"
I#2845 - Typo in code eab-contact
I#2846 - Calendar: Correct typo in error message id
M!137 - Set prgname to application ID (Balló György)
Miscellaneous:
docs: Correct developer documentation to install API indexes
CI: Export also developer documentation into the web pages
Translations:
Alan Mortensen (da)
Anders Jonsson (sv)
Balázs Úr (hu)
Emin Tufan Çetin (tr)
Jürgen Benvenuti (de)
Martin (sl)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution 3.53.3 2024-08-30
---------------------------
Bug Fixes:
I#2818 - Permit only one instance of “Evolution Accounts” window
I#2823 - Translations of the concepts "email" and "raw email" are difficult for users
I#2824 - Mail: junk-test not called since I#2780
I#2838 - Translations in WebExtension do not work
M!136 - Calendar: Fix gettext format problems (Anders Jonsson)
Miscellaneous:
help: Open the latest help web pages when help not available locally
Translations:
Asier Sarasua Garmendia (eu)
Balázs Úr (hu)
Boyuan Yang (zh_CN)
Bruce Cowan (en_GB)
Ekaterine Papava (ka)
Haolin Xue (zh_CN)
Martin (sl)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution 3.53.2 2024-08-02
---------------------------
Bug Fixes:
I#1866 - Ability to identify which domain a blocked remote image is related to
I#1909 - Support custom icon and text color also for Search Folders
I#1940 - Remove multiple CC warning if they are sharing common domain
I#2292 - Allow internal anchor links in HTML mail composer
I#2529 - Tooltips in Month view not always shown
I#2780 - Enhance "junk-test" to return also "inconclusive" value
I#2790 - "Thread by Subject" option not propagated to Search Folders
I#2794 - Mail: Print to File keeps previous file name
I#2795 - Tooltips only sometimes displayed in Task and Memos Pane
I#2797 - Outgoing filter: Source account condition never succeeds
I#2798 - MessageList: Parents of collapsed threads do not show labels properly
I#2799 - itip-formatter: Use open-map: link for the Location field
I#2805 - Mark for Follow Up dialog ignores date format setting
I#2808 - publish-calendar: Fails to mount destination directory
Miscellaneous:
CI: Update OpenLDAP version
CI: Update dependencies in the Flatpak manifest
CI: Add language switcher into the generated help/ pages
flaptak: Update dependencies in the build strict for the development version
EWebView: Just loaded remote images may be left invisible
EToDoPane: Robust open of a calendar client
Calendar: Correct indent of some options in the Preferences
help: Mention the Switcher buttons appearance can be changed in the menu
Translations:
Anders Jonsson (sv)
Boyuan Yang (zh_CN)
Daniel Șerbănescu (ro)
Ekaterine Papava (ka)
Jürgen Benvenuti (de)
Martin (sl)
Yuri Chornoivan (uk)
Evolution 3.53.1 2024-06-28
---------------------------
Bug Fixes:
I#1997 - Evolution imports some .eml files incorrectly
I#2006 - Calendar: Changing start date does not offer saving immediately
I#2230 - Configurable timeout for WebDAV sources
I#2266 - Ability to use a different Markdown-to-HTML converter
I#2273 - Speed up startup - lots of local folders
I#2276 - "Edit as new message" fails for encrypted mails
I#2283 - Calendar: Add option to disable drag&drop of the events
I#2287 - Paste screenshot from clipboard in Mail composer
I#2308 - Language for replies and forwards is not respected by "Inline (Outlook style)" reply style
I#2365 - Composer: Wrap search by default
I#2371 - Composer: Added extra quotation level after draft open ][
I#2384 - Mail: Show inline images with 'name' as attachments
I#2404 - Calendar: Hide well-known read-only source from import dialog
I#2411 - Composer: Text out of <div> can break Undo
I#2449 - Calendar: Remember "Send my reminders with this event" value
I#2617 - Wrong weeks in Month view when returning from different page of dates
I#2660 - Ability to duplicate a mail filtering rule to create a new one
I#2669 - Wrong error message on restoring backup when 'tar' is absent
I#2674 - Add option to attach multiple messages as separate files
I#2683 - Open mbox files instead of import
I#2687 - Calendar: Allow entering cancellation reason on meeting deletion
I#2693 - Mail: Prefer saving original message instead of re-encode
I#2696 - Mail: Add possibility to add multiple Labels at once
I#2697 - Add option to set folder to restore Not-Junk messages to
I#2698 - ESourceSelector: Emit source-select/unselect on source change
I#2707 - Calendar: Fails to open event from alarm-notify on app start
I#2709 - Possible crash when exiting application
I#2710 - EHeaderBar: Report correct minimum width
I#2711 - Subject line in message pane not bold anymore in Wide view
I#2712 - Crash when hiding completed tasks
I#2720 - Correct service detection by domain name (Peter Simonyi)
I#2722 - EMailBrowser: Hide Print preview menu option
I#2739 - Mail: Remember Page Setup settings when printing
I#2744 - Shell: Enhance symbolic icons usage detection
I#2749 - Crash when recovering mail from the previous session
I#2751 - Open last view when restarting Evolution
I#2753 - SignatureEditor: Format change can discard signature text
I#2754 - SignatureEditor: Let gtk+ decide default window width
I#2758 - Forwarded e-mails don't have a filename extension
I#2761 - Composer: Crash when opening spellcheck dialog
I#2773 - Unable to drag'n'drop attachments between attachment bars
I#2778 - Crash under gtk_clutter_init_internal()
Miscellaneous:
data: Fix circular-component-relation in .appdata file
org.gnome.evolution.mail.gschema.xml: Fix a typo in a translatable string
e-mail-request: Fix a memory leak
shell: Closing last window does not always run "prepare-for-quit"
EShellWindow: Remove unused private variable
Misc: Replace XPM images with SVG images
e-task-table: Store deletion reason into COMMENT property
docs: Fix a 404 API reference docs URI (Andre Klapper)
Update online_help_url URI (Andre Klapper)
Appdata: Link to GitLab Issues instead of New Issue URL (Andre Klapper)
EAttachment: Check file_info contains display-name before accessing it
CI: Workaround broken git clone for libcanberra
help: Link to GitLab Issues instead of New Issue URL (Andre Klapper)
Translations:
Anders Jonsson (sv)
Andika Triwidada (id)
Athmane MOKRAOUI (kab)
Aurimas Černius (lt)
Boyuan Yang (zh_CN)
Ekaterine Papava (ka)
Fabio Tomat (fur)
Jordi Mas i Hernandez (ca)
Martin (sl)
Милош Поповић (sr)
Милош Поповић (sr@latin)
Olga Smirnova (ie)
Piotr Drąg (pl)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution 3.52.0 2024-03-15
---------------------------
Bug Fixes:
I#2632 - Workaround excessive memory use
I#2672 - Calendar: Prefer html/markdown description in preview
I#2691 - Incorrect/missing URLs in app metadata
Miscellaneous:
main.c: Fix unused variable when in non-development build
SetupBuildFlags.cmake: Remove "-Wl,--no-undefined" from compiler flags
ci: Create top 'pages' index.html page
Plugins' .xml.in: Update homepage URI from GNOME wiki to GNOME GitLab (Andre Klapper)
Translations:
Alan Mortensen (da)
Anders Jonsson (sv)
Artur S0 (ru)
Balázs Úr (hu)
Bruce Cowan (en_GB)
Daniel Mustieles (es)
Daniel Rusek (cs)
Emin Tufan Çetin (tr)
Jean-Marc Tissières (fr)
Martin (sl)
Rūdolfs Mazurs (lv)
Evolution 3.51.3 2024-03-01
---------------------------
Bug Fixes:
I#2627 - Skip message Note part in "Edit as New Message"
I#2657 - Composer: Option to prefer local datetime in reply credits
I#2659 - Composer: Preserve whitespace in text/plain drafts
I#2661 - Unclear licensing in some places
I#2663 - Composer: Try to parse pasted addresses with ';' better
I#2664 - itip-view: Prefer user's choice for 24h time format
I#2665 - Tasks: Add Status=Needs Action filter option (Nico Rikken)
I#2670 - Pasting into composer address box can lose spaces
I#2675 - Support webcals: URI
I#2677 - ESourceConfig: Window width always increases on Type change in Wayland
I#2679 - Remove old stock icons from table and cell Properties dialogs
I#2680 - Mail: Add 'From' header to default Free Form Expression
I#2685 - Composer: Drop extra font-size in elems of paste in HTML
eds-I#522 - build: Make sure tests run in serial
Miscellaneous:
Replace G_TYPE_INSTANCE_GET_PRIVATE() with G_ADD_PRIVATE()
plugin_ui_hook_finalize: Chain up to the finalize() method
Composer: Stop message send when retrieve of the content failed
Composer: Hint places for folding in Autocrypt header
Composer: Change "Remove Key" to "Send without Key" in Autocrypt question
ci: Export the help with Gitlab Pages (Corentin Noël)
itip-formatter: Show "Unable to send item..." errors with error icon
Calendar: Remove support for E_CAL_STATIC_CAPABILITY_RETRACT_SUPPORTED
Calendar: Meeting deletion can sometimes send duplicate cancel messages
appdata: Add <branding/> colors
Translations:
Asier Sarasua Garmendia (eu)
Ekaterine Papava (ka)
Juliano de Souza Camargo (pt_BR)
Jürgen Benvenuti (de)
Kukuh Syafaat (id)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution 3.51.2 2024-02-09
---------------------------
Bug Fixes:
I#2607 - Mail: Add 'Mark Task as complete' in To Do bar
I#2628 - Update shortcuts window
I#2637 - Calendar: Arrows should move by a whole month
I#2640 - EPasswords: Fallback to use app's active window as its parent
I#2646 - rss: Build common code as a shared private library
I#2647 - misc: Get mouse cursor image by name
I#2652 - rss: Incorrect decode of quoted-printable-like texts
I#2653 - rss: Invalid default article date
I#2654 - Markdown Editor: Use font as set in Evolution
M!127 - Port to GTask (Corentin Noël)
M!128 - GLibTools: Automatically get the dependencies of a GResource (Corentin Noël)
Miscellaneous:
build: Don't set CFLAGS returned by pkg-config as CMAKE_REQUIRED_FLAGS
build: Bump CMake version requirement to 3.15
build: align glib_encoded_version with the version requirements (Corentin Noël)
EContactEditor: Explicitly set horizontal/vertical expand/fill for tab content
e-shell: Describe --force-shutdown option as closing also background processes
Composer: Ask before sending mail with an Autocrypt header
Translations:
Christian Kirbach (de)
Ekaterine Papava (ka)
Juliano de Souza Camargo (pt_BR)
Kukuh Syafaat (id)
Martin (sl)
Pavel Koulikov (ru)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution 3.51.1 2024-01-05
---------------------------
Bug Fixes:
I#935 - Mail: Preview message body in the message list
I#991 - Add Confirmations tab into Mail Preferences
I#1078 - Allow bulk edit of Tasks
I#1091 - Allow creating event attachments of type URI
I#1116 - Make attachment bar resizable in mail preview
I#1234 - Add "Unset Label" action in filter rules
I#1363 - Calendar: Show attachments of the component in preview panel
I#1384 - Links added in HTML mail composer get removed in plain text part
I#1411 - WebDAV Editor: Allow set no color for calendar
I#1436 - Mail: Correct conversion of UTF-16 encoded text files
I#1490 - Contacts: Allow to use local app for "open-map:" URIs
I#1493 - Support Mail-Followup-To and Mail-Reply-To headers
I#1515 - EAlertBar: Add a button to close all errors at once
I#1608 - ConfigLookup: Default to STARTTLS for LDAP from SRV records
I#1619 - Batch modification of multiple contacts
I#1626 - Register Evolution as handler for ldap:// and ldaps:// URIs
I#1643 - Importers: Do not read whole file into memory
I#1683 - Composer: Use popover for Link Properties
I#1694 - EClientSelection: Disallow drop into a read-only client
I#1725 - Mail: Allow explicit MIME Type set for script signatures
I#1738 - Calendar: Change Open/Delete context menu option labels
I#1753 - Mail: Use Ctrl+Alt+F for Forward, Ctrl+F to search for messages
I#1768 - Add to the Task/iTIP preview the GEO property
I#1825 - Composer: Add list of addresses/domains accepting HTML messages
I#1838 - Mail: Ask for private reply only if recipients differ
I#1842 - Add option to show reminder before every event in calendar
I#1844 - Calendar: Cannot copy, only move, events in the Day View by drag&drop
I#1864 - Mail: Prevent accidental header sort clicks
I#1865 - HTML signatures lose formatting in "Markdown to HTML" emails
I#1933 - Mail: Show filter rule for Saved Search
I#1943 - Mail: Include a filtering searchbar in folder select dialog
I#2515 - Names of GPG key trust levels are not clear
I#2526 - EWebView: Enable spell checking for editable fields
I#2533 - Make SRV config lookup records lower priority than the others
I#2535 - Calendar: "Work Week" column separator light in dark theme
I#2539 - Decode URIs for text/plain link references comparison
I#2544 - Add option to use icon-only buttons in the header bar
I#2546 - OpenPGP: "Always sign/encrypt" doesn't always work (nkr)
I#2550 - EAttachment: Ask for GFileInfo's icon only when attribute is set
I#2551 - Mail: Subject header not decoded with encrypted messages
I#2552 - On empty mailbox new mail is automaticly selected and marked read
I#2553 - Composer: Mnemonic clash for 'From' and 'Options'
I#2556 - Contact avatar large image size warning is too strict
I#2557 - Contacts: Update preview on contact change in List View
I#2569 - Mail: Search with "current folder and subfolders" in local Trash fails
I#2570 - "Do not sign meeting requests" has no effect
I#2580 - ContactEditor: Default to "Mobile phone" instead of "Home phone"
I#2593 - Calendar: Improve print of the Month view
I#2595 - HAVE_GNU_GET_LIBC_VERSION CMake check always fails
I#2599 - mail-autoconfig: Check MX (mail exchanger) records, instead of NS (nameserver)
I#2604 - rss: Better parse itunes feeds
I#2608 - Drag and drop images in HTML composer from Chrome
I#2609 - S/MIME error message - part of string not localized
I#2613 - EMFolderTree: Do not expand to-be-selected folder
M!123 - EWebDAVBrowser: Render specially Scheduling Inbox and Scheduling Outbox (Дилян Палаузов)
eds-I#494 - Update default calendar colors
Miscellaneous:
shell: Move from gtk_main() to g_application_run()
flatpak: Add missing comma in the manifests
EBulkEditTasks: Edit Categories as diff of added/removed categories
EContactCard: Card sometimes hides values
Fix a memory leak in ECompEditor
evolution-util-docs: Remove API index for 2.24 symbols, none exist anymore
build: Use -Wshadow build option, if available
Calendar: Go to day/today in Year View doesn't update internal view dates
Update Flatpak manifests
e-bulk-edit-contacts: Initialize 'section_grid' variable
data: Update appdata (Sabri Ünal)
EHTMLEditor: Let emoji chooser point to the caret in the message body
EYearView: Fix a crash when moving through search results
EShell: Emit "ready-to-start" event after modules and preferences window is ready
Composer: Use link references only when composing HTML message
rss: Ensure feed icon size to not be too large
Mail: Skip disabled accounts for File->Download messages for offline use
EMailBackend: Fallback to CamelOperation message when showing error
Add x-scheme-handler/mid into the .desktop file
help: Fix invalid markup in Czech help translation (Andre Klapper)
Translations:
Alan Mortensen (da)
Artur S0 (ru)
Balázs Úr (hu)
Boyuan Yang (zh_CN)
Bruce Cowan (en_GB)
Christian Kirbach (de)
Ekaterine Papava (ka)
Jordi Mas i Hernandez (ca)
Kukuh Syafaat (id)
Martin (sl)
Rūdolfs Mazurs (lv)
Sabri Ünal (tr)
Sergej A (ru)
Yuri Chornoivan (uk)
Evolution 3.50.0 2023-09-15
---------------------------
Bug Fixes:
I#1488 - Backspace in preedit mode can delete extra letters
I#2503 - Mail: Signed attachment causes hide of unsigned body
I#2508 - Mail: Duplicate items in the popup menu
I#2514 - Change default response in 'Add Attachment' dialog
M!124 - Fix typos ("begining", "ineficient") in code comments (Дилян Палаузов)
Miscellaneous:
itip-formatter: Skip well-known read-only sources
EHeaderBarButton: Can be half-sensitive with set menu
EColorCombo: Don't set own default palette
ci: Rename org.gnome.evolution.nightly to org.gnome.Evolution.Devel
Translations:
Anders Jonsson (sv)
Aurimas Černius (lt)
Balázs Úr (hu)
Daniel Rusek (cs)
Emin Tufan Çetin (tr)
Jean-Marc Tissières (fr)
Jordi Mas (ca)
Piotr Drąg (pl)
Tim Sabsch (de)
Evolution 3.49.3 2023-09-01
---------------------------
Bug Fixes:
I#933 - CompEditor: Attendees dialogs out of sync in Schedule and General tab
I#941 - ESrvConfigLookup: Consider mail configuration complete
I#971 - Mail: Add option to hide unread count in folder tree
I#1054 - Preferences: Network proxy port not always saved
I#1180 - Calendar: Disallow change of target client for existing components ][
I#1247 - Error message only half readable (insufficient panel height)
I#1254 - Pair backup process window with the main application
I#1324 - Composer: HTML formatting left after mode change to Plain Text
I#1340 - ESpinner: Cache working.png into memory
I#1388 - mail-to-task: Extract text also from HTML-only messages
I#2442 - Correct color of expand/collapse buttons in preview in Dark mode
I#2445 - itip: Limit headers in multipart/alternative part
I#2446 - Calendar: Change how categories are exported into preview
I#2447 - itip-formatter: Rename Send reply to Sender -> Organizer
I#2450 - CompEditor: Enhance time re-calculation on overlap change
I#2451 - Mail: Detect which images WebKitGTK can show
I#2454 - Calendar: Minicalendar blocks sidebar shrink
I#2456 - Add Move / Copy to folder into message preview context menu
I#2457 - Shell: Add option to prefer symbolic icons
I#2460 - First-Run Assistant: Set file filter to backup file chooser
I#2463 - Mail: Add filter condition for iCalendar attachment
I#2467 - ITip formatter ignores Dark mode preference for text/plain MIME parts
I#2469 - Calendar: Hard to read meeting time selector header in Dark mode
I#2476 - mail-to-task: Do not create all day events
I#2480 - Mail: Add option to auto-show insecure parts
I#2482 - CompEditor: Ignore abbreviated date format
I#2488 - Only headers visible for unsigned emails attached to signed emails
I#2491 - Calendar: Import only valid iCalendar files
I#2494 - Add "Send after 1 minute" option to composer's "Send through Outbox" (Roland Tapken)
I#2496 - "Next" in Collection Account setup can be disabled for no valid reason
Miscellaneous:
Replace internal functions with new functions from libecal
alarm-notify: Drop dependency on the evolution-calendar part
Tweak how long to wait for a 'connected' state when opening an EClient
evolution-util: Declare build dependency on libsecret
Force icon size for categories
itip: Export to HTML without category icons
Composer: Do not send 'Autocrypt' headers larger than 10KB
Always use attachments for 'Forward as iCalendar'
CompEditor: Cannot move memo/task between lists
Calendar: Ask for deletion notice only for attendees
Postpone some operations from GtkWidget::size_allocate() to idle callback
test-web-view-jsc: Adapt tests to WebKitGTK 2.40.3 behavior changes
test-markdown: Fix a memory leak
Translations:
Anders Jonsson (sv)
Asier Sarasua Garmendia (eu)
Boyuan Yang (zh_CN)
Ekaterine Papava (ka)
Fran Dieguez (gl)
Hugo Carvalho (pt)
Jiri Grönroos (fi)
Jürgen Benvenuti (de)
Kukuh Syafaat (id)
Piotr Drąg (pl)
Sabri Ünal (tr)
Sergej A (ru)
Yuri Chornoivan (uk)
Evolution 3.49.2 2023-08-04
---------------------------
Bug Fixes:
I#17 - Sorting Contacts in the 'Address cards' view
I#130 - itip-formatter: Send meeting invitations as multipart/alternative
I#203 - Improve handling of suspiciously signed/encrypted emails (multiparts)
I#375 - Support Autocrypt
I#609 - Calendar: Use user-configured date format in the editor
I#662 - Option to get Delivery Status Notification (DSN)
I#848 - Allow to save forwarded mails in the original message folder
I#883 - ETimezoneEntry: Enable completion by timezone location
I#967 - Add save e-mails individually as eml format
I#1081 - Mail: Allow to import PGP keys
I#1180 - Calendar: Disallow change of target client for existing components
I#1750 - Composer: Offer to send without encryption when key is missing
I#2347 - CompEditor: Open map from Location field
I#2364 - Mail: Add option to group messages into flat threads
I#2398 - CompEditor: Allow unset recurrence for uneditable recurrences
I#2399 - alarm-notify: Detect format change in settings
I#2407 - Contacts: Add columns for mailing address fields
I#2412 - Composer: Format change can discard message text
I#2413 - Ability to update / overwrite a template when saving it
I#2415 - "Archive…" direct action should not have ellipsis dots at the end
I#2416 - The "Select Address Book" dialog has disabled OK button after open
I#2417 - Calendar: Use meeting's timezone in the comp editor Schedule tab
I#2423 - Re-enable contact maps feature
I#2430 - Calendar: Disallow save for all instances on a detached instance
I#2433 - Calendar does not remember selected weeks when scrolling via button
I#2443 - Calendar: Missing events in Month view print out
M!120 - Correct wording of mail composer's external attachments warning infobar (Jeff Fortin Tam)
M!121 - Composer: Change Max Line Length to RFC 2822 Limits (Cameron)
eds-I#59 - CalDAV: Allow to disable schedule reply on remove
eds-I#180 - Add option to reduce book/cal data usage when on a metered connection
eds-I#483 - Calendar: Add option to (not) delete "Declined" meeting
Miscellaneous:
Calendar: Indicate detached instance of a recurring event
Mail: Correct function prototype declaration (-Wenum-int-mismatch)
MessageList: Remove unused code
itip-formatter: Allow writing user response comments for all calendars
itip-formatter: Disable send of iTip messages when disabled by the user
CompEditor: Show source full name for existing components
EMeetingStore: Avoid runtime warning when setting NULL time zone
Composer: Clear old alerts before sending a message
Translations:
Asier Sarasua Garmendia (eu)
Ekaterine Papava (ka)
Hugo Carvalho (pt)
Kukuh Syafaat (id)
Roberto MF (es)
Sergej A (ru)
Yuri Chornoivan (uk)
Evolution 3.49.1 2023-06-30
---------------------------
Bug Fixes:
I#1039 - Mail: Cannot change the search domain with active search
I#1111 - iTip formatter: Hide the read-only calendars in the list
I#1268 - Alternative Reply: Regroup the reply options related to quoting
I#1293 - Allow to Search Contact's Phone With Numbers Only
I#1357 - Option to disable saving a copy of sent messages
I#1437 - Mail: Warn when adding an existing label
I#1463 - Updated attachments are shown as updated, but sent in old version
I#1596 - Add translation context to "Title" word
I#1662 - Composer: Redirect cannot scroll message content
I#1810 - TNEF attached message decoded incorrectly
I#1812 - Mail: Expand Aliases box in the Account Editor
I#1813 - Preferences system timezone checkbox annoyance
I#1830 - ECompEditor: Show Type column by default
I#1950 - Composer: Copy/paste changes text size in HTML mode
I#2277 - Include signature settings in New Mail Account wizard
I#2278 - Signature is re-added to a Draft mail after open
I#2282 - Calendar: Summary not always shown in the Day View
I#2288 - Blockquotes styling changes in Markdown live preview when editing area is focused
I#2290 - Composer: Preserve '\n' inside paragraph text
I#2291 - Mail: libunity badge counter does not disappear
I#2293 - Cannot import pkcs12 with empty password
I#2302 - Mail: Space bar no longer scrolls preview messages
I#2310 - Mail: Preview panel has too many vertical scrollbars
I#2317 - ESpinner: Do not animate when animations are disabled
I#2318 - Ctrl+Shift+F does not focus the search field when already visible
I#2319 - Composer: Bulleted list margin inconsistent in HTML
I#2320 - Composer: Can send outdated message content
I#2324 - ECompEditor: Classification submenu inaccessible for read-only calendars
I#2326 - RSS: Limit re-download on content change, if possible
I#2330 - Contacts: LDAP not searching for contact after launch