-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathNEWS
1372 lines (1168 loc) · 37.5 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
Version 46.0
~~~~~~~~~~~~
Released: 2024-05-20
A stable feature release.
Enhancements included in this release:
* Simpler notification messages
* Fix navigation issues
* Continue delivering messages on error
* Fix one more unread count issue
* Numerous user interface translation updates
* Numerous bug fixes and user interface improvements
Thanks to those who contributed bug fixes and enhancements to this
release:
* Niels De Graef
* Sabri Ünal
* All translators
Version 44.0
~~~~~~~~~~~~
Released: 2023-07-05
A stable feature release.
Enhancements included in this release:
* New conversation list
* Reworked headerbar
* Fix network detection issues
* Suspend engine on system suspend
* Numerous user interface translation updates
* Numerous bug fixes and user interface improvements
Thanks to those who contributed bug fixes and enhancements to this
release:
* Automeris naranja
* Rico Tzschichholz
* Thomas Jollans
* Sabri Ünal
* Kevin Degeling
* All translators
Version 43.0
~~~~~~~~~~~~
Released: 2022-09-29
A stable feature release.
Enhancements included in this release:
* Improved images management
* Thunderbird auto configuration support
* Add XDG background portal support
* Numerous user interface translation updates
* Numerous bug fixes and user interface improvements
Thanks to those who contributed bug fixes and enhancements to this
release:
* Richard Adenling
* Itay Grudev
* Adrien Plazas
* Maximiliano
* Alexander Mikhaylenko
* Michael Catanzaro
And special thanks to Niels De Graef for mentoring me.
Version 40.0
~~~~~~~~~~~~
Released: 2021-04-23
A stable feature release.
Enhancements included in this release:
* Visual refresh including updated icon and interface
* Add support for half-screen, portrait and small displays
* Improved performance when displaying large conversations
* Upgraded full-text search engine
* Improved search for languages such as Thai and Chinese
* Improved keyboard shortcuts
* Improved server compatibility
* Numerous user interface translation updates
* Numerous bug fixes and user interface improvements
Changes since 40.rc:
* Build fixes for future versions of vala, gmime, and meson.
Thanks to those who contributed bug fixes and enhancements to this
release:
* Adrien Plazas
* Arnaud Ferraris
* Björn Daase
* Carlos Langoni
* Chris Heywood
* Douglas Fuller
* Guido Günther
* James Westman
* Jeremias Ortega
* John Renner
* Julian Sparber
* Marek Benc
* Marek Černocký
* Michael Catanzaro
* Michał Kopeć
* Rico Tzschichholz
* Thami Memel
* Thomas Lauerman
* Tobias Bernard
* Yuri Edward
Thanks also to those who contributed translations for the interface:
* Alan Mortensen (da)
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Asier Sarasua Garmendia (eu)
* Balázs Úr (hu)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Dušan Kazik (sk)
* Dz Chen (zh_CN)
* Efstathios Iosifidis (el)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Fabio Tomat (fur)
* Federico Bruni (it)
* Florentina Mușat (ro)
* Fran Dieguez (gl)
* Goran Vidović (hr)
* Hugo Carvalho (pt)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Kukuh Syafaat (id)
* Marek Černocký (cs)
* Nathan Follens (nl)
* Piotr Drąg (pl)
* Rodrigo Costa (pt_BR)
* Tim Sabsch (de)
* Viktor Illmer (de)
* Yosef Or Boczko (he)
* Yuri Chornoivan (uk)
* Źmicier Turok (be)
* Аляксей (be)
* Мирослав Николић (sr)
And for the online help manual:
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Federico Bruni (it)
* Jordi Mas (ca)
* Marek Černocký (cs)
Version 40.rc
~~~~~~~~~~~~~
Released: 2021-04-14
A candidate for the next stable release.
Please see the AppStream file for updated features. Notable build
changes included in this release:
* Require libhandy 1.2.1
* Add a dependency on ICU (actually in the last release)
Version 40.alpha
~~~~~~~~~~~~~~~~
Released: 2021-01-18
An alpha-quality development release.
Please see the AppStream file for updated features. Notable build
changes included in this release:
* Require a build flag to be set for releases builds and from tarballs
* Updated build options to use meson features, be internally consistent
* Add a dependency on the libstemmer library
Version 3.38.0.1
~~~~~~~~~~~~~~~~
Released: 2020-09-15
Notable changes included in this release:
* Ensure recent SQL migration scripts are installed
Thanks to those who contributed translations for the online help
manual:
* Jordi Mas (ca)
Version 3.38
~~~~~~~~~~~~
Released: 2020-09-13
Enhancements included in this release:
* Clean up email in database older than the storage preference
* New Preferences window pane for managing plugins
* New Email Templates plugin
* New Mail Merge plugin
* New Sent Sound plugin
* New Unity Messaging Menu plugin
* Reduced number of spurious problem report info bars
* Improved ordering of folders in the folder list
* Spam folder renamed to Junk
* Composer formatting toolbar initially hidden for new installs
* Desktop mail notifications now show contact photos
* Improved server compatibility
* Numerous bug fixes and user interface improvements
* Numerous user interface translation updates
Thanks to those who contributed code fixes and enhancements to this
release:
* Adwait Rawat
* Andres Salomon
* Björn Daase
* Chris Heywood
* Daniel Kahn Gillmor
* Diego Escalante Urrelo
* Federico Bruni
* Guillaume Ayoub
* hkdb
* James Westman
* Jan Tojnar
* Jonatan Pålsson
* Jordan Petridis
* Oliver Giles
* Rico Tzschichholz
* Thibault Martin
Thanks also to all who contributed translations for the user
interface:
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Asier Sarasua Garmendia (eu)
* Ask Hjorth Larsen (da)
* Baurzhan Muftakhidinov (kk)
* Bruce Cowan (en_GB)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Dušan Kazik (sk)
* Efstathios Iosifidis (el)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Fabio Tomat (fur)
* Federico Bruni (it)
* Goran Vidović (hr)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Kukuh Syafaat (id)
* Nathan Follens (nl)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* sicklylife (ja)
* Thibault Martin (fr)
* Yuri Chornoivan (uk)
And for the user manual:
* Andre Klapper (it)
* Jordi Mas (ca)
* Piotr Drąg (pl)
* Yuri Chornoivan (uk)
Version 3.37.92
~~~~~~~~~~~~~~~
Released: 2020-09-06
Notable changes included in this release:
* Fix for crash in conversation find
* Fix GOA-related app freeze at startup
* Fix for infinite "recoverable error" loop
* Fix for database locking errors
* Fixes for handling cancelled IMAP commands
* Various bug fixes and user interface improvements
Thanks to all who contributed code fixes and enhancements to this
release:
* Chris Heywood
Thanks also to all who contributed translations, for the user
interface:
* Bruce Cowan (en_GB)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Federico Bruni (it)
* Jiri Grönroos (fi)
* Kukuh Syafaat (id)
* Nathan Follens (nl)
* Piotr Drąg (pl)
* sicklylife (ja)
* Thibault Martin (fr)
* Yuri Chornoivan (uk)
Version 3.37.91
~~~~~~~~~~~~~~~
Released: 2020-08-27
Notable changes included in this release:
* Fixed handling of pinned, invalid TLS certificates: CVE-2020-24661
* Removed libhandy subproject due to translation infrastructure issue
* Update vala dependency to >= 0.48.6
* Update glib dependency to >= 2.64
* Various bug fixes and user interface improvements
* various user interface translation updates
Thanks to all who contributed code fixes and enhancements to this
release:
* Björn Daase
* Chris Heywood
Thanks also to all who contributed translations, for the user
interface:
* Daniel Mustieles (es)
* Piotr Drąg (pl)
Version 3.37.90
~~~~~~~~~~~~~~
Released: 2020-08-19
Notable changes included in this release:
* Drop messages in the database older than the storage preference
* Added a mail merge plugin
* Sent sound plugin improvements
* Follow system font preference in the conversation list
* Hide composer formatting toolbar by default
* Improved default preferences window size
* Improved server compatibility
* Code cleanup, build and bug fixes
* Broke out generic unit test code into a stand-alone subproject
* Use a distinct icon for nightly builds
* Update vala dependency to >= 0.46.2
* Update libhandy dependency to >= 0.90
Thanks to all who contributed code fixes and enhancements to this
release:
* Adwait Rawat
* Andres Salomon
* Chris Heywood
* Diego Escalante Urrelo
* Federico Bruni
* Guillaume Ayoub
* hkdb
* Jan Tojnar
* Jordan Petridis
* Oliver Giles
* Rico Tzschichholz
* Thibault Martin
Thanks also to all who contributed translations, for the user
interface:
* Anders Jonsson (sv)
* Baurzhan Muftakhidinov (kk)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Dušan Kazik (sk)
* Emin Tufan Çetin (tr)
* Federico Bruni (it)
* Jordi Mas (ca)
* Kukuh Syafaat (id)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* sicklylife (ja)
* Thibault Martin (fr)
* Yuri Chornoivan (uk)
And for the user manual:
* Andre Klapper (it)
* Jordi Mas (ca)
* Piotr Drąg (pl)
* Yuri Chornoivan (uk)
Version 3.37.1
~~~~~~~~~~~~~~
Released: 2020-05-03
Notable changes included in this release:
* Add support for email and folder plugins
* Add preferences for loading optional plugins
* Add new Sent Sound and Email Template optional plugins
* Convert Unity Messaging Menu plugin to be optional
* Convert more non-core code to internal plugins
* Reduce and limit the number of problem reports displayed
* Fix ordering of folders in the folder list
* Rename Spam folder to Junk
* Use info bars for emptying Trash and Junk folders
* Allow enabling/disabling logging domains from the Inspector
* Improvements to IMAP stack reliability
* Prefer IMAP SPECIAL USE extenion over XLIST
* Numerous client and engine bug fixes and code clean up
* Added a build dependency for the GSOund library
Thanks to all who contributed code fixes and enhancements to this
release:
* Björn Daase
* Daniel Kahn Gillmor
* James Westman
* Jonatan Pålsson
* Rico Tzschichholz
Thanks also to all who contributed translations, for the user
interface:
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Asier Sarasua Garmendia (eu)
* Ask Hjorth Larsen (da)
* Daniel Mustieles (es)
* Dušan Kazik (sk)
* Efstathios Iosifidis (el)
* Emin Tufan Çetin (tr)
* Goran Vidović (hr)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* sicklylife (ja)
* Yuri Chornoivan (uk)
And for the user manual:
* Jordi Mas (ca)
Version 3.36
~~~~~~~~~~~~
Released: 2020-03-13
Enhancements included in this release:
* New and improved responsive composer interface
* Drag and drop image files into rich text messages
* Paste images from the clipboard into rich text messages
* Improved composer missing attachment detection
* Access emoji chooser in composer via shortcut or context menu
* Extend undo for email actions such as archiving, marking
* Undo sending, saving and discarding composed email
* Undo editing in text fields, including in the composer
* Open more than one main window
* New and improved responsive preferences interface
* Using single key shortcuts for email actions is now optional
* Single key shortcuts have been brought up to date with Gmail
* App-wide notification preferences now handled by desktop
* Numerous bug fixes and user interface improvements
* Numerous user interface translation updates
Thanks to all who contributed code fixes and enhancements to this
release:
* Adam Dingle
* Adrien Plazas
* Alex Henrie
* Bilal Elmoussaoui
* Chris Heywood
* Daniel Kahn Gillmor
* James Westman
* João Loureiro
* Konstantin Kharlamov
* Mario Ravalli
* Mart Raudsepp
* Niels De Graef
* Tobias Sette
* Torben
* Алексей Шилин
Thanks also to all who contributed translations, for the user
interface:
* Alexandre Franke (fr)
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Asier Sarasua Garmendia (eu)
* Balázs Meskó (hu)
* Cheng-Chia Tseng (zh_TW)
* Daniel Mustieles (es)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Federico Bruni (it)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Kukuh Syafaat (id)
* Marek Černocký (cs)
* Nathan Follens (nl)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* sicklylife (ja)
* Tim Sabsch (de)
And for the user manual:
* Daniel Mustieles (es)
* Emin Tufan Çetin (tr)
* Federico Bruni (it)
* Marek Černocký (cs)
* Piotr Drąg (pl)
Version 3.35.90
~~~~~~~~~~~~~~~
Released: 2020-03-01
Changes:
* Support drag and drop and copy and paste images in composer
* Updated composer UI to new responsive design
* Updated preferences UI to use Handy widgets
* Add hidden prefs for minimising in-app notifications
* Ported engine to to GMime 3.x
* Update WebKitGTK minimum version to 2.26
* Drop libunity dependency in favour of internal implementation
* Several bug fixes and code cleanups
Thanks to all who contributed code fixes and enhancements to this
release:
* Adam Dingle
* Adrien Plazas
* Chris Heywood
* James Westman
* Konstantin Kharlamov
* Mart Raudsepp
* Niels De Graef
* Tobias Sette
* Алексей Шилин
Thanks also to all who contributed translations, for the user
interface:
* Alexandre Franke (fr)
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Daniel Mustieles (es)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Kukuh Syafaat (id)
* Nathan Follens (nl)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* sicklylife (ja)
And for the user manual:
* Daniel Mustieles (es)
* Piotr Drąg (pl)
Version 3.35.2
~~~~~~~~~~~~~~~
Released: 2019-10-11
Changes:
* Roll up bugs fixed in 3.34.2
* Add drag and drop and paste images into rich text messages
* Add account-wide undo of email actions
* Add undo composer send/save/discard
* Add undo for GtkEntry widgets
* Support opening multiple main windows
* Update and improve keyboard shortcuts
* Make single-key shortcuts optional, brig up to date with Gmail
* Substantial client application/controller/main window/composer class
cleanup
* Geary.Engine API cleanup
* Improve logging initialisation
* Online manual updates
Thanks to all who contributed code fixes and enhancements to this
release:
* Alex Henrie
* Chris Heywood
* Mario Ravalli
Thanks also to all who contributed translations, for the user
interface:
* Asier Sarasua Garmendia (eu)
* Daniel Mustieles (es)
* Emin Tufan Çetin (tr)
* Jordi Mas (ca)
* Piotr Drąg (pl)
And for the user manual:
* Daniel Mustieles (es)
* Emin Tufan Çetin (tr)
Version 3.35.1
~~~~~~~~~~~~~~~
Released: 2019-10-11
Changes:
* Improved missing attachment detection in composer
* App-wide notification preferences now handled by desktop
* Initial plugin system
* Rename development app id to org.gnome.Geary.Devel
* Publish nightly devel Flatpak builds to nightly.gnome.org
* Tighten Flatpak sandbox permissions
* Convert Flatpak manifest to YML
* Roll up bugs fixed in 3.34.1
* Add libpeas dependency
* Drop libcanberra dependency
* Update meson dependency to >= 0.50
* Misc bug fixes and code cleanup
Thanks to all who contributed code fixes and enhancements to this
release:
* Alex Henrie
* Bilal Elmoussaoui
* João Loureiro
* Konstantin Kharlamov
Thanks also to all who contributed translations, for the user
interface:
* Asier Sarasua Garmendia (eu)
* Marek Černocký (cs)
And for the user manual:
* Marek Černocký (cs)
* Piotr Drąg (pl)
Version 3.33.91
~~~~~~~~~~~~~~~
Released: 2019-09-11
Bugs fixed:
* Background sync being cancelled on folder close
* Retry IMAP pool connections on GLib "Unknown error on connect"
* Temporarily replace WebKitGTK process model API with env var
* Conditionally enable WebKitGTK shared secondary process model
Thanks also to all who contributed translations, for the user
interface:
* Anders Jonsson (sv)
* Efstathios Iosifidis (el)
* Rafael Fontenelle (pt_BR)
* Ryuta Fujii (ja)
* Zander Brown (en_GB)
And for the user manual:
* Anders Jonsson (sv)
Version 3.33.90
~~~~~~~~~~~~~~~
Released: 2019-08-30
Enhancements included in this release:
* Sent email is now immediately added to a conversation
* Loading large search results now much more smooth
* Background synchronisation reliability greatly improved
* Messages can be replied to via by a different account
* Added a number of keyboard shortcuts for common operations
* Support for Development and Beta build profiles
* Bug causing Geary to use 100% CPU fixed
* Numerous bug fixes and user interface improvements
* Numerous user interface translation updates
Thanks to all who contributed code fixes and enhancements to this
release:
* Alex Henrie
* Christopher Davis
* Federico Bruni
* Jiří Černý
* Joe Barnett
* Jon Banafato
* Khurshid Alam
* Konstantin Kharlamov
* Mario Ravalli
* Mete Can Eris
* Rafael Fontenelle
* Rico Tzschichholz
Thanks also to all who contributed translations, for the user
interface:
* Bruce Cowan (en_GB)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Federico Bruni (it)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Rodrigo Lledó (es)
And for the user manual:
* Emin Tufan Çetin (tr)
* Federico Bruni (it)
Version 3.33.1
~~~~~~~~~~~~~~
Released: 2019-04-28
"Better late than never"
Enhancements included in this release:
* Improved conversation performance
* Add dependency on libhandy
* Add IMAP and SMTP integration tests
* Added support for TNEF attachments
* Added Inspector window for real-time debugging
* Updated symbolic images
* Switched from libnotify to GNotify
* Added support for TNEF attachments
* Added support for application activation via DBus
* Add Inspector for real-time debugging
* Integrate desktop contacts into contacts popover
* Update the user manual
* Improved server compatibility
* Numerous bug fixes and user interface improvements
* Numerous user interface translation updates
Thanks to all who contributed code fixes and enhancements to this
release:
* Christopher Davis
* Greg V
* Jiří Černý
* Jonathan Haas
* Kalev Lember
* Konstantin Kharlamov
* Niels De Graef
* Oliver Giles
* Rico Tzschichholz
* Tobias Bernard
Thanks also to all who contributed translations, for the user
interface:
* Anders Jonsson (sv)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Federico Bruni (it)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Piotr Drąg (pl)
* Rodrigo Lledó (es)
* Tim Sabsch (de)
And for the user manual:
* Piotr Drąg (pl)
Version 3.32
~~~~~~~~~~~~
Released: 2019-03-17
Enhancements included in this release:
* Application menu moved to the main window
* Desktop contacts are used for sender images
* Unknown contacts are given personalised initials and colour
* Updated application icons
* Improved server compatibility
* Custom email CSS now applied to Composer view
Thanks to all who contributed code fixes and enhancements to this
release:
* Bilal Elmoussaoui
* Christian Kellner
* Christopher Davis
* Jakub Steiner
* Jan Tojnar
* Joel Duncan
* Konstantin Kharlamov
* Kristian Klausen
* p3732
* Rico Tzschichholz
* Thomas Moschny
Thanks also to all who contributed translations, for the user
interface:
* Alexandre Franke (fr)
* Anders Jonsson (sv)
* Ask Hjorth Larsen (da)
* Balázs Úr (hu)
* Bernd Homuth (de)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Fabio Tomat (fur)
* Jiri Grönroos (fi)
* Nathan Follens (nl)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Ryuta Fujii (ja)
* Serdar Sağlam (tr)
* Tim Sabsch (de)
Version 0.13
~~~~~~~~~~~~
Released: 2019-02-17
Enhancements included in this release:
* Unread email count is now updated correctly
* Conversations load faster, smoother with better feedback
* Support for email accounts added via GNOME Online Accounts
* Improved account creation and management user interface
* Email flagged as deleted but not removed by other apps now hidden
* Individual messages in a conversation can be deleted
* Internal links in HTML email now work
* Supported ordered and unordered lists in the composer
* Rich text pasting improvements in the composer
* Plain text versions of rich text mail includes formatting
* Detached composers now remember their last used size
* Better reporting when a login, security or other problem occurs
* Reduced background synchronisation CPU use
* Improved handling when going online and offline
* Show an in-application notification when email has been sent
* Flag possibly spoofed email addresses
* Improve privacy when sending email using an alias
* Subject, sender and date are being shown when printed again
* Server compatibility improvements
* Build, testing and other infrastructure improvements
* Numerous bug fixes and minor user interface improvements
* Numerous user interface translation updates
Thanks to all who contributed code fixes and enhancements to this
release, including a number of new contributors:
* Adrien Plazas
* Alex Henrie
* Andre Klapper
* Erik Faye-Lund
* Federico Bruni
* Gautier Pelloux-Prayer
* Georges Basile Stavracas Neto
* Greg V
* James Magahern
* Jan Tojnar
* Jiri Cerny
* Joel Duncan
* john
* Jordan Petridis
* Juraj Fiala
* Kacper Bielecki
* Michael Catanzaro
* nick richards
* Niels De Graef
* Nikolas Tapia
* Oskar Viljasaar
* Piotr Drąg
* Rico Tzschichholz
Thanks also to all who contributed translations, for the user
interface:
* Alan Mortensen (da)
* Anders Jonsson (sv)
* Ask Hjorth Larsen (da)
* Balázs Meskó (hu)
* Balázs Úr (hu)
* Baurzhan Muftakhidinov (kk)
* Carlos Abel Córdova Sáenz (es)
* Christian Schröder (de)
* Claude Paroz (fr)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Dušan Kazik (sk)
* Emin Tufan Çetin (tr)
* Federico Bruni (it)
* Frank Brütting (de)
* GNOME Translation Robot (nl)
* Isaac Ferreira Filho (pt_BR)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Josef Andersson (sv)
* Kristjan SCHMIDT (eo)
* Kukuh Syafaat (id)
* Marek Cernocky (cs)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Nathan Follens (nl)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Ryuta Fujii (ja)
* Sabri Ünal (tr)
* Stas Solovey (ru)
* Tim Sabsch (de)
* Yuras Shumovich (be)
And for the user manual:
* Anders Jonsson (sv)
* Emin Tufan Çetin (tr)
* Federico Bruni (it)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Muhammet Kara (tr)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
Version 0.12
~~~~~~~~~~~~
Released: 2017-10-02
Enhancements included in this release:
* Insert images inline when composing rich text messages
* Improved interface for inserting links in rich text messages
* Choose multiple spell-checker languages when composing messages
* Support message archiving for Yahoo! Mail and Outlook.com
* Improved interface when displaying conversations
* Improved interface when moving and labelling conversations
* Improved support for right-to-left languages
* Automatically unfold starred messages in a conversation
* Support saving remote inline images
* Improved keyboard navigation for conversations
* Added in-application keyboard shortcut help (Ctrl + ?)
* Support for distribution via Flatpak
* Improved security when displaying messages
* Numerous bug fixes and minor user interface improvements
* Numerous user interface translation updates
Thanks to all who contributed code fixes and enhancements to this release, in
particular the many first-time contributors:
* Alex Henrie
* Colin Vidal
* Federico Bruni
* Gautier Pelloux-Prayer
* Heiko Becker
* Jeremy Bicha
* Jiri Cerny
* Kacper Bielecki
* Leonardo Robol
* Michael Gratton
* Michael James Gratton
* Niels De Graef
* Oskar Viljasaar
* Piotr Drąg
* Ralph Plawetzki
* Rico Tzschichholz
* Timo Kluck
* Ville Korhonen
* Yosef Or Boczko
Thanks also to the many that contributed translations, for the user interface:
* Alan Mortensen (da)
* Alexandre Franke (fr)
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Ask Hjorth Larsen (da)
* Aurimas Černius (lt)
* Balázs Meskó (hu)
* Balázs Úr (hu)
* Baurzhan Muftakhidinov (kk)
* Benedikt M. Thoma (de)
* Daniel Korostil (uk)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Dušan Kazik (sk)
* Emin Tufan Çetin (tr)
* E T (tr)
* Federico Bruni (it)
* Flo H (de)
* Gábor Kelemen (hu)
* Hannie Dumoleyn (nl)
* hanniedu (nl)
* Jeremy Bicha (bs)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Josef Andersson (sv)
* Kjartan Maraas (nb)
* Laudivan Freire de Almeida (pt_BR)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Muhammet Kara (tr)
* Piotr Drąg (hi) (hu) (ja) (km) (ms) (pl) (nl) (sl) (sr@latin)
* Rafael Fontenelle (pt_BR)
* Ronan Arraes Jardim Chagas (pt_BR)
* Stas Solovey (ru)
* Tiago Santos (pt)
* Wolfgang Stöggl (de)
* Yosef Or Boczko (he)
* Мирослав Николић (sr) (sr@latin)
And for the user manual:
* Anders Jonsson (sv)
* Andre Klapper (el)
* Christian Kirbach (de)
* Daniel Mustieles (es)
* Federico Bruni (it)
* Josef Andersson (sv)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
Geary 0.11.0 - 15 May 2016
--------------------------
* Add archive special folder support (#713986)
-- Emersion
* Add is:read, is:unread: is:starred search operators (#726661)
-- Matthew Wong
* Fix using more than search operator - to:, from:, etc. (#749938)
-- Matthew Wong
* Work around crashes caused by WebKitGTK+ 2.4.10 (#764152, #763933)
-- Adam Dingle, Michael Gratton
* Fix a crash when searching (#765515)
* Fix images not being displayed in some HTML messages (#764919)
* Fix empty main window when opened from notification (#763961)
* Fix UI freezing when network connections are lost (#757088)
* Work better with Cyrus & other servers when network unreliable (#757166)
* Enable use of custom FTS3 tokeniser in SQLite 3.12 and later (#763203)
* Fix inconsistent Composer 'Detach' button placement (#757110)
-- Ralph Plawetzki
* Documentation improvements (#764848, #749925)
-- Florin Lipan, Robert Schroll
* Update deb module dependencies (#749931, #748464)
-- Robert Schroll
* Updated UI translations: