-
Notifications
You must be signed in to change notification settings - Fork 47
/
NEWS
17459 lines (15814 loc) · 806 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.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
I#2332 - Mail: Recalc preview iframe heights more often
I#2335 - Composer: HTML formatting lost on paste from external browser
I#2340 - Inconsistent S/MIME signature validation results
I#2345 - Wrong S/MIME certificate selection for encrypted email
I#2350 - Claim errors from Contact Quick-Add in the GUI
I#2354 - Composer: Notify about attachment file change before send
I#2355 - Search input field's clear button unclickable during first entry
I#2356 - PGP-MIME: Show decrypted protected header as Subject in preview
I#2362 - EShellSearchbar: Cannot clear search by deleting text
I#2371 - Composer: Added extra quotation level after draft open
I#2372 - Bundle 'x-office-...' non-symbolic icons
I#2377 - Composer: Add option to disable plaintext markdown input text sanitizing
I#2380 - Mail: Preview content sometimes grows indefinitely
I#2381 - Composer: Use 'Wrap quoted text in replies' option also for text/html parts
I#2382 - Mail: Workaround recursion in iframe height computation
I#2400 - HTML attachment viewport is tiny
I#2401 - EMailFormatter: Style change not propagated to all instances
M!118 - iTIP-formatter: respect the color-scheme in HTML MIME parts (Дилян Палаузов)
eds-I#477 - Add search folder condition for overdue messages
Miscellaneous:
e-gtkemojichooser: Correct packing of the internal widgets
EMailDisplay: Correct "formatter" property definition
Add plugins' directory into WebKitGTK only when it exists
EMFolderProperties: Ignore persistent folder properties without 'blurb'
flatpak: Stop disabling WebKitGTK's sandbox
e-util: Optimize e_util_check_gtk_bindings_in_key_press_event_cb() a bit
itip-view: Correct text for PUBLISH of task/memo without organizer
Calendar: Add shortcuts for move to previous/next date
Misc: Update contact information in the README.md file
README.md: Update information about the mailing list
itip-view: Sort sources by the source selector sort order
EMailConfigSecurityPage: Add hint for OpenPGP Key ID
RSS: Claim an error when feed download fails
Replace deprecated 'web-process-crashed' with 'web-process-terminated' signal
rss: Fix recently introduced memory leaks
DOAP: Update mailing list URL (Andre Klapper)
DOAP: Add <support-forum> entry for discourse.gnome.org (Andre Klapper)
Mail: Fix runtime warning on selecting non-selectable folder
Composer: Tabs replaced when opening message from Outbox
Correct "GNOME" word in the README.md
EMailSignatureScriptDialog: Cannot choose script file under Flatpak
Remove unneeded EMailFormatterClass::colors property
itip-formatter: Move JavaScript code from C to e-web-view.js
Calendar: Rename "Unmatched" filter to "Without Category"
eab_transfer_contacts: Fix a possible memory leak
Fix few memory leaks in the address book code
Use org.freedesktop.Sdk.Extension.vala in flatpak manifests
filter-rule: Scroll to the added condition/action
EMeetingListStore: Wrong role section picked in Attendees dialog
Contacts: Replace minicard view with cursor-like view and gtk+ widgets
Translations:
Aleksandr Melman (ru)
Asier Sarasua Garmendia (eu)
Balázs Úr (hu)
Boyuan Yang (zh_CN)
Danial Behzadi (fa)
Ekaterine Papava (ka)
Fabio Tomat (fur)
Hugo Carvalho (pt)
Jordi Mas (ca)
Kukuh Syafaat (id)
Nathan Follens (nl)
Piotr Drąg (pl)
Sabri Ünal (tr)
Sergej A (ru)
Yuri Chornoivan (uk)
Evolution 3.48.0 2023-03-17
---------------------------
Miscellaneous:
mail.error.xml: Unmark two strings from translation
Translations:
Aleksandr Melman (ru)
Anders Jonsson (sv)
Balázs Úr (hu)
Bruce Cowan (en_GB)
Changwoo Ryu (ko)
Dušan Kazik (sk)
Jean-Marc Tissières (fr)
Jordi Mas (ca)
Marek Černocký (cs)
Matej Urbančič (sl)
Sabri Ünal (tr)
Sergej A (ru)
Tim Sabsch (de)
Evolution 3.47.3 2023-03-03
---------------------------
Bug Fixes:
I#705 - Icons in the message list are rendered in low resolution on HiDPI displays
I#2245 - Mail: Add option to confirm 'Mark as Junk'
I#2248 - Composer: Check parent element's text-align before unsetting it
I#2255 - Composer: "Select All" in context menu doesn't select recipients
I#2260 - Mail: Show S/MIME encrypted part as attachment on failed decryption
I#2261 - RSS: Read of author depends on element order
I#2268 - Mail: Inherit format from template in Alternative Reply
I#2274 - ECalendarItem: Use selected text color for day names and week numbers
I#2275 - iTIP: Override text color together with background color
M!117 - Add new screenshots for AppStream metadata (Jiri Eischmann)
Miscellaneous:
RSS: Folder-specific options not save from Preferences
help: Replace docs mailing list URL by GNOME Discourse (Andre Klapper)
Translations:
Alan Mortensen (da)
Asier Sarasua Garmendia (eu)
Aurimas Černius (lt)
Balázs Úr (hu)
Daniel Mustieles (es)
Emin Tufan Çetin (tr)
Fabio Tomat (fur)
Fran Dieguez (gl)
Hugo Carvalho (pt)
Jürgen Benvenuti (de)
Kjartan Maraas (nb)
Kukuh Syafaat (id)
Мирослав Николић (sr)
Philipp Kiemle (de)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution 3.47.2 2023-02-10
---------------------------
Bug Fixes:
I#2161 - Mail: Add 'Learn as Junk' message filter action
I#2179 - Remove all reference to user fields in name selector (Dacoda Strack)
I#2191 - Moving message does not select previous message
I#2196 - Mail: Allow directly open embedded images
I#2210 - Scale embedded images in HTML messages to respect viewport
I#2212 - "Private reply" addressed to list when sender is one of my accounts
I#2215 - Notify user when sending a mail to an external contact
I#2219 - Calendar: Preserve Work Week view on date change, if possible
I#2227 - LDAP: Set connection timeout for search bases query
I#2237 - Calendar: Copy through clipboard can break series
eds-I#353 - ENameSelectorEntry: Refresh completion results more ofter
Miscellaneous:
Markdown: Enhance convert of mail signature into markdown
ENameSelectorDialog: Simplify book query
CollectionAccountEditor: Fix packing of the switch widgets
Enable GitLab CI for easier testing of the changes
Make it possible to run GitLab CI Flatpak artifact
EWebView: Stop trying to disable WebKitGTK plugins
help: Replace PNG Evolution icon with SVG (Sabri Ünal)
Translations:
Aleksandr Melman (ru)
Asier Sarasua Garmendia (eu)
Aurimas Černius (lt)
Cheng-Chia Tseng (zh_TW)
Daniel Mustieles (es)
Ekaterine Papava (ka)
Fabio Tomat (fur)
Fran Dieguez (gl)
Hugo Carvalho (pt)
Jiri Grönroos (fi)
Jordi Mas (ca)
Jürgen Benvenuti (de)
Kukuh Syafaat (id)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution 3.47.1 2023-01-06
---------------------------
Bug Fixes:
I#1245 - Show available categories in Contacts view
I#1684 - e_task_table_get_selected: Skip non-existent comp_data
I#1691 - itip-view: Correct text for PUBLISH and REQUEST without organizer
I#1965 - Mail: Special folder icon not udpated after change
I#2001 - Mail: Update preview's iframe height to match its content
I#2011 - backup-restore: Verify backup file integrity after backup
I#2013 - Tasks: Correct interpretation of Due DATE value
I#2014 - Calendar: Periodically refresh Marcus Bains line
I#2029 - prefer-plain: Runtime warnings for "Only ever show plain text"
I#2030 - New-Mail-Account: 'Skip Lookup' button not removed
I#2031 - VEVENT components should not contain both DTEND and DURATION
I#2037 - EHeaderBarButton: Avoid busy loop on toggle action's 'active' change
I#2039 - Add option to disable use of header bars
I#2043 - prefer-plain: 'related' under 'alternative' shows 'html' part
I#2044 - Calendar: Decode attendee names in meeting editor
I#2046 - Remove some unused variables in the code
I#2047 - Fix possible memory leak in e_table_state_load_from_node()
I#2048 - e_rss_preferences_maybe_copy_icon() suggests call of strrchr(NULL, '.')
I#2051 - Mail: Hide print Preview in the menu
I#2053 - Contacts: Correct print of multiline text
I#2059 - Group Manager: Auto-deselect sources in to be hidden groups
I#2062 - Limit number of previewed messages on mbox file import
I#2063 - Make it possible to disable GOA accounts
I#2064 - EShellHeaderBar: Disable subtitle for the header bar (Glen Whitney)
I#2066 - Contacts: Do not show "(Other)" after Emails in Preview
I#2073 - Calendar: Meeting's Reply-To-All should not use attendee response in Subject
I#2083 - Enable sandboxing for WebKitGTK 2.38.0+
I#2087 - Composer: Extra separators shown on the toolbar
I#2088 - Import/Export RSS feeds from/to OPML file
I#2090 - Split sentence in e-rss-preferences.c file
I#2094 - itip-formatter: Offer Import for components without attendees
I#2096 - Use symbolic icons for high contrast icon themes
I#2097 - Calendar: Current time is off by one day for work week view
I#2101 - Markdown Editor: Paste Quotation always disabled
I#2102 - Markdown Editor: Add option for side-by-side preview
I#2105 - MarkdownEditor: Correct conversion from HTML
I#2107 - EDayView: Event text clipped too early with icons
I#2109 - Calendar: Unset "Show Event Preview" shortcut
I#2111 - Add Appearance settings into Preferences
I#2112 - StartupWizard: Shown even with configured mail account
I#2133 - Composer: Correct tooltip for "S/MIME Encrypt"
I#2138 - Calendar: Do not shorten time of pasted events
I#2140 - Relocate mail message toolbar close to the preview panel
I#2144 - EWebView: Use system link color for "expand recipients" dots
I#2146 - EShellHeaderBar: Show button labels adaptively
I#2147 - Hide menu bar by default
I#2162 - MarkdownEditor: Correct cursor placement on composer open
I#2164 - RSS: Fails to read RDF feeds
I#2166 - Use 'contains' for autocompletion query (Dacoda Strack)
I#2167 - e-web-view.js: Check for instantiated iframe document
I#2169 - EWebView: Apply zoom level to element position in "element-clicked" signal
I#2176 - Duplicate attachments when forwarding
I#2180 - MarkdownEditor: Correct signature boundary start on text insert
I#2193 - RSS: Crash when reading feed with empty author
I#2204 - itip-formatter: iframe height miscalculated without frame flattening
I#2205 - Composer: Spell checking is auto-enabled on mode change
M!111 - desktop: Remove obsolete Bugzilla entries (Jake Dane)
M!112 - Remove unused assignments (Дилян Палаузов)
M!115 - Fix several typos in the code (Дилян Палаузов)
ews-I#153 - ECompEditor: Add API to get property parts
Miscellaneous:
Calendar: Compare date with correct zone
org.gnome.evolution.shell.gschema.xml.in: Rephrase description of use-header-bar option
publish-calendar: Correct type of a 'port' variable to match GUri's port type
Fix possible crash under type_ahead_complete_on_timeout_cb()
Replace e_mail_part_snoop_type() with e_mail_part_guess_mime_type()
EWebView: Do not use GTask thread pool for content requests
Mail: Use lower priority pool for contact photo requests
EWebView: Make sure an error is set when passing it to webkit_uri_scheme_request_finish_error()
EHTTPRequest: Rearrange free functions and set error on failure
rss: Correct mnemonic letters in Preferences
Composer: Correct conversion of TABLE into Plain Text
EHTMLEditor: Traverse between all editors when looking for the editor name
itip-utils: Change provided HTML transcript of a replied-to meeting
misc: Declare functions with no argument as `(void)`, not `()`
mail-mt: Use GCallback instead of its own type in mail_call_main()
EYearView: Correct calculation of the shown date
flatpak: Enable extension point for the development version
Add WebKit user plugin paths into the sandbox
Mute "No provider available for protocol “sendmail”" under Flatpak
Markdown Editor: Auto-scroll preview near the entered text
EShellHeaderBar: Remove unused pack_start/_end functions
Fix a memory leak in addressbook_selector_sort_categories()
EMailBrowser: Correct placement of the menu button in the header bar
Fix a compiler warning from e-filter-input.c
MarkdownEditor: Change how cursor position is tracked in side-by-side preview
Update mode-with-headerbar.png image
Fix few memory leaks
appearance-settings: Title bar mode shown incorrectly
EMailReader: Correct sensitivity of toolbar buttons
Add Interlingue translation into the list of supported locales
help: Replace to-be-retired mailing list with GNOME Discourse link (Andre Klapper)
help: Mention the evolution-users mailing list in the help
Translations:
Aleksandr Melman (ru)
Alexander Shopov (bg)
Anders Jonsson (sv)
Asier Sarasua Garmendia (eu)
Aurimas Černius (lt)
Balázs Úr (hu)
Baurzhan Muftakhidinov (kk)
Bruce Cowan (en_GB)
Charles Monzat (fr)
Christian Kirbach (de)
Danial Behzadi (fa)
Daniel Mustieles (es)
Fabio Tomat (fur)
Fran Dieguez (gl)
Gianvito Cavasoli (it)
Goran Vidović (hr)
Hugo Carvalho (pt)
Jean-Marc Tissières (fr)
Jiri Grönroos (fi)
Jordi Mas (ca)
Jürgen Benvenuti (de)
Kukuh Syafaat (id)
Мирослав Николић (sr)
Nathan Follens (nl)
Olga Smirnova (ie)
Pawan Chitrakar (ne)
Piotr Drąg (pl)
Rafael Fontenelle (pt_BR)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Zurab Kargareteli (ka)
Evolution 3.46.0 2022-09-16
---------------------------
Bug Fixes:
I#2022 - Use icon-only buttons in the header bar
Translations:
Balázs Úr (hu)
Changwoo Ryu (ko)
Christian Kirbach (de)
Daniel Mustieles (es)
Enrico Nicoletto (pt_BR)
Jean-Marc Tissières (fr)
Jiri Eischmann (cs)
Jordi Mas (ca)
Jürgen Benvenuti (de)
Marek Černocký (cs)
Piotr Drąg (pl)
Rūdolfs Mazurs (lv)
Sabri Ünal (tr)
Марко Костић (sr)
Evolution 3.45.3 2022-09-02
---------------------------
Bug Fixes:
I#1969 - EShellWindow: The 'New' menu is not filled after start
I#1985 - Composer: Send of Outbox message doesn't remove it
I#1995 - EMFormat: Do not "mark citation" in header values
Miscellaneous:
ECert: Correct free function of two private members
Use certificate widget provided by libedataserverui
MessageList: Remove unneeded condition in an 'if' statement
Translations:
Ahmad Haghighi (fa)
Alan Mortensen (da)
Aleksandr Melman (ru)
Anders Jonsson (sv)
Asier Sarasua Garmendia (eu)
Aurimas Černius (lt)
Balázs Úr (hu)
Boyuan Yang (zh_CN)
Danial Behzadi (fa)
Daniel Mustieles (es)
Emin Tufan Çetin (tr)
Fran Dieguez (gl)
Goran Vidović (hr)
Hugo Carvalho (pt)
Kukuh Syafaat (id)
Luming Zh (zh_CN)
Nart Tlisha (ab)
Sabri Ünal (tr)
Evolution 3.45.2 2022-08-05
---------------------------
Bug Fixes:
I#1958 - Calendar: Sort reminder times in the component editor
I#1961 - Missing divider lines and paddings under GNOME
I#1962 - Mail: Option to use user-specified Date format in Inline reply style
I#1966 - EColorSchemeWatcher: Verify chosen dark variant theme name exists
I#1968 - ECompEditor: Reminders list is too small
I#1971 - EMailBrowser: Move 'Reply' to the right side of the header bar
I#1976 - Mail: Change Template folder icon to 'folder-templates'
I#1981 - ECompEditor: Cannot save changes
I#1982 - Calendar: The default reminder not always added
M!108 - Use Client Side Decoration (header bar) (Cédric Bellegarde)
Miscellaneous:
Mail: Handle built-in accounts similar to 'On This Computer' and 'Search Folders'
e_mail_folder_to_full_display_name: Use display-name for folders with no parent
EMFolderTree: Add 'folder-custom-icon' and 'compare-folders' signals
Implement News & Blogs (RSS) reader
RSS: Require camel and libedataserer pkgconfig files
Use camel_folder_get_full_display_name() in user-visible strings
Composer: Some parts of HTML not always converted into Plain Text
ECompEditor: Add signals for core virtual methods
Change when symbolic icons are forced in the application
flatpak: Add access to gvfsd in the Flatpak manifests