-
Notifications
You must be signed in to change notification settings - Fork 21
/
NEWS
2759 lines (2153 loc) · 84.8 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-EWS 3.54.0 2024-09-13
-------------------------------
Translations:
Alan Mortensen (da)
Anders Jonsson (sv)
Bruce Cowan (en_GB)
Piotr Drąg (pl)
Sabri Ünal (tr)
Evolution-EWS 3.53.3 2024-08-30
-------------------------------
Translations:
Asier Sarasua Garmendia (eu)
Balázs Úr (hu)
Juliano de Souza Camargo (pt_BR)
Evolution-EWS 3.53.2 2024-08-02
-------------------------------
Bug Fixes:
I#276 - m365: Slow search with "Message contains"
I#277 - Contacts: Offline GAL not searched with "manual query" views
I#278 - m365: Workaround MIME send server's reencode with forced base64
M!11 - OAuth2: Implement prompter cookie interface for Intune support (Felix Moessbauer)
Miscellaneous:
CI: Update dependencies in the Flatpak manifest
m365: Calendar: Ability to create Online meeting
Misc: Extract common code into a new shared library
Translations:
Boyuan Yang (zh_CN)
Jürgen Benvenuti (de)
Martin (sl)
Yuri Chornoivan (uk)
Evolution-EWS 3.53.1 2024-06-28
-------------------------------
Bug Fixes:
I#263 - Misspelling of "than" in translatable string
I#267 - m365: Accepting event sends mail to each recipient
I#273 - m365: Cannot import ICS calendar file
I#274 - m365: A removed task in the web app is not removed in Evolution
I#275 - Mails sent only to the first recipient in the list
eds-I#518 - WebDAV: Handle `Retry-After` header on 503 error
evo-I#2230 - Configurable timeout for WebDAV sources
evo-I#2687 - Calendar: Allow entering cancellation reason on meeting deletion
Miscellaneous:
Do not include buildir in libecalbackendews.so
m365: Calendar: Correct read of file attachments
m365: Calendar: Read detached and deleted instances of event series
m365: Calendar: Write detached and deleted instances of event series
m365: Calendar: Fix a memory leak when loading event/task
m365 Camel: Auto-save store summary on folder count changes
m365 Camel: Send messages as MIME data
m365: Fix a memory leak in m365_folder_merge_server_user_flags()
CI: Workaround broken git clone for libcanberra
Translations:
Andika Triwidada (id)
Aurimas Černius (lt)
Bruce Cowan (en_GB)
Daniel Rusek (cs)
Ekaterine Papava (ka)
Jürgen Benvenuti (de)
Martin (sl)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution-EWS 3.52.0 2024-03-15
-------------------------------
Bug Fixes:
I#264 - Use OAuth2 protocol 2.0 by default
Miscellaneous:
build: Correct overlinking on the m365 part
SetupBuildFlags.cmake: Remove "-Wl,--no-undefined" from compiler flags
Replace https://wiki.gnome.org/Apps/Evolution in the sources
Translations:
Alan Mortensen (da)
Balázs Úr (hu)
Daniel Rusek (cs)
Piotr Drąg (pl)
Rūdolfs Mazurs (lv)
Evolution-EWS 3.51.3 2024-03-01
-------------------------------
Bug Fixes:
I#259 - Retract dialog can duplicate cancellation mails
I#260 - Do not change organizer when adding meeting from mail
I#261 - Impersonate mailbox uses original user's connection
eds-I#522 - build: Make sure tests run in serial
Translations:
Anders Jonsson (sv)
Asier Sarasua Garmendia (eu)
Sabri Ünal (tr)
Evolution-EWS 3.51.2 2024-02-09
-------------------------------
Bug Fixes:
I#256 - Calendar: Store "Web page" in ExtendedProperty
Miscellaneous:
build: Bump CMake version requirement to 3.15
Translations:
Pavel Koulikov (ru)
Evolution-EWS 3.51.1 2024-01-05
-------------------------------
Bug Fixes:
I#245 - Enable Microsoft365 (Microsoft Graph API) part in preview mode
I#246 - Search in online GAL when OAB is misconfigured
I#247 - Text from .error file not translated in the GUI
I#248 - Calendar: Don't convert UTC times to local timezone
I#250 - Mail: Calendar attachments can be broken by the server
I#251 - Workaround Outlook 2019 ORGANIZER and ATTENDEE addition into plain events
evo-I#935 - Camel: Populate message preview with server-side value
M!9 - Fix scope for OAuth2 v2 being hard-coded to O365 (Mara Sophie Grosch)
Miscellaneous:
build: Use -Wshadow build option, if available
Microsoft365: Read Organizational Contacts and Users
Update Flatpak manifest
Translations:
Alan Mortensen (da)
Boyuan Yang (zh_CN)
Florentina Mușat (ro)
Jürgen Benvenuti (de)
Kukuh Syafaat (id)
Martin (sl)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution-EWS 3.50.0 2023-09-15
-------------------------------
Miscellaneous:
Calendar: Unlock connection lock before refreshing the calendar on component load
ci: Rename org.gnome.evolution-ews.nightly to org.gnome.EvolutionEws.Devel
Translations:
Aurimas Černius (lt)
Daniel Rusek (cs)
Martin Srebotnjak (sl)
Evolution-EWS 3.49.3 2023-09-01
-------------------------------
Bug Fixes:
I#241 - Ask for credentials when access token refresh fails
Miscellaneous:
EWS calendar: Do not link against Evolution libraries
Translations:
Anders Jonsson (sv)
Boyuan Yang (zh_CN)
Jürgen Benvenuti (de)
Sabri Ünal (tr)
Evolution-EWS 3.49.2 2023-08-04
-------------------------------
Bug Fixes:
I#238 - Parse XML responses in recovery mode
I#242 - Calendar: Provide user comments in the invitation response
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
Miscellaneous:
OALComboBox: Always prefer collection ESource when fetching list of OABs
Translations:
Balázs Úr (hu)
Danial Behzadi (fa)
Evolution-EWS 3.49.1 2023-06-30
-------------------------------
Bug Fixes:
I#225 - Mail: Add per-folder option to always check for new mail
I#232 - Sometimes fails to delete recurring event occurrence
I#234 - Ask for OAuth2 credentials for autodiscovery
Miscellaneous:
DOAP: Update mailing-list URL; add link to Discourse support-forum (Andre Klapper)
CI: Use org.freedesktop.Sdk.Extension.vala in nightly flatpak manifest
Translations:
Andika Triwidada (id)
Asier Sarasua Garmendia (eu)
Enrico Nicoletto (pt_BR)
Hugo Carvalho (pt)
Jiri Eischmann (cs)
Мирослав Николић (sr)
Piotr Drąg (pl)
Sabri Ünal (tr)
Sergej A (ru)
Yuri Chornoivan (uk)
Evolution-EWS 3.48.0 2023-03-17
-------------------------------
Translations:
Piotr Drąg (pl)
Sabri Ünal (tr)
Evolution-EWS 3.47.3 2023-03-03
-------------------------------
Bug Fixes:
I#223 - OAuth2: Add option to use version 2.0 of the API
Translations:
Anders Jonsson (sv)
Aurimas Černius (lt)
Balázs Úr (hu)
Jürgen Benvenuti (de)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution-EWS 3.47.2 2023-02-10
-------------------------------
Bug Fixes:
I#210 - Add option to always use HTTP/1
I#211 - Calendar: Cover possible ID conversion for Online meetings
I#216 - Calendar: Ensure TimeZone info in SOAP-header request
I#219 - Disabled sources auto-re-enabled the next start
I#220 - Calendar: Convert floating time to user's timezone on save
I#221 - Subscribed free/busy calendar does not show all events
Miscellaneous:
Enable GitLab CI for easier testing of the changes
Remove duplicated OAuth2 code
Sanitize headers in debug log also for level 1
Translations:
Alan Mortensen (da)
Anders Jonsson (sv)
Goran Vidović (hr)
Piotr Drąg (pl)
Sabri Ünal (tr)
Yuri Chornoivan (uk)
Evolution-EWS 3.47.1 2023-01-06
-------------------------------
Bug Fixes:
I#153 - Limit Subject/Summary/Location text length
I#201 - EWS: Subscription with subfolders doesn't find subfolders
I#206 - Can't change Authentication Method back to NTLM
Miscellaneous:
Handle negative value for GUri's port
ews_store_subscribe_folder_sync: Turn two runtime warnings into regular errors
Microsoft365: Use 'To-Do' API for tasks
EwsConnect: Early stop a response traversal
ESoapResponse: Allow NULL for some traversal functions
ebb_ews_mailbox_to_contact: Fix a memory leak
Microsoft365: Implement raw MIME message upload
Microsoft365: Correct task Due and Completed date read
EEwsPhotoSource: Do not use GTask thread pool, but use its own serialized pool
Camel: Remove invalid 'else' in ews_get_folder_info_sync()
EWS: GetFolderPermissions response lost
EEwsNotification: Re-subscribe when current subscription fails
Fix visibility of "Subscribe to folder of other EWS user" menu option
Fix a small memory leak when updating EWS foreign subfolders
Correct response read of SetUserOofSettingsRequest
EEwsOooNotificator: Change how timeout callback is removed
EEwsOooNotificator: Simplify response code to the alert
Subscribe foreign folder dialog does not close on success
EEwsSearchUser: Fix a small memory leak
ecb_ews_get_timezone: Check for non-NULL `tzid` to avoid runtime warning
Translations:
Alan Mortensen (da)
Anders Jonsson (sv)
Asier Sarasua Garmendia (eu)
Balázs Úr (hu)
Goran Vidović (hr)
Hugo Carvalho (pt)
Jürgen Benvenuti (de)
Kukuh Syafaat (id)
Мирослав Николић (sr)
Nathan Follens (nl)
Piotr Drąg (pl)
Rafael Fontenelle (pt_BR)
Yuri Chornoivan (uk)
Evolution-EWS 3.46.0 2022-09-16
-------------------------------
Translations:
Emin Tufan Çetin (tr)
Enrico Nicoletto (pt_BR)
Evolution-EWS 3.45.3 2022-09-02
-------------------------------
Translations:
Balázs Úr (hu)
Boyuan Yang (zh_CN)
Goran Vidović (hr)
Evolution-EWS 3.45.2 2022-08-05
-------------------------------
Bug Fixes:
I#89 - Calendar: Ability to create Online meeting
I#191 - Calendar: Fix occurrence index counter
Miscellaneous:
Remove false runtime check in ews_connection_notification_start_thread()
Microsoft365: Split iCalendar component manipulation code into separate file
Use uhttpmock 0.9 for internal tests
Translations:
Anders Jonsson (sv)
Jürgen Benvenuti (de)
Kukuh Syafaat (id)
Piotr Drąg (pl)
Yuri Chornoivan (uk)
Evolution-EWS 3.45.1 2022-07-01
-------------------------------
* The Evolution-EWS had been ported to libsoup3, which means anything what
uses it, and all of its dependencies, should be libsoup3 too.
Bug Fixes:
I#178 - Correct display of folder size
I#189 - Specify FolderClass when creating generic folder only
M!6 - Port to libsoup3
M!8 - Typos: dont -> don't (Дилян Палаузов)
Miscellaneous:
Address some of the static analyzers warnings
build: Limit which parts link to the evolution libraries (and gtk+)
EWS registry backend: Handle gracefully when Host URL is not set
EEwsConnection: try_credentials() may end with 'Forbidden' error
Addressbook: Re-use authenticated connection for OAB operations
Translations:
Alan Mortensen (da)
Anders Jonsson (sv)
Boyuan Yang (zh_CN)
Jürgen Benvenuti (de)
Nathan Follens (nl)
Piotr Drąg (pl)
Rafael Fontenelle (pt_BR)
Yuri Chornoivan (uk)
Мирослав Николић (sr)
Evolution-EWS 3.44.0 2022-03-18
-------------------------------
Translations:
Asier Sarasua Garmendia (eu)
Balázs Úr (hu)
Dušan Kazik (sk)
Emin Tufan Çetin (tr)
Jordi Mas i Hernandez (ca)
Evolution-EWS 3.43.3 2022-03-04
-------------------------------
Bug Fixes:
M!7 - OAuth2: Remove prompt=login parameter from auth URL (Brian J. Murrell)
Evolution-EWS 3.43.2 2022-02-11
-------------------------------
Bug Fixes:
I#77 - Can sometimes stop listening for server notifications
Miscellaneous:
Misc: Correct response print in debug output
Retry on Unauthorized response when server disconnected
e-ews-connection: Clear cached connection before sending a request
Translations:
Daniel Mustieles (es)
Daniel Șerbănescu (ro)
Evolution-EWS 3.43.1 2022-01-07
-------------------------------
Bug Fixes:
I#3 - Contacts: Retrieve user certificate
I#163 - GAL: Postpone user photo download
I#165 - Contacts: Support categories
I#166 - Unable to set follow-up flag without a due date
I#174 - Silently retry on I/O errors (like 'Connection terminated unexpectedly')
evo-I#1637 - EMailAutoconfig: Autoconfig with Exchange accounts
Miscellaneous:
ConfigLookup: Change values saved to the lookup result
ConfigLookup: Remove duplicated 'if'
Addressbook: Fix two memory leaks
Use `g_assert_true()` instead of `g_assert()` in the unit tests
Misc: Hide some headers' value in EWS_DEBUG=2 output
Translations:
Anders Jonsson (sv)
Andika Triwidada (id)
Aurimas Černius (lt)
Enrico Nicoletto (pt_BR)
Goran Vidović (hr)
Jordi Mas (ca)
Marek Černocký (cs)
Piotr Drąg (pl)
Yuri Chornoivan (uk)
Мирослав Николић (sr)
Evolution-EWS 3.42.0 2021-09-17
-------------------------------
Translations:
Aurimas Černius (lt)
Nathan Follens (nl)
Balázs Úr (hu)
Evolution-EWS 3.41.3 2021-09-03
-------------------------------
Miscellaneous:
EEwsConnection: Release queue lock as soon as possible in ews_next_request() (Milan Crha)
Translations:
Rodrigo Lledó (es)
Marek Černocký (cs)
Evolution-EWS 3.41.2 2021-08-13
-------------------------------
Miscellaneous:
Adapt to e_alert_add_action() API change (Milan Crha)
ESoupAuthNegotiate: Improve thread safety (Milan Crha)
ESoupAuthNegotiate: Fix two memory leaks (Milan Crha)
Translations:
Andika Triwidada (id)
Evolution-EWS 3.41.1 2021-07-09
-------------------------------
Bug Fixes:
I#150 - Mail: Message redirect sends also to original Cc/Bcc (Milan Crha)
I#151 - Calendar: Teams meeting may have invalid timezone information (Milan Crha)
I#152 - Declining Single Calendar Event Results in Declining the Whole Series (Milan Crha)
I#154 - Add an option to reset sync tags (Milan Crha)
I#155 - Contacts: Birthday/Anniversary before Epoch ignored (Milan Crha)
I#156 - Set FolderClass when creating a new folder (Milan Crha)
I#157 - Mail: Do not re-encode message on append (Milan Crha)
eds-M!68 - SetupBuildFlags.cmake: Correct testing of two compiler/linker build flags (Matt Turner)
Miscellaneous:
PrintableOptions.cmake: Correct variable name comparison (Milan Crha)
Calendar: Clamp the timezone component when saving meeting time (Milan Crha)
Translations:
Alexey Rubtsov (ru)
Anders Jonsson (sv)
Asier Sarasua Garmendia (eu)
Daniel Șerbănescu (ro)
Gianvito Cavasoli (it)
Nathan Follens (nl)
Piotr Drąg (pl)
Rafael Fontenelle (pt_BR)
Yuri Chornoivan (uk)
Мирослав Николић (sr)
Evolution-EWS 3.40.0 2021-03-19
-------------------------------
Translations:
Enrico Nicoletto (pt_BR)
Alan Mortensen (da)
Marek Černocký (cs)
Balázs Úr (hu)
Johannes Maibaum (de)
Evolution-EWS 3.39.3 2021-03-12
-------------------------------
Bug Fixes:
I#144 - Calendar: Dismiss of a reminder doesn't provide recurrence ID (Milan Crha)
I#145 - Calendar: Cannot create event with reminder "at the start" (Milan Crha)
M!5 - Correct typos in a/an (Дилян Палаузов)
Miscellaneous:
CMake: Add FORCE_INSTALL_PREFIX compile time option (Milan Crha)
Allocate large-enough buffer for g_base64_decode_step() (Milan Crha)
Translations:
Balázs Úr (hu)
Daniel Mustieles (es)
Emin Tufan Çetin (tr)
Yuri Chornoivan (uk)
Anders Jonsson (sv)
Kukuh Syafaat (id)
Piotr Drąg (pl)
Aurimas Černius (lt)
Philipp Kiemle (de)
Evolution-EWS 3.39.2 2021-02-12
-------------------------------
Bug Fixes:
I#140 - Calendar: Do not add organizer as the only attendee in Import (Milan Crha)
I#141 - Mail: Drop to account name hides dragged folder (Milan Crha)
Miscellaneous:
Sync GLibTools.cmake with Evolution-Data-Server (Milan Crha)
e-ews-notification: Add thread safety around get_events thread (Milan Crha)
Translations:
Jordi Mas (ca)
Anders Jonsson (sv)
Мирослав Николић (sr)
Evolution-EWS 3.39.1 2021-01-08
-------------------------------
Bug Fixes:
I#90 - Handle share folder invitation mails (Milan Crha)
I#120 - Created public folder not visible after restart (Milan Crha)
I#121 - Allow change of the Microsoft 365 OAuth2 endpoints (Milan Crha)
I#123 - Show HTML Description in calendar entries, when available (Milan Crha)
I#132 - Server-side deleted calendar does not disappear (Milan Crha)
eds-I#281 - GLibTools.cmake: Use basename in glib-mkenums templates (Milan Crha)
eds-I#286 - Skip collection account refresh when parts disabled (Milan Crha)
evo-I#1097 - Provide HTML invitation description, when available (Milan Crha)
Miscellaneous:
EEwsConfigLookup: Harmonize a translatable string with Evolution (Milan Crha)
Allow OAuth2 for any server, not only for outlook.office365.com (Milan Crha)
Listen for change notifications only on user folders (Milan Crha)
Flip Application ID and Tenant ID in the OAuth2 properties (Milan Crha)
Simplify code around OAuth2 processing (Milan Crha)
Preset OAuth2 Client ID for Office365 (EWS) (Milan Crha)
Calendar: Copy 'X-MICROSOFT-SKYPETEAMSMEETINGURL' into 'URL' property (Milan Crha)
Bump glib requirement to 2.62, due to used functions from that version (Milan Crha)
Fix new compiler warnings introduced by GLib minimum version bump (Milan Crha)
Prefill compile-time OAuth2 settings, to be shown in the GUI (Milan Crha)
GLibTools.cmake: Generate signal marshallers without source reference (Milan Crha)
EEwsNotification: Use proxy settings from the connection object (Milan Crha)
Translations:
Goran Vidović (hr)
Yuri Chornoivan (uk)
Piotr Drąg (pl)
Daniel Mustieles (es)
Marek Černocký (cs)
Andika Triwidada (id)
Anders Jonsson (sv)
Aurimas Černius (lt)
Henrique Machado Campos (pt_BR)
Enrico Nicoletto (pt_BR)
Jordi Mas (ca)
Jordi Mas i Hernandez (ca)
Evolution-EWS 3.38.0 2020-09-11
-------------------------------
Translations:
Mario Blättermann (de)
Aurimas Černius (lt)
Evolution-EWS 3.37.92 2020-09-04
--------------------------------
Bug Fixes:
I#117 - Task completion date shifted by user's zone UTC offset (Milan Crha)
I#118 - Camel: Claim required credentials when authentication fails (Milan Crha)
eds-I#208 - Avoid race condition when refreshing collection backend (Milan Crha)
Translations:
Yuri Chornoivan (uk)
Zander Brown (en_GB)
Piotr Drąg (pl)
Daniel Mustieles (es)
Rafael Fontenelle (pt_BR)
Evolution-EWS 3.37.90 2020-08-07
--------------------------------
Bug Fixes:
I#66 - Adapt the timezones test (Milan Crha)
I#66 - Correct how tests use uhttpmock (Milan Crha)
I#111 - Correct license comments in the source files (Milan Crha)
Miscellaneous:
Provided SoupAuth might not be always used by libsoup (Milan Crha)
Add (disabled by default) Microsoft 365 (Graph API) connector (Milan Crha)
Evolution-EWS 3.37.3 2020-07-03
-------------------------------
Bug Fixes:
evo-I#982 - 'Message contains'-search broken in 3.36.3 (Milan Crha)
Miscellaneous:
PrintableOptions.cmake: Sync the file with Evolution changes (Milan Crha)
camel_ews_folder_new: Remove useless reference on the CamelSettings (Milan Crha)
Translations:
Daniel Șerbănescu (ro)
Evolution-EWS 3.37.2 2020-05-29
-------------------------------
Bug Fixes:
I#99 - All-day events date shown by one day off (Milan Crha)
I#102 - Hidden folders are displayed normally in the UI (Milan Crha)
I#103 - Can't subscribe to a folder of a user whom is not in GAL (Milan Crha)
Miscellaneous:
SetupBuildFlags.cmake: Use -Werror=implicit-function-declaration only for C code compilation (Milan Crha)
EEwsNotification: Change how subscription to server change notifications work (Milan Crha)
Add parameter check into ews_get_error_code() (Milan Crha)
Evolution-EWS 3.37.1 2020-04-24
-------------------------------
Bug Fixes:
I#45 - Event time shifted by an hour after edit for some time zones (Milan Crha)
evo-I#831 - Free/Busy times are not in UTC (Milan Crha)
Translations:
Goran Vidović (hr)
Yuri Chornoivan (uk)
Aurimas Černius (lt)
Evolution-EWS 3.36.0 2020-03-06
-------------------------------
Miscellaneous:
No code/translation changes
Evolution-EWS 3.35.92 2020-02-28
--------------------------------
Translations:
Anders Jonsson (sv)
Rafael Fontenelle (pt_BR)
Serdar Sağlam (tr)
Balázs Úr (hu)
Nathan Follens (nl)
Evolution-EWS 3.35.91 2020-02-14
--------------------------------
Bug Fixes:
I#77 - Can sometimes stop listening for server notifications (Milan Crha)
I#84 - Fails to create event with no duration (Milan Crha)
I#85 - Map 'tzone://Microsoft/Utc' to libical's 'UTC' (Milan Crha)
Miscellaneous:
Mark connection disconnected only when disconnecting backend/store (Milan Crha)
Translations:
Kukuh Syafaat (id)
Evolution-EWS 3.35.90 2020-01-31
--------------------------------
Bug Fixes:
Bug 731454 - Add option to set number of concurrent connections to use (Milan Crha)
I#61 - Add option to show public folders beside user folders (Milan Crha)
I#67 - Be able to edit display name of a calendar (Milan Crha)
I#78 - Verify also URL validity in account settings (Milan Crha)
Miscellaneous:
Allow enter distinguished folder names when subscribing to other user's folder (Milan Crha)
Prefer GSlice over heap allocation for short-lived structures (Milan Crha)
Translations:
Daniel Mustieles (es)
Piotr Drąg (pl)
Kukuh Syafaat (id)
Evolution-EWS 3.35.3 2020-01-03
-------------------------------
Bug Fixes:
I#81 - Attachment flag not shown on messages with attachment (Milan Crha)
Translations:
Rafael Fontenelle (pt_BR)
Evolution-EWS 3.35.2 2019-11-22
-------------------------------
Bug Fixes:
I#52 - Disable iTip message send when copy/move meeting between calendars (Milan Crha)
I#70 - Fails to delete one instance of a recurring event (Milan Crha)
Miscellaneous:
Reject creating meetings organized by other users (Milan Crha)
Some meetings shown as plain events (Milan Crha)
Disconnect signal handlers on connection object in dispose of book/calendar backend (Milan Crha)
Translations:
Jordi Mas (ca)
Piotr Drąg (pl)
Daniel Mustieles (es)
Anders Jonsson (sv)
Andika Triwidada (id)
Evolution-EWS 3.35.1 2019-10-11
-------------------------------
Bug Fixes:
I#64 - "Listen for server notifications" does not work with OAuth2 (Milan Crha)
I#65 - "High priority" flag ignored on message send (Milan Crha)
I#66 - Update list of unknown timezones for a unit test (Milan Crha)
I#69 - Send meeting change notifications only if being the organizer (Milan Crha)
I#71 - Color/Score assigned by filter lost on message move (Milan Crha)
Miscellaneous:
Prefill email address as user name when creating new account (Milan Crha)
Autodiscover: Do not change user name with RedirectAddr (Milan Crha)
Translations:
Марко Костић (sr)
Asier Sarasua Garmendia (eu)
Evolution-EWS 3.34.0 2019-09-09
-------------------------------
Miscellaneous:
No code/translation changes
Evolution-EWS 3.33.92 2019-09-02
--------------------------------
Bug Fixes:
I#60 - Messages deleted in public folders cannot be moved to Deleted Items (Milan Crha)
Miscellaneous:
Fix a memory leak in camel_ews_store_ensure_virtual_folders() (Milan Crha)
Translations:
Anders Jonsson (sv)
Bruce Cowan (en_GB)
Petr Kovář (cs)
Evolution-EWS 3.33.91 2019-08-19
--------------------------------
Bug Fixes:
I#55 - Consider mail aliases when searching for an attendee property (Milan Crha)
I#56 - README: Correct typo (bby-bishopclark)
I#57 - Birthday date of Contact depends on system timezone (Milan Crha)
evo-I#568 - Set GtkLabel's width-chars when using line-wrap (Milan Crha)
Evolution-EWS 3.33.90 2019-08-05
--------------------------------
Translations:
Rafael Fontenelle (pt_BR)
Evolution-EWS 3.33.4 2019-07-15
-------------------------------
Bug Fixes:
I#53 - Add support for "redirectAddr" in autodiscovery (Milan Crha)
M!3 - Prefer g_string_append_c() over g_string_append() (Дилян Палаузов)
M!4 - Ignore the return value of g_string_append() (Дилян Палаузов)
Miscellaneous:
Fix few memory leaks in e_cal_backend_ews_rid_to_index() (Milan Crha)
Count with an ICalTimezone without internal component in ewscal_set_availability_timezone() (Milan Crha)
Categories property cannot be deleted (Milan Crha)
Translations:
Daniel Mustieles (es)
Kukuh Syafaat (id)
Evolution-EWS 3.33.3 2019-06-17
-------------------------------
Bug Fixes:
I#42 - Check also DNS SRV _autodiscover._tcp during autodiscover (Milan Crha)
I#49 - Test suite is failing (Milan Crha)
eds-I#120 - Fails to build with libasan using Clang (undefined symbols) (Milan Crha)
eds-M!15 - Fix typos in CMake modules (Дилян Палаузов)
Miscellaneous:
Fix issues found during 'make check' (Milan Crha)
Fix some compiler warnings reported by Clang in the test code (Milan Crha)
Translations:
Balázs Úr (hu)
Evolution-EWS 3.33.2 2019-05-20
-------------------------------
Bug Fixes:
eds-M!14 - Correct typo in a comment in the main CMakeLists.txt (Дилян Палаузов)
Miscellaneous:
Add refresh interval options to non-mail sources (Milan Crha)
Port to libecal-2.0 and adapt to address book API changes (Milan Crha)
Translations:
Daniel Mustieles (es)
Piotr Drąg (pl)
Evolution-EWS 3.33.1 2019-04-22
-------------------------------
Bug Fixes:
I#39 - Let handle recurring task completion by the server (Milan Crha)
I#41 - Unreachable EWS service causes Calendar(s) to disappear (Milan Crha)
M!1 - Simplify OAuth2 for outlook.office365.com server (Luca Boccassi)
M!2 - Correct memory leak and typo in e_ews_autodiscover_ws_url() (Дилян Палаузов)
eds-I#94 - Remove -Wabi from the default C++ warning flags (Milan Crha)
Miscellaneous:
Use lower-case "mailto:" consistently in the code (Milan Crha)
Translations:
Марко Костић (sr)
Tim Sabsch (de)
Rafael Fontenelle (pt_BR)
Piotr Drąg (pl)
Kukuh Syafaat (id)
Evolution-EWS 3.32.0 2019-03-11
-------------------------------
Translations:
Nathan Follens (nl)
Evolution-EWS 3.31.91 2019-02-18
--------------------------------
Miscellaneous:
Implement 'exists' ESExp function in the book backend (Milan Crha)
Evolution-EWS 3.31.90 2019-02-04
--------------------------------
Bug Fixes:
I#25 - Canceled meetings remain in the calendar with Canceled: title (Milan Crha)
I#30 - Double values should use dot as decimal separator in XML (Milan Crha)
I#31 - Duplicate attendees in meetings from Office365.com (Milan Crha)
I#32 - Run ResolveNames for "Any field contains" searches (Milan Crha)
Miscellaneous:
Use also -DCAMEL_DISABLE_DEPRECATED=1 in the maintainer mode (Milan Crha)
Translations:
Balázs Úr (hu)
Evolution-EWS 3.31.4 2019-01-07
-------------------------------
Translations:
Anders Jonsson (sv)
Evolution-EWS 3.31.3 2018-12-10
-------------------------------
Bug Fixes:
eds-I#54 - Enable 'Listen for server change notifications' by default (Milan Crha)
I#27 - SSL Certificates are not validated (Milan Crha)
Miscellaneous:
Fix a build break with glib pre-2.54 and bump libsoup version to 2.58 (Milan Crha)
Correct how extra compiler warnings are used in the maintainer mode (Milan Crha)
Translations:
Kukuh Syafaat (id)
Rafael Fontenelle (pt_BR)
Aurimas Černius (lt)
Evolution-EWS 3.31.2 2018-11-12
-------------------------------
Bug Fixes:
I#17 - [Calendar] Retry item download on ErrorBatchProcessingStopped error (Milan Crha)
I#18 - Crashes when reading EWS Global Address List (Milan Crha)
I#23 - Autodiscovery uses EXCH URLs instead of EXPR (Milan Crha)
I#24 - Sync CategoryList with mail Labels (Milan Crha)
Miscellaneous:
Make sure intltool-merge cache is created only once (Milan Crha)
Translations:
Piotr Drąg (pl)
Marek Cernocky (cs)
Rafael Fontenelle (pt_BR)
Anders Jonsson (sv)
Matej Urbančič (sl)
Daniel Mustieles (es)
Alan Mortensen (da)
Evolution-EWS 3.31.1 2018-10-08
-------------------------------
Bug Fixes:
I#8 - Handle 'Persistent-Auth: false' when provided by the server (Milan Crha)
I#14 - Let edit Permissions of root message folder (Milan Crha)
I#19 - Country is forgotten along the way to exchange server (Milan Crha)
I#21 - Meeting with attachment cannot be saved in 2010 (Milan Crha)
Miscellaneous:
Calendar invites added with the wrong time zone (Milan Crha)
Fix an invalid unref call and a memory leak of an EEwsConnection object (Milan Crha)
Enable only Notification reminders in the calendar (Milan Crha)
Treat 'Unknown' ResponseType as Needs-Action (Milan Crha)
Collection backend schedules two 'populate' requests after going online (Milan Crha)
Translations:
Balázs Meskó (hu)
Anders Jonsson (sv)
Alan Mortensen (da)
Marek Cernocky (cs)
Jordi Mas (ca)
Daniel Mustieles (es)
Evolution-EWS 3.30.0 2018-09-03
-------------------------------
Miscellaneous:
No code/translation changes
Evolution-EWS 3.29.92 2018-08-27
--------------------------------
Translations:
Kukuh Syafaat (id)
Evolution-EWS 3.29.91 2018-08-13
--------------------------------
Translations:
Mario Blättermann (de)
Jordi Mas (ca)
Evolution-EWS 3.29.90 2018-07-30
--------------------------------
Bug Fixes:
I#10 - All day event times broken after drag&drop in Work Week view (Milan Crha)
I#11 - Updated Draft message not re-downloaded (Milan Crha)
Translations:
Bruce Cowan (en_GB)
Carles Ferrando Garcia (ca)
Evolution-EWS 3.29.4 2018-07-16
-------------------------------
Bug Fixes:
Bug 796297 - Make it possible to not request RSVP (all-or-nothing) ][ (Milan Crha)
eds-I#12 - vCard REV attribute should be a timestamp (Milan Crha)
I#4 - Automatic junk filtering doesn't work (Milan Crha)
I#5 - Cannot set/change task priority (Milan Crha)
I#2 - Silently ignore broken items on fetch in calendars (Milan Crha)
I#6 - Add 'Subscribe to folder of other EWS user' into File menu (Milan Crha)
I#7 - Event timezone not always properly set on the server (Milan Crha)
Miscellaneous:
Use Unicode '...' in translatable strings (Milan Crha)
Fix few memory leaks around gtk_tree_view_new_with_model() (Milan Crha)
Translations:
Daniel Mustieles (es)
Rafael Fontenelle (pt_BR)
Piotr Drąg (pl)
Evolution-EWS 3.29.3 2018-06-18
-------------------------------
Bug Fixes:
Bug 796297 - Make it possible to not request RSVP (all-or-nothing) (Milan Crha)
Bug 795870 - Add a way to initiate refresh of account sources (Milan Crha)
Miscellaneous:
Update a maintainer in the DOAP file (Milan Crha)
Update bug URL and switch to https:// in the DOAP file (Milan Crha)
Missing build dependency for gdbus-codegen on input .xml file (Milan Crha)