summaryrefslogtreecommitdiff
path: root/NEWS
blob: 07eab37e9f73d19655a9b628e4952bb90dbf55cb (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
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
Overview of changes in 3.48.0
=============================

* Translation updates

Overview of changes in 3.47.1
=============================

* Build fixes [#226]
* Expired Kerberos tickets not re-acquired on resume from suspend [#160]
* Update CalDAV/CardDAV OwnCloud endpoints [#67]
* Attempt to cope with multiple credential caches per identity [#79]
* Error in solving Nextcloud account address [#243]
* Translation updates

Overview of changes in 3.46.0
=============================

* Build system fixes with recent Meson
* Updated translations
  - Catalan

Overview of changes in 3.45.2
=============================

* Use debugging messages instead of warnings
* Fix documentation build
* Updated translations
  - Abkhazian

Overview of changes in 3.45.1
=============================

* Removed providers
  - Foursquare [#184]
  - Facebook [#184]
  - Flickr [!86]

* Port to libsoup3 [!73]
* Port to librest-1.0 [#186]
* Drop the Autotools build [!89]
* Update the Google OAuth2 provider [!79]

Overview of changes in 3.44.0
=============================

* Bugs fixed:
 !69 Add .gitlab-ci.yml
 !70 Update Fedora logo
 !78 Silence -Wincompatible-pointer-types with GCC 11

* Updated translations:
 Icelandic


Overview of changes in 3.43.1
=============================

* Remove Documents support (!66)

* Bugs fixed:
 !67 doc: Update
 !68 dbus: Add missing since tag for IsSupportedProvider

* Updated translations:
 Bulgarian
 Catalan
 Nepali
 Occitan
 Portuguese
 Vietnamese


Overview of changes in 3.39.92
==============================

* Last.fm is enabled by default (#134)

* Bugs fixed:
  #76 web-extension-main: Remove unnecessary and unused entry point
  #92 kerberos-identity: Handle information-only prompts when signing in
 #139 client: Mention that goa_client_get_manager might return NULL

* Updated translations:
 Catalan
 Galician
 Norwegian bokmål
 Punjabi


Overview of changes in 3.38.0
=============================

* Updated translations:
 Bengali (India)
 Hebrew
 Portuguese


Overview of changes in 3.37.90
==============================

* Bugs fixed:
  !52 daemon: Remove the --no-sigint flag and always handle SIGINT
  !53 Update the manual
 #125 webview: Enable web process sandbox

* Updated translations:
 Simplified Chinese
 Kazakh
 Ukrainian


Overview of changes in 3.36.0
=============================

* Updated translations:
 Finnish
 Kurdish (Sorani)


Overview of changes in 3.35.90
==============================

* Bugs fixed:
 !41 Polish some rough edges in the Meson build
 !43 build: Remove AC_ISC_POSIX
 !44 build: Remove AC_HEADER_STDC
 !45 kerberos-identity-manager: Remove unused signal handler ID
 #43 daemon, dbus: Enable checking if a provider type is supported

* Updated translations:
 Croatian
 English (British)
 Japanese
 Malay


Overview of changes in 3.35.3
=============================

* Remove Pocket (!18)

* Bugs fixed:
 !36 Drop the priv pointer from the GObject instance structures
 !37 Port away from deprecated GLib API like g_memove and g_get_current_time
 !39 webview: Port to JSCValue
 !40 Use the G_DECLARE_* macros to reduce GObject boilerplate
 #83 Add Exchange and Last.fm icons

* Updated translations:
 Galician
 Russian


Overview of changes in 3.35.1
=============================

* Bugs fixed:
 #8 icons: Unbreak providers without any visual identity

* Updated translations:
 Basque
 Catalan
 Traditional Chinese (Taiwan)
 Czech
 Danish
 Dutch
 Finnish
 French
 Friulian
 Galician
 German
 Greek
 Hungarian
 Indonesian
 Italian
 Japanese
 Korean
 Latvian
 Lithuanian
 Persian
 Polish
 Portuguese (Brazilian)
 Punjabi
 Romanian
 Serbian
 Slovak
 Slovenian
 Spanish
 Swedish
 Turkish


Overview of changes in 3.33.91
==============================

* Support Fedora Account System (#26)

* Bugs fixed:
    !21 owncloud: Use "Nextcloud", not "ownCloud", in user-visible errors
    !23 build: Allow building with gettext ≥ 0.20
    !26 webview: Make it more flexible in terms of its size
    !28 kerberos: Use GTask's task data slot to leverage the compiler
    !29 daemon: Return a D-Bus error if AddAccount fails to list all providers
    !30 kerberos: Use GTask's task data slot to leverage the compiler
    #73 build: Support the use of g_autolist with GoaObject
 764157 Port to GTask from GSimpleAsyncResult

* Updated translations:
 Basque
 Czech
 German
 Indonesian
 Karbi
 Lithuanian
 Polish
 Romanian
 Spanish
 Swedish


Overview of changes in 3.32.0
=============================

* Updated translations:
 Basque
 Finnish
 Gaelic (Scottish)
 Icelandic


Overview of changes in 3.31.90
==============================

* Bugs fixed:
    !17 icons: Replace PNGs with SVGs and add symbolics
    !19 google: Only request the email field when getting the user's identity
 796095 alarm: Refresh Kerberos tickets after a suspended system is resumed

* Updated translations:
 Afrikaans
 French
 Japanese
 Kabyle


Overview of changes in 3.31.3
=============================

* Remove Todoist

* Bugs fixed:
    !14 build: Don't define _POSIX_PTHREAD_SEMANTICS and _REENTRANT
    !15 identity: Port away from deprecated g_type_class_add_private
 764157 Port to GTask from GSimpleAsyncResult

* Updated translations:
 Belarusian
 Esperanto
 Estonian
 Malayalam


Overview of changes in 3.30.0
=============================

* Updated translations:
 Arabic


Overview of changes in 3.29.91
==============================

* Bugs fixed:
  !2 build: Fix #FooObject style links
  !8 Remove additional unnecessary GDestroyNotify casts
 #10 build: Silence warning about _FORTIFY_SOURCE requiring optimization


Overview of changes in 3.29.4
=============================

* Bugs fixed:
 !2 Port to meson build system

* Updated translations:
 Occitan


Overview of changes in 3.29.1
=============================

* Remove Telepathy support (795322)

* Updated translations:
 Simplified Chinese
 Czech


Overview of changes in 3.28.0
=============================

* Updated translations:
 Traditional Chinese (Taiwan)
 French
 Greek
 Italian
 Russian
 Swedish


Overview of changes in 3.27.92
==============================

* Updated translations:
 Catalan
 Croatian
 Czech
 Danish
 Dutch
 English (British)
 Friulian
 Gaelic (Scottish)
 Galician
 German
 Hungarian
 Kazakh
 Korean
 Latvian
 Lithuanian
 Polish
 Portuguese (Brazilian)
 Romanian
 Serbian
 Serbian Latin
 Slovak
 Slovenian
 Spanish
 Turkish
 Vietnamese


Overview of changes in 3.27.3
=============================

* Bugs fixed:
 764157 Port to GTask from GSimpleAsyncResult
 781005 Cookies from previous session are not cleared from the web view
 787250 Migrate from Intltool to Gettext
 789187 Fedora Kerberos account can't be added

* Updated translations:
 Croatian
 Czech
 Friulian
 German
 Hebrew
 Icelandic
 Italian
 Indonesian
 Lithuanian
 Nepali
 Norwegian bokmål
 Polish
 Portuguese (Brazilian)
 Russian
 Serbian
 Slovak
 Slovenian
 Spanish
 Turkish


Overview of changes in 3.27.1
=============================

* Bugs fixed:
 788769 build: Make the Git submodules work with Web proxies

* Updated translations:
 Catalan (Valencian)
 Croatian


Overview of changes in 3.26.1
=============================

* Updated translations:
 Bulgarian
 Persian
 Russian


Overview of changes in 3.26.0
=============================

* Updated translations:
 Basque
 Danish
 Greek
 Italian
 Swedish
 Vietnamese


Overview of changes in 3.25.92
==============================

* Updated translations:
 Belarusian
 Traditional Chinese (Taiwan)
 Danish
 Dutch
 Finnish
 Friulian
 French
 German
 Korean
 Latvian
 Polish
 Portuguese (Brazilian)
 Serbian


Overview of changes in 3.25.90
==============================

* Bugs fixed:
 758716 Accept-Language header not being set since the WebKit2 port
 785649 build: Fix build when no Kerberos libraries are available
 785726 facebook: Make it work with Graph API > 2.3
 786007 flickr: Doesn't show the permissions page after logging in

* Updated translations:
 Croatian
 Czech
 Galician
 German
 Kazakh
 Malayalam
 Nepali
 Slovenian
 Spanish
 Turkish


Overview of changes in 3.25.4
=============================

* Bugs fixed:
 784512 pocket: CRITICALs from ensure_credentials_sync
 784513 build: Fix Kerberos never being automatically enabled
 784944 Clean up public headers and remove unused code paths

* Updated translations:
 Belarusian
 Catalan
 Friulian
 Hungarian
 Indonesian
 Lithuanian
 Slovak
 Spanish


Overview of changes in 3.25.3
=============================

* Support Todoist (780138)

* Telepathy is disabled by default

* Bugs fixed:
 686131 kerberos: Prevent cryptic error string from leaking into the UI
 760440 backend: Use constructor to setup gettext
 770542 build: Fix running autogen.sh outside $srcdir
 772305 Advertise non-STARTTLS support for GMail
 779368 provider: Use an info bar for accounts needing attention

* Updated translations:
 Belarusian
 Croatian
 Esperanto
 Friulian
 German
 Greek
 Hebrew
 Indonesian
 Kazakh
 Norwegian bokmål
 Serbian
 Slovenian
 Spanish
 Turkish
 Vietnamese


Overview of changes in 3.24.0
=============================

* Updated translations:
 Czech
 Danish
 Finnish
 French
 Friulian
 Galician
 German
 Hungarian
 Indonesian
 Italian
 Kazakh
 Korean
 Latvian
 Lithuanian
 Polish
 Portuguese (Brazilian)
 Russian
 Slovak
 Swedish
 Turkish
 Ukrainian


Overview of changes in 3.23.92
==============================

* Bugs fixed:
 778416 live: Re-title it as "Microsoft"
 778417 Capitalize "Account" in the dialog's title
 779548 Don't leak the name_owner and result in
        dbus_proxy_reload_properties_sync

* Updated translations:
 Croatian
 Danish
 Icelandic
 Italian
 Kazakh
 Korean
 Lithuanian


Overview of changes in 3.23.91
==============================

* Bugs fixed:
 778353 Disconnect all signal handlers from the GtkDialog once add_account is
        done
 778779 Improve the spacing between UI elements

* Updated translations:
 Basque
 Traditional Chinese (Taiwan)
 Finnish
 French
 Galician
 Hungarian
 Portuguese (Brazilian)
 Serbian
 Swedish
 Ukrainian


Overview of changes in 3.23.90
==============================

* Bugs fixed:
 772205 Use double quotes instead of single quotes in translatable strings

* Updated translations:
 Belarusian
 Catalan
 Czech
 Danish
 Friulian
 German
 Indonesian
 Kazakh
 Norwegian bokmål
 Polish
 Russian
 Slovak
 Spanish


Overview of changes in 3.23.4
=============================

* Bugs fixed:
 764157 Port to GTask from GSimpleAsyncResult
 765121 Memory leak in goa-daemon
 768515 Add support for Nextcloud
 776871 Broken error handling in on_got_identity_for_sign_out
 776897 The invocation is leaked when handling ExchangeSecretKeys and SignOut
 776906 Miscellaneous fixes and improvements to add_temporary_account

* Updated translations:
 Czech
 Hungarian
 Kazakh
 Norwegian bokmål
 Spanish


Overview of changes in 3.23.3
=============================

* New API key for Google

* Bugs fixed:
 738315 IRC: network selection appears broken
 769267 kerberos: Specify an icon
 774176 Don't depend needlessly on X11
 774205 oauth, oauth2: Remove borders from widgets

* Updated translations:
 Basque
 Simplified Chinese
 Traditional Chinese (Taiwan)
 Croatian
 Dutch
 English (British)
 Italian
 Norwegian bokmål
 Ukrainian


Overview of changes in 3.21.92
==============================

* Experimental account templates support (771366)

* Updated translations:
 Bulgarian
 Danish
 Finnish
 Galician
 Gaelic (Scottish)
 Greek
 Hebrew
 Kazakh
 Korean
 Latvian
 Lithuanian
 Persian
 Russian
 Swedish
 Thai
 Turkish
 Vietnamese


Overview of changes in 3.21.91
==============================

* Bugs fixed:
 770610 daemon: Clean-up the memory management of our GKeyFile instances

* Updated translations:
 French
 Friulian
 Hungarian
 Polish
 Serbian
 Slovenian


Overview of changes in 3.21.90
==============================

* Bugs fixed:
 688041 daemon: Ensure temporary accounts are really removed from the keyring
 755386 pocket: Support logging in with a Firefox account
 756431 identity: Don't leak the GoaObject from find_object_with_principal
 764157 Port to GTask from GSimpleAsyncResult
 768808 identity: Silence -Wincompatible-pointer-types
 769213 Let goa_provider_show_account have more control over the UI

* Updated translations:
 Czech
 Friulian
 German
 Gujarati
 Hebrew
 Hungarian
 Indonesian
 Lithuanian
 Portuguese (Brazilian)
 Spanish
 Slovak


Overview of changes in 3.21.4
=============================

* Bugs fixed:
 756431 identity: Don't leak the invocation when handling SignIn
 764157 Port to GTask from GSimpleAsyncResult
 766733 kerberos, telepathy: Stopping goa-daemon removes account or expires
        credentials
 767914 Offer a simple mechanism to introspect the available providers and
        services
 768808 identity: Clean up the credential cache and don't keep trying to sign
        in if we encounter a failure
 768845 kerberos: Don't leak the GSimpleAsyncResult and object_path when
        signing in

* Updated translations:
 Indonesian
 Polish
 Slovak
 Vietnamese


Overview of changes in 3.21.3
=============================

* Bugs fixed:
 688041 Don't let temporary accounts accumulate in accounts.conf and the
        keyring
 760991 lastfm: Don't forget to update the ret variable
 762155 Skip EnsureCredentials if the account is disabled
 764157 Port to GTask from GSimpleAsyncResult
 764283 Misc usability improvements to the imap-smtp provider
 765994 org.gnome.OnlineAccounts.Account:IsTemporary is not being set
 766733 kerberos, telepathy: Stopping goa-daemon removes account or expires
        credentials
 767299 Adding a Telepathy account is racy due after adding a headerbar

* Updated translations:
 Catalan
 German
 Indonesian
 Occitan
 Portuguese
 Portuguese (Brazilian)
 Spanish
 Turkish


Overview of changes in 3.21.1
=============================

* Bugs fixed:
 756495 identity: fix renewal requests for kernel keyring based tickets
 764157 Port to GTask from GSimpleAsyncResult
 765455 goa-daemon --help shows translated characters as question marks on
        some locales

* Updated translations:
 Basque
 Bulgarian
 Simplified Chinese
 Friulian
 Gaelic (Scottish)
 Hungarian
 Japanese
 Persian
 Portuguese


Overview of changes in 3.20.0
=============================

* Updated translations:
 Danish
 Friulian
 Italian
 Serbian
 Serbian Latin
 Turkish


Overview of changes in 3.19.92.1
================================

* Bugs fixed:
 763078 Documentation missing from tarball


Overview of changes in 3.19.92
==============================

* Bugs fixed:
 756495 identity: don't ignore almost all renewal requests
 761262 alarm, daemon: Avoid using %m for errors
 761510 Factorize common code in GoaBackend::build_object()
 762097 httpclient: Don't hard-code "Connection: close" in the request headers
 762155 kerberos: Do not use goa_object_peek_* in threaded code
 762548 Fix the dialogs' dimensions with newer GTK+
 763078 build: Update autogen.sh from GNOME recommendation

* Updated translations:
 Catalan
 Finnish
 Galician
 Greek
 Hebrew
 Korean
 Latvian
 Lithuanian
 Occitan
 Russian
 Serbian
 Slovenian
 Swedish
 Ukrainian


Overview of changes in 3.19.90
==============================

* Bugs fixed:
 755316 backends: Factorize common code in credential handling
 756498 kerberos: Fail early on ticket request when ticketing disabled
 760991 imap-smtp: EnsureCredentials returns TRUE even when smtp-password
        can't be found and an error is set
 761188 Use primary@REALM as the presentation identity for temporary accounts
 761510 Factorize common code in GoaBackend::build_object()

* Updated translations:
 Bulgarian
 Traditional Chinese (Taiwan)
 Czech
 French
 Friulian
 German
 Hungarian
 Kazakh
 Polish
 Portuguese (Brazilian)
 Slovak
 Slovenian
 Spanish
 Vietnamese


Overview of changes in 3.19.4
=============================

* Bugs fixed:
 758475 Examples fail if backend is disabled
 759571 build: Add Vala bindings
 759828 google: Do not support chat when telepathy is disabled
 760189 Don't require Telepathy when built with --disable-telepathy

* Updated translations:
 Aragonese
 German
 Portuguese (Brazilian)
 Russian
 Vietnamese


Overview of changes in 3.19.3
=============================

* Bugs fixed:
 751524 Network changes cause authentication token timeouts
 758361 Crash in mail_client_check_auth_run_cb when goa_mail_auth_run fails

* Updated translations:
 Slovenian
 Swedish


Overview of changes in 3.19.2
=============================

* Bugs fixed:
 755316 imap-smtp: Fix typo in error message
 757952 org.gnome.Identity.service.in is missing from tarball
 758361 smtp-auth: Plug leaks in error handling

* Updated translations:
 Simplified Chinese
 Gaelic (Scottish)
 Hebrew
 Hungarian
 Lithuanian
 Portuguese
 Spanish
 Turkish


Overview of changes in 3.19.1
=============================

* Bugs fixed:
 752736 owncloud: Doesn't work with non-standard ports
 754142 icons: Shiny new Google icons
 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
 756759 provider, telepathy: Small leak fixes

* Updated translations:
 Basque
 Czech
 Danish
 Finnish
 Galician
 German
 Greek
 Hungarian
 Indonesian
 Italian
 Japanese
 Kazakh
 Korean
 Norwegian bokmål
 Persian
 Portuguese
 Portuguese (Brazilian)
 Russian
 Serbian
 Serbian Latin
 Swedish
 Turkish
 Vietnamese


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