summaryrefslogtreecommitdiff
path: root/NEWS
blob: 0d6bd885246523a4c7a888f1853090bfce6d66da (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
Overview of changes in 3.18.1
=============================

* Bugs fixed:
 752736 owncloud: Doesn't work with non-standard ports
 755168 owncloud, exchange: Sanitize HTTP error messages
 755315 lastfm: Leak fixes
 756394 identity: Allow multiple simultaneous sign-in requests from one sender
 756494 identity: Don't ever nullify identifier

* Updated translations:
 Basque
 Traditional Chinese (Taiwan)
 Finnish
 Greek
 Vietnamese


Overview of changes in 3.18.0
=============================

* Bugs fixed:
 754142 icons: Shiny new Google icons

* Updated translations:
 Traditional Chinese (Taiwan)
 Czech
 Danish
 Galician
 German
 Greek
 Hungarian
 Indonesian
 Italian
 Korean
 Lithuanian
 Persian
 Portuguese
 Russian
 Serbian
 Serbian Latin
 Turkish


Overview of changes in 3.17.92.1
================================

* Bugs fixed:
 754142 build: Ensure that the new 96x96 HiDpi icons actually get installed

* Updated translations:
 Japanese
 Kazakh
 Portuguese (Brazilian)
 Swedish


Overview of changes in 3.17.92
==============================

* Support Last.fm (728621)

* Bugs fixed:
 751128 build: Make it possible to disable the backend build
 754142 icons: Provide HiDpi variants
 754840 examples: Print out keys for all the accounts

* Updated translations:
 Traditional Chinese (Taiwan)
 Finnish
 French
 Persian
 Polish
 Slovak
 Spanish
 Swedish


Overview of changes in 3.17.91
==============================

* Add org.gnome.OnlineAccounts.Music D-Bus interface (705969)

* Bugs fixed:
 693578 Refresh credentials at startup and network changes
 750392 Avoid NULL pointer dereference when EWS autodiscover fails
 750479 process_config_entries uses a non-existent variable
 750897 Fix parallel installation failure
 752270 configure script uses pkg-config without checking for it
 752939 Several leak fixes
 752941 Add generic GoaProvider::show_account() implementation
 752964 google: Stop identifying ourselves as Android

* Updated translations:
 Aragonese
 Catalan
 Traditional Chinese (Taiwan)
 French
 Friulian
 Dutch
 Galician
 German
 Greek
 Hebrew
 Hungarian
 Indonesian
 Italian
 Kazakh
 Korean
 Lithuanian
 Norwegian bokmål
 Polish
 Portuguese
 Portuguese (Brazilian)
 Romanian
 Russian
 Slovak
 Slovenian
 Spanish
 Swedish
 Turkish


Overview of changes in 3.17.2
=============================

* Foursquare is enabled by default

* Remove Yahoo! support (721061)

* Bugs fixed:
 710764 live: "Microsoft Account" is the common parlance nowadays and new icons
 739593 Separate identity service off into its own process
 739594 kerberos: Support refreshing smartcard authenticated kerberos tickets
 742680 Port to WebKit2
 744165 telepathy: "use this account for external calls" checkbox is not
        working
 745004 facebook: Restore a wrongly deleted string
 746540 Add some spacing between the service name and its switch

* Updated translations:
 Arabic
 Bosnian
 Bulgarian
 Simplified Chinese
 Czech
 Danish
 Finnish
 German
 Greek
 Hebrew
 Indonesian
 Italian
 Kazakh
 Korean
 Norwegian bokmål
 Occitan
 Polish
 Portuguese (Brazilian)
 Serbian
 Slovak
 Slovenian
 Swedish
 Tajik
 Thai
 Turkish
 Ukrainian


Overview of changes in 3.15.90
==============================

* Remove Facebook chat support (745004)

* Bugs fixed:
 742651 ewsclient, httpclient: Stop using deprecated SoupSessionAsync

* Updated translations:
 Aragonese
 Simplified Chinese
 Traditional Chinese (Taiwan)
 French
 Friulian
 Galician
 Greek
 Hebrew
 Icelandic
 Japanese
 Kazakh
 Slovak
 Swedish
 Turkish


Overview of changes in 3.15.4
=============================

* Bugs fixed:
 743044 ewsclient: httpclient: Don't crash or deadlock during clean up

* Updated translations:
 Basque
 Czech
 Hungarian
 Indonesian
 Lithuanian
 Norwegian bokmål
 Portuguese (Brazilian)
 Russian
 Slovenian
 Swedish


Overview of changes in 3.15.3
=============================

* Support Foursquare (729837)

* Updated translations:
 Basque
 German
 Hungarian
 Spanish
 Turkish


Overview of changes in 3.15.2
=============================

* Bugs fixed:
 739009 google: Add support for files
 739168 facebook: Add fallback to get presentation id
 739590 Memory leak fixes
 739593 kerberos: A pile of fixes

* Updated translations:
 Aragonese
 Czech
 Esperanto
 Greek
 Hebrew
 Russian
 Vietnamese


Overview of changes in 3.15.1
=============================

* Support locked accounts (737656)

* Bugs fixed:
 736749 oauth2: Silence uninit_use_in_call from Coverity
 737549 Fix a life-cycle issue that affected gnome-initial-setup
 737721 daemon: Allow account ID to be provided for new accounts

* Updated translations:
 Bulgarian
 Kazakh
 Norwegian bokmål
 Portuguese
 Russian
 Spanish


Overview of changes in 3.14.0
=============================

* Updated translations:
 Bengali (India)
 Simplified Chinese
 Danish
 Hindi
 Japanese
 Kannada
 Nepali
 Serbian
 Ukrainian


Overview of changes in 3.13.92
==============================

* Bugs fixed:
 736407 media-server: Use a hyphen instead of underscore in provider type

* Updated translations:
 Finnish
 Galician
 German
 Hungarian
 Italian
 Korean
 Latvian
 Marathi
 Nepali
 Polish
 Punjabi
 Slovak
 Slovenian
 Swedish
 Tamil


Overview of changes in 3.13.91
==============================

* Updated translations:
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Czech
 French
 Gujarati
 Hebrew
 Indonesian
 Japanese
 Oriya
 Persian
 Telugu


Overview of changes in 3.13.90
==============================

* Updated translations:
 Assamese
 Basque
 Catalan
 Catalan (Valencian)
 Dutch
 Friulian
 Gaelic (Scottish)
 Greek
 Lithuanian
 Norwegian bokmål
 Portuguese (Brazilian)
 Russian
 Spanish
 Thai
 Turkish


Overview of changes in 3.13.3
=============================

* Add a whitelist for providers (729173)

* Support media servers (730890)

* Bugs fixed:
 693689 google: Add support for tasks
 699553 Crash in ews_client_autodiscover_data_free()
 707299 alarm: Don't translate private classes
 729638 Adjust the UI so that we can use a header bar in the dialog
 730041 ewsclient: Autodiscover XML can contain multiple Protocol elements
 731531 daemon: Don't try to remove non-existent GSource
 731614 webview: Ensure that mouse and keyboard events reach the inspector

* Updated translations:
 Traditional Chinese (Taiwan)
 German
 Hungarian
 Norwegian bokmål
 Slovenian
 Swedish
 Turkish


Overview of changes in 3.13.2
=============================

* Bugs fixed:
 728877 google: Add support for photos
 729389 build: Remove deprecated call to GNOME_COMMON_INIT
 729638 Adjust the UI so that we can use a header bar in the dialog
 729718 Dramatically simplify alarm logic to stop timerfd leaks
 729740 facebook: Add support for maps
 729864 goaalarm: small memory leak fix
 729865 identity: fix another principal leak
 729874 identity: don't leak default credentials cache
 730810 flickr: Use SSL

* Updated translations:
 Catalan (Valencian)
 Czech
 Indonesian
 Lithuanian
 Norwegian bokmål
 Portuguese (Brazilian)
 Spanish


Overview of changes in 3.13.1
=============================

* Remove Twitter support (660273, 721061)

* Remove Windows Live chat support (728787)

* Bugs fixed:
 726353 kerberos: Leaking credentials, cursors, principals and GDateTime
 726570 build: Use Makefile.introspection
 726609 Popup is too small to display Facebook authorization
 727896 IdentityService crashes on startup if KerberosIdentityManager could
        not be created
 727957 Broken check for non-empty strings

* Updated translations:
 Basque
 Belarusian
 Catalan
 Simplified Chinese
 Traditional Chinese (Taiwan)
 Danish
 Finnish
 French
 Friulian
 German
 Greek
 Hungarian
 Italian
 Japanese
 Khmer
 Korean
 Latvian
 Norwegian bokmål
 Polish
 Portuguese
 Punjabi
 Russian
 Serbian
 Slovak
 Slovenian


Overview of changes in 3.11.90
==============================

* Pocket is enabled by default (724300)

* Bugs fixed:
 723926 Replace GOA logging with GLib logging

* Updated translations:
 Aragonese
 Assamese
 Traditional Chinese (Taiwan)
 Czech
 Galician
 Gaelic (Scottish)
 Hebrew
 Indonesian
 Lithuanian
 Portuguese (Brazilian)
 Spanish
 Ukrainian


Overview of changes in 3.11.5
=============================

* Bugs fixed:
 689609 Remove unused GoaSpinnerButton widget
 720262 imap-smtp: Export the SASL mechanism used for SMTP
 723370 google: Add support for printers

* Updated translations:
 Aragonese
 Assamese
 Simplified Chinese
 Czech
 Dutch
 Finnish
 Gaelic (Scottish)
 Galician
 Hebrew
 Kannada
 Lithuanian
 Norwegian bokmål
 Portuguese (Brazilian)
 Spanish
 Tajik


Overview of changes in 3.11.4
=============================

* Support Pocket (704564)

* Bugs fixed:
 720632 Replace deprecated GtkStock

* Updated translations:
 Aragonese
 Simplified Chinese
 Galician
 German
 Greek
 Indonesian
 Kannada
 Lithuanian
 Norwegian bokmål
 Portuguese (Brazilian)
 Slovenian
 Spanish
 Tajik


Overview of changes in 3.11.3
=============================

* Bugs fixed:
 701500 facebook: Add support for photos
 712535 telepathy: Documentation fixes
 712843 main: Be quieter during normal bootup
 720446 google: Request profile scope

* Updated translations:
 Simplified Chinese
 Dutch
 Norwegian bokmål
 Tamil


Overview of changes in 3.11.2
=============================

* Support kernel keyring based Kerberos accounts (707402, 710116)

* Bugs fixed:
 699491 kerberos: Don't crash when an identity could not be looked up
 704564 webview: Add some debug code to show an inspector
 705395 goaidentity: Fix deadlock in goaalarm on_cancelled
 706614 build: use enable_telepathy variable
 706664 Fix and simplify the use of GtkGrid inside show_account
 706803 Disable GSettings in tp-aw
 706894 Cannot set the avatar for Telepathy accounts
 706987 Ignore MSN Telepathy account type
 707005 telepathy: The en_US spelling is "initialize", not "initialise"
 707006 Update to new webkitgtk-2.1.90 API
 707435 Miscellaneous string fixes
 707916 google: Add the OAuth2 scope for CardDAV
 708399 telepathy: Choose better icons
 708462 Adding Google or Facebook accounts adds a second Jabber account
 708832 oauth2: Propagate the error if the dialog is dismissed during refresh
 708975 kerberos: still consuming 100% CPU
 709103 identity: don't queue two temporary accounts for one identity
 709393 live: Add support for mail
 709570 oauth2: Don't parse the DOM to detect access_denied
 709953 goaalarm: add locks when setting up timers
 709955 kerberos: correctly show sign in errors when mistyping password
 710363 Adapt to changes in the redirect URI used by Facebook
 711472 live: Does not update MailEnabled
 711572 kerberos: don't crash if keyring credentials disappear
 711696 kerberos: Leaking timerfds when we fall back to polling the ccache

* Updated translations:
 Afrikaans
 Arabic
 Assamese
 Basque
 Belarusian
 Catalan
 Catalan (Valencian)
 Simplified Chinese
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Czech
 Danish
 Dutch
 English (British)
 Esperanto
 Estonian
 Finnish
 French
 Galician
 German
 Greek
 Hebrew
 Hungarian
 Indonesian
 Irish
 Italian
 Japanese
 Kazakh
 Korean
 Latvian
 Lithuanian
 Norwegian bokmål
 Persian
 Polish
 Portuguese
 Portuguese (Brazilian)
 Punjabi
 Russian
 Serbian
 Slovak
 Slovenian
 Spanish
 Tajik
 Turkish
 Ukrainian


Overview of changes in 3.9.90
=============================

* Support Telepathy accounts (696267)

* Bugs fixed:
 705366 build: Fix build failure due to missing IT_PROG_INTLTOOL
 706074 owncloud: Add support for documents

* Updated translations:
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Irish
 Tajik


Overview of changes in 3.9.5
============================

* Fixed license notices to be consistently LGPLv2+

* Updated translations:
 Portuguese (Brazilian)


Overview of changes in 3.9.4
============================

* Flickr is enabled by default

* Bugs fixed:
 678151 flickr: Add icons
 688364 google: Don't offer a PasswordBased interface
 692176 build: Fix include paths
 692177 build: Add missing include path
 701500 facebook: Add support for photos
 702263 smtp-auth-plain: Handle multiline SMTP greetings
 702514 icons: Update the Twitter logo

* Updated translations:
 Galician
 Indonesian
 Norwegian bokmål
 Slovak
 Vietnamese


Overview of changes in 3.9.2
============================

* Updated translations:
 Hebrew
 Japanese
 Norwegian bokmål
 Slovenian
 Tajik


Overview of changes in 3.9.1
============================

* IMAP/SMTP is enabled by default

* Bugs fixed:
 657761 Don't use technical jargon in user visible strings
 660882 Drop the notification from EnsureCredentials
 669040 twitter: When verifying credentials, don't fetch the last status
 694313 Add a way to pass custom info to the provider when creating the account
 695065 build: Tell git.mk to ignore generated files
 695074 build: Fix `make distcheck` by updating the icon cache on uninstall too
 695106 Do not send the credentials before notifying the user of an invalid
        SSL certificate (CVE-2013-1799)
 695118 Avoid gtk_dialog_run() in goa_oauth2_provider_add_account()
 695355 imap-smtp: Can not do STARTTLS connections
 695559 Add translator comment to explain what None refers to
 695768 provider: Silence warnings when setting :preseed-data to NULL
 695802 imap-auth-login: Escape backslashes in passwords
 695886 Categorize providers by supported features
 695888 owncloud: Make sure Uri always ends in a trailing slash
 696085 owncloud: Can't add more than one ownCloud account
 698178 Use SoupProxyResolverDefault with GoaEwsClient and GoaHttpClient
 698203 Socket times out with gnutls3 and some TLS servers

* Updated translations:
 Aragonese
 Assamese
 Belarussian
 Catalan
 Catalan (Valencian)
 Simplified Chinese
 Czech
 Danish
 Dutch
 English (British)
 Esperanto
 Estonian
 Finnish
 French
 German
 Greek
 Gujarati
 Hebrew
 Hindi
 Hungarian
 Italian
 Kannada
 Korean
 Latvian
 Malayalam
 Norwegian bokmål
 Persian
 Polish
 Portuguese
 Portuguese (Brazilian)
 Russian
 Slovak
 Slovenian
 Tamil
 Ukranian
 Vietnamese


Overview of changes in 3.7.90
=============================

* Support IMAP/SMTP (692736)

* Bugs fixed:
 692936 oauth2: Support getting refresh_token from uri fragment
 693273 identity: Fix implicit declaration of
        goa_kerberos_identity_inquiry_new

* Updated translations:
 Catalan
 Catalan (Valencian)
 Galician
 German
 Latvian
 Lithuanian
 Malayalam
 Polish
 Punjabi
 Serbian
 Spanish
 Uyghur


Overview of changes in 3.7.5
============================

* ownCloud is enabled by default

* Bugs fixed:
 689645 provider: Desensitize and turn off the switches if there is an error
 692251 identity: Define GoaKerberosIdentity only in one header
 692276 Don't assume that secret_password_clear_sync() returns FALSE on error
 692284 Add --no-color option to suppress color output
 692285 Use g_unix_signal_add() instead of custom implementation
 692286 Better debugging messages for keyring interaction
 692768 Support notification filtering
 693214 Guard against invalid SSL certificates (CVE-2013-0240)

* Updated translations:
 Assamese
 Basque
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Friulian
 German
 Hebrew
 Norwegian bokmål
 Polish
 Portuguese
 Serbian
 Slovak
 Slovenian
 Spanish
 Uyghur


Overview of changes in 3.7.4
============================

* Bugs fixed:
 689770 google: Make the configure options match OAuth 2.0 lingo
 691122 webview: don't set the OSD style class on the whole overlay
 691142 identity: Don't leak the GoaKerberosIdentity

* Updated translations:
 Arabic
 Aragonese
 Assamese
 Bulgarian
 Simplified Chinese
 Galician
 Hebrew
 Hungarian
 Kazakh
 Lithuanian
 Norwegian bokmål
 Persian
 Polish
 Portuguese (Brazilian)
 Russian
 Slovak
 Slovenian
 Spanish
 Uyghur


Overview of changes in 3.7.3
============================

* Bugs fixed:
 689516 build: Fix passing arguments to configure from autogen.sh
 689609 Spinners are white and don't spin
 689642 Make the cancel buttons work

* Updated translations:
 Assamese
 Belarusian
 Esperanto
 Estonian
 Galician
 Kannada
 Malayalam
 Norwegian bokmål
 Slovenian
 Spanish
 Tamil


Overview of changes in 3.7.2
============================

* Add provider groups

* Bugs fixed:
 660573 icons: Shiny new ownCloud icons
 686519 oauth2: Don't add redirect_uri when grant_type=refresh_token
 687578 Allow OAuth / OAuth2 based providers to offer password based
        authentication
 687632 No notifications for PasswordBased providers for invalid passwords
 687930 .gitignore is autogenerated, remove it from version control
 687962 Kerberos: forgets the account
 688018 Kerberos: could not ensure credentials for account <myprincipal>:
        Timeout was reached

* Updated translations:
 Bengali (India)
 Czech
 Estonian
 German
 Greek
 Gujarati
 Indonesian
 Japanese
 Polish
 Russian
 Slovak
 Slovenian


Overview of changes in 3.7.1
============================

* Implement OAuth 2.0 for Google (661065)

* Support ownCloud (660573)

* Support Flickr (678151)

* Bugs fixed:
 660932 Silently fails to renew credentials if refresh_account fails
 681729 Prefill the login / email field when refreshing
 683692 Ensure that all dialogs have consistent and meaningful strings
 683911 Set up mnemonic relations
 683968 Adapt to Windows Live UI changes
 685876 Kerberos: set up primary properly
 686410 Don't enroll the machine
 686415 Kerberos: use realmd directly
 686416 Kerberos: discover and validate realm before use
 686561 Add version definitions

* Updated translations:
 Arabic
 Assamese
 Belarusian
 Bulgarian
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Catalan
 Catalan (Valencian)
 Czech
 Danish
 English (British)
 Finnish
 French
 Galician
 German
 Greek
 Gujarati
 Hebrew
 Hindi
 Hungarian
 Indonesian
 Italian
 Japanese
 Kannada
 Korean
 Latvian
 Lithuanian
 Malayalam
 Marathi
 Norwegian bokmål
 Persian
 Polish
 Portuguese
 Portuguese (Brazilian)
 Punjabi
 Russian
 Serbian
 Slovak
 Slovenian
 Spanish
 Telugu
 Thai
 Ukranian
 Vietnamese


Overview of changes in 3.5.90
=============================

* Support enterprise logins via Kerberos (679253)

* Drop the Microsoft Exchange and Windows Live icons, and use a transparent
  PNG as the fallback

* Add a goa_client_lookup_by_id API for looking up an account using its ID

Bugs fixed:
 681720 ewsclient: Fix breakage because of libxml2 API breakage

* Updated translations:
 Assamese
 Galician
 German
 Japanese
 Marathi


Overview of changes in 3.5.5
============================

* Bugs fixed:
 680622 introspection: Add exported package information to GIR

* Updated translations:
 Arabic
 Chinese
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Galician
 Greek
 Gujarati
 Hebrew
 Hindi
 Hungarian
 Norwegian bokmål
 Persian
 Russian
 Serbian
 Slovenian
 Spanish
 Telugu


Overview of changes in 3.5.4
============================

* Ported to libsecret

* Bugs fixed:
 670298 Don't display an error message if user denied access
 678907 provider: Put the providers in an order that we recommend

* Updated translations:
 Arabic
 Belarusian
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Galician
 German
 Greek
 Hebrew
 Lithuanian
 Norwegian bokmål
 Slovenian
 Spanish


Overview of changes in 3.5.3
============================

* Facebook is enabled by default

* Microsoft Exchange is enabled by default

* The AddAccount method exposed by org.gnome.OnlineAccounts.Manager now
  requires a new argument of type a{sv}. This is an API break, but no one
  should be calling it apart from the backend code implementing
  goa_provider_add_account. This was necessary to ensure that the credentials
  are stored in the keyring within the AddAccount method to avoid a race
  between the "account-added" signal being emitted and the credentials being
  actually store.

* Methods to directly interact with the keyring are no longer exported as
  public API. These were only meant to be used from within the backend and the
  daemon and were never meant to be used from applications.

* Updated translations:
 Greek


Overview of changes in 3.5.2
============================

* Bugs fixed:
 659435 New Google authentication page doesn't fit
 671980 Restrict the spinner's size and show a heading text
 675930 Facebook web authentication window too small
 676659 Remove custom CSS styling

* Updated translations:
 Belarusian
 Dutch
 Galician
 Hebrew
 Indonesian
 Punjabi
 Slovenian
 Spanish


Overview of changes in 3.5.1
============================

* Support Microsoft Exchange using EWS

* Add API to enable/disable Mail, Calendar, Contacts, Chat & Documents

* Add org.gnome.OnlineAccounts.PasswordBased D-Bus interface

* Request read and write access to a user's files stored in Skydrive

* Improve the design of the Online Accounts panel in System Settings

* Bugs fixed:
 654168 Remove the credentials from the keyring when an account is
        removed
 669042 examples: Add some basic examples
 669625 Replace GtkTable with GtkGrid
 672510 Provide better feedback to the user during authentication
 672785 daemon: Proper application name for notification
 673959 oauthprovider: Provide better error messages for request token
        failures
 674165 Handle failures to store credentials in the keyring in a
        better way
 674292 goabackend: Fix build failure with LD_FLAGS="-Wl,-z,defs"

* Updated translations:
 Catalan
 Catalan (Valencian)
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Galician
 German
 Hebrew
 Italian
 Japanese
 Norwegian bokmål
 Slovak
 Slovenian
 Spanish
 Telugu
 Vietnamese