summaryrefslogtreecommitdiffstats
path: root/NEWS
blob: 3b0943bb17de8c02be66e2324c1717961eabe1d3 (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
43.2
----

* The webkitgtk-6.0 API version is now supported, in addition to the previous
  webkit2gtk-5.0 API version.

* Bugs fixed:
 - The Shell quick settings menu will now be shown in the Initial Setup session.
   This regressed when the previous menu was renamed in gnome-shell during the
   43 cycle. (!166)

 - Error messages shown during enterprise account setup can now be closed by
   clicking the Close button. (!169)

* Translation updates:
 - Abkhazian
 - Dutch
 - Greek, Modern (1453-)
 - Icelandic

43.1
----

* Several bugs in the enterprise login flow have been fixed (#154, !160, !161).

* Translation updates:
 - Abkhazian
 - Chinese (Taiwan)
 - Czech
 - Friulian
 - Kazakh
 - Nepali
 - Occitan (post 1500)
 - Spanish
 - Turkish

43.0
----

* Translation updates:
 - Bulgarian
 - Croatian
 - French
 - Hebrew
 - Lithuanian
 - Slovenian

43.rc.1
-------

* The authentication dialog in the enterprise login page regressed in the port
  to GTK 4; in this release, its buttons are accessible once again, and its
  appearance improved. (#152)

* Translation updates:
 - Galician
 - Georgian
 - German
 - Korean
 - Latvian
 - Portuguese (Brazil)
 - Serbian

43.rc
-----

* Initial Setup no longer crashes if you attempt to use capital letters or
  periods in your username on systems that reject such usernames. Instead,
  it always forbids capital letters and periods in usernames. (#117, !30,
  thanks to Xiang Fan)

* Several regressions in the timezone page were fixed, including selecting a
  timezone by typing the name of a city and picking a location from
  the dropdown (#145, !157, Georges Stavracas) and searching for locations not
  found in the gweather database (!158).

* Page-skipping works again (!156, Adam Williamson)

* Parental Controls support now correctly requires malcontent 0.11.0's new API
  name. Beware: if libostree or libflatpak are built against libsoup2.4, then
  linking Initial Setup to libmalcontent for parental controls support will
  cause it to abort on startup, since Initial Setup also links to webkit2gtk5
  which requires libsoup3.

43.beta
-------

* Initial Setup has been ported to GTK 4, libadwaita, and friends, thanks to
  Georges Stavracas. As a result:

  - libnma-gtk4 is now required, rather than libnma.

  - GTK 4 is required in addition to GTK 3. This is because goa-backend does
    not have a GTK 4 port. Like in gnome-control-center, the use of goa-backend
    is split out into a separate process.

  - webkit2gtk5 is now required. (However, goa-backend brings a transitive
    dependency on webkit2gtk4.)

  - Since webkit2gtk5 requires libsoup 3, the soup2=true configuration option
    has been removed. Initial Setup depends on geocode-glib-2.0, and versions
    of librest and gweather4 built against libsoup 3.

  - Support for taking a selfie as your account avatar has been removed, since
    libcheese-gtk lacks a GTK 4 port, and the optional libcheese[-gtk]
    dependency is no more.

  - Parental controls support requires malcontent 0.11 which is not released
    at the time of writing.

  There is a known regression from the port: selecting a timezone by typing the
  name of a city and picking a location from the dropdown does not work. To
  work around this, click a location on the map to select a timezone. This is
  tracked as https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/issues/145
  and will be addressed in a future release.

* When systemd support is enabled, Initial Setup now installs a sysusers.d
  snippet for its user, thanks to David King.

* Translation updates:
 - Abkhazian
 - Chinese (China)
 - Galician
 - Georgian
 - Hebrew
 - Indonesian
 - Persian
 - Portuguese
 - Russian
 - Spanish
 - Swedish
 - Turkish
 - Ukrainian

43.alpha.1
----------

* When built with -Dsoup2=false (the default), Initial Setup now depends on
  geocode-glib-2.0, introduced in geocode-glib 3.26.3 as a parallel-installable,
  soup3-flavoured version of the library. When built with -Dsoup2=true, Initial
  Setup continues to depend on geocode-glib-1.0.

* Initial Setup's build system tries to detect when its dependencies are built
  against an incompatible libsoup, but there is one known case that is not
  detected at build time. If Initial Setup is built with parental controls
  enabled, the malcontent parental controls library brings with it a dependency
  on libflatpak and libostree. Neither of these libraries can currently be built
  against libsoup3. Either they must be built against  libcurl rather than
  libsoup; or Initial Setup must be built with -Dsoup2=true; or Initial Setup
  must be built with -Dparental_controls=disabled; or Initial Setup will abort
  on startup.

43.alpha
--------

* Initial Setup now builds against rest-1.0 if available, falling back to
  rest-0.7 if not. There is no meson option to control this.

* Initial Setup now builds against libsoup 3 by default. As a transitional
  measure, you can opt to build against libsoup 2 by passing -Dsoup2=true
  to meson setup. geocode-glib-1.0, gweather4, and rest (1.0 or 0.7) must
  have been built against the same version of libsoup.

* A number of Meson .wrap files for dependencies such as gweather4 have been
  removed. These dependencies are now widely available in stable distros and
  container images thereof.

* Initial Setup no longer reads gnome-version.xml to determine the GNOME
  version in the fallback case when no OS information is available from
  /etc/os-release. gnome-version.xml has been removed from GNOME 43.

* Translation updates:
 - French
 - Georgian

42.1.1
------

* Translation updates:
 - Friulian
 - Icelandic

42.1
----

* Translation updates:
 - Czech
 - Dutch
 - Greek, Modern (1453-)
 - Latvian
 - Vietnamese

42.0.1
------

* The dark theme preference support introduced in 42.rc caused a regression in
  Initial Setup's handling of the login keyring. The effect was that the new
  user's login keyring password does not match their system password, and so
  cannot be unlocked. This regression is fixed in this release. Thanks to Adam
  Williamson for diagnosing the problem & Matthias Clasen for suggesting the
  fix. (#141)

42.0
----

* Translation updates:
 - Bokmål, Norwegian
 - Danish
 - French
 - Hungarian
 - Italian
 - Japanese
 - Kazakh
 - Occitan (post 1500)
 - Panjabi
 - Polish
 - Serbian
 - Slovak

42.rc
-----

* Initial Setup now supports the GNOME 42 dark theme preference, and picks up a
  dependency on libhandy to enable this. This will only have a visible impact
  if a distribution overrides the default value of this preference, since there
  is no way for a user to adjust this preference until Initial Setup is
  complete. (Jeremy Bicha, !140)

* Translation updates:
 - Bulgarian
 - Catalan
 - Croatian
 - Finnish
 - German
 - Korean
 - Lithuanian
 - Persian
 - Swedish
 - Turkish

42.beta
-------

* Bugs fixed:
 - !137 welcome: tweak illustration
 - !138 timezone: Load GisLocationEntry type before page template

* Translation updates:
 - Basque
 - Chinese (China)
 - Galician
 - Hebrew
 - Indonesian
 - Slovenian
 - Spanish

42.alpha.1
----------

* Fix gweather4 pkg-config name.

* Fix project license identifier in Meson build rules.

* Translation updates:
 - Portuguese (Brazil)

42.alpha
----

* Initial Setup now depends on libgweather-4 and gnome-desktop-4, rather than
  their predecessors. Meson wrap files are provided in case these dependencies
  are not available.

* The third-party software sources page has been tweaked to more accurately
  describe what the switch does, and to replace the switch with a
  suggested-action toggle button. (This page is currently Fedora-specific;
  patches welcome!)

* The COPYING file has been clarified to contain only a copy of GPL version 2.
  Previously it also contained a copy of LGPL version 2 (not 2.1). There is no
  change to the actual licensing of GNOME Initial Setup: as before, it is
  distributed under the terms of the GNU General Public License, version 2 or
  later.

* The summary page widget tree has been simplified, with no visual change.

* Some Meson deprecation warnings have been addressed. Meson 0.53.0 or newer is
  now required to build Initial Setup.

* Translation updates:
 - Basque
 - Bulgarian
 - Chinese (China)
 - Croatian
 - Friulian
 - Hebrew
 - Icelandic
 - Indonesian
 - Japanese
 - Latvian
 - Occitan (post 1500)
 - Portuguese
 - Portuguese (Brazil)
 - Russian
 - Serbian
 - Slovak
 - Spanish
 - Swedish
 - Ukrainian
 - Vietnamese

41.0
----

* Bugs fixed:
 - !124 software: call fedora-third-party properly

* Translation updates:
 - Croatian
 - Danish
 - Hungarian
 - Polish
 - Turkish

41.rc
-----

* Bugs fixed:
 - !123 Fix the polkit rule for Fedora third party setup

* Translation updates:
 - Basque
 - Chinese (China)
 - Czech
 - Dutch
 - English (United Kingdom)
 - Finnish
 - French
 - Galician
 - German
 - Greek, Modern (1453-)
 - Hebrew
 - Indonesian
 - Kazakh
 - Korean
 - Lithuanian
 - Occitan (post 1500)
 - Persian
 - Portuguese (Brazil)
 - Romanian
 - Russian
 - Spanish
 - Swedish

41.beta
-------

* The Software page, which allows the user to enable or disable third-party
  repositories, has been resurrected. It is currently Fedora-specific. Patches
  welcome for other distro families. (!121)

* Bugs fixed:
 - #80 Cannot login as administrator if you set up enterprise login in gnome-initial-setup

* Translation updates:
 - Bulgarian
 - Catalan
 - Portuguese
 - Slovenian
 - Ukrainian

41.alpha
--------

* Several core classes have been updated to use modern GLib niceties.

* Bugs fixed:
 - !119 timezone: fix critical on startup when geoclue is disabled

* Translation updates:
 - Chinese (China)
 - Russian

40.3
----

* Translation updates:
 - Occitan

40.2
----

* Translation updates:
 - Occitan

40.1
----

* The welcome page, displayed on systems where the language page is skipped,
  features an illustration of a computer on a desk. This illustration has been
  adjusted to make the hardware more generic. (#122)

* Fix a small memory leak in language page. (!118)

Translation updates:
 - Catalan

40.0
----

* No changes since 40.rc.

40.rc
-----

* Translation updates:
 - Galician
 - Portuguese (Brazil)

40.beta
-------

* Completing GNOME Initial Setup no longer triggers GNOME Tour. GNOME Shell 40
  now prompts new and upgrading users to run the tour. (#120)

* Previous versions of Initial Setup would run the first time a user logs in
  ("existing user" mode) as well as when the system is booted with no users
  ("new user" mode). Initial Setup no longer displays any UI in "existing user"
  mode, to avoid colliding with the tour. The mode has not been removed in code
  – a simple check has been added to the main() function. If your distribution
  needs the old behaviour, this check can be patched out. The hope is that a
  future version of GNOME will restore "existing user" mode, but run Initial
  Setup from the same cut-down Shell that is used in "new user" mode. (#120)

* Initial Setup's .desktop file is now installed to @datadir@/applications
  (i.e. /usr/share/applications) rather than a GDM-specific directory. This
  means its icon is displayed correctly when run within a normal shell session.
  Some distros have previously worked around this issue by installing a
  symbolic link. (The astute reader may note that this is a no-op given the
  previous bullet point, but it is still a nice clean-up.) (#52)

* Translation updates:
 - Panjabi
 - Portuguese

40.alpha
--------

* Some enhancements to the avatar picker:
  - The "Take a photo…" button now has the suggested-action style. (!97)
  - Generated avatars now have a darker border. (!99)
  - Fix runtime warning when built without libcheese. (#114)

* The "Welcome" page, displayed when the language picker is disabled, has a
  refreshed splash image.

* Translation updates:
 - Bokmål, Norwegian
 - Catalan
 - Esperanto
 - Friulian
 - Portuguese
 - Romanian

3.38.1
------

* #110 / !104: Fix the window sometimes opens at an unusably small size, rather
  than being sized appropriately for the display. The fix causes a regression
  where the window doesn't react to the display size changing in all cases
  (#112) but the new behaviour is better than the old.

* Other bugs fixed:
 - !102 docs: Remove typo from DEBUGGING.md
 - !103 Misc use-after-free and critical warning fixes
 - !105 data: Leave to meson the duty of keeping the lists in sync

* Translation updates:
 - Chinese (Taiwan)
 - Danish
 - Hebrew
 - Italian
 - Latvian
 - Portuguese
 - Slovak

3.38.0
------

* Translation updates:
 - Greek
 - Hungarian
 - Portuguese

3.37.92
-------

* Bugs fixed:
 - !101 Exit gracefully if we are disabled systemwide by Anacontda

* Translation updates:
 - Basque
 - Czech
 - Dutch
 - English (United Kingdom)
 - Friulian
 - German
 - Korean
 - Lithuanian
 - Serbian
 - Slovak
 - Spanish
 - Swedish

3.37.91.1
---------

* Bugs fixed:
 - !92 gnome-initial-setup: Allow welcome tour to be skipped via vendor config
 - !95 network: Re-word the description for Wi-Fi
 - !100: Avoid a warning about connecting to a NULL object

* Translation updates:
 - Basque
 - Catalan
 - Chinese (China)
 - Croatian
 - Finnish
 - French
 - Galician
 - Indonesian
 - Japanese
 - Kazakh
 - Persian
 - Polish
 - Portuguese
 - Portuguese (Brazil)
 - Romanian
 - Slovenian
 - Spanish
 - Turkish
 - Ukrainian

3.37.91
-------

* Revamp the ‘welcome’ screen. See #7 for more details and screenshots.

* Bugs fixed:
 - #7 Nicer welcome page

3.37.90
-------

* Use `gnome-tour` instead of `yelp` to start the welcome tour. (MR !90.)

* Switch to a new user session management approach of defining the session
  services in `gnome-session@gnome-initial-setup.target.d/session.conf` in the
  systemd user unit directory. This bumps the optional systemd dependency
  to ≥ 242. See !66 for more details.

* Bugs fixed:
 - !66 Systemd unit update for 3.38
 - !90 welcome tour: replace yelp with gnome-tour

* Translation updates:
 - Chinese (China)
 - Friulian
 - Indonesian
 - Lithuanian
 - Portuguese (Brazil)
 - Swedish
 - Tajik
 - Turkish

3.37.3
------

* The avatars offered in the 'account' page can now be customized by setting
  the 'org.gnome.desktop.interface avatar-directories' GSetting, which also
  controls the avatars offered in Settings. (This introduces a dependency on
  gsettings-desktop-schemas ≥ 3.37.1.)

* Since version 3.30, it has been possible to customize certain aspects of
  Initial Setup by specifing the 'vendor-conf-file' option at build time, then
  installing a configuration file to that path. This version adds two paths
  that will be checked by default: one for distribution configuration, and
  another to override that configuration on specific deployments.

  If you specify the 'vendor-conf-file' at build time, the old behaviour is
  preserved and the new paths will not be searched. If possible, please migrate
  any existing configuration to the new path, and stop specifying the
  build-time option.

* Bugs fixed:
  - #106 timezone: Don't set timezone if tz page is skipped
 - #75 Polkit rules seem to list now unneeded privileges
 - #95 Add error argument to save_data() vfunc
 - #104 Japanese (Kana Kanji) no longer the default input method for Japanese in 3.36.2
 - #105 Reconsider installation location of vendor.conf
 - #106 gnome-initial-setup tries to set timezone even though timezone page is disabled
 - !60 account: Use facesdirs setting to override faces
 - !84 Fix pkgdata_dir location
 - !87 Enable web process sandbox
 - !88 Fix build with -Dvendor-conf-path

* Translation updates:
 - Chinese (China)
 - Kazakh
 - Persian
 - Romanian
 - Spanish
 - Ukrainian

3.37.1
------

* Bugs fixed:
 - !82 keyboard: Nullify pointers if getting layout fails

* Translation updates:
 - Hebrew
 - Kurdish, Central
 - Slovak

3.36.1
------

* Previous releases of gnome-initial-setup had an unversioned dependency on
  libsecret; this release requires libsecret ≥ 0.18.8.  (libsecret 0.18.8 was
  released as part of GNOME 3.32; GNOME 3.36 includes libsecret 0.20.1.)

* Bugs fixed:
 - !78 account: Make parent account usable in case of errors
 - !79 Improve readability when removing event sources
 - !80 Fix two crashes when saving parental controls settings
 - !81 Use g_auto and g_autoptr more

* Translation updates:
 - Bokmål, Norwegian
 - Dutch
 - German
 - Japanese
 - Romanian
 - Ukrainian

3.36.0
------

* Translation updates:
 - Croatian
 - Italian
 - Panjabi
 - Slovenian
 - Swedish

3.35.92
-------

* Two tweaks to the parental controls functionality introduced in the last
  release:
 - #94 Add metadata to identify parent account
 - !77 password: Use malcontent symbolic icon for parent password

* Translation updates:
 - Catalan
 - Chinese (Taiwan)
 - Czech
 - Danish
 - English (United Kingdom)
 - Finnish
 - French
 - Greek
 - Hungarian
 - Indonesian
 - Karbi
 - Korean
 - Lithuanian
 - Persian
 - Polish
 - Portuguese (Brazil)
 - Spanish

3.35.91
-------

* New pages have been added to set up parental controls for the new user
  account. They are shown (or not, by default) based on a checkbox on the
  (local) user creation page. This feature requires malcontent ≥ 0.5.0
  <https://gitlab.freedesktop.org/pwithnall/malcontent/> and complements
  parental controls support already present in Flatpak and GNOME Software. If
  disabled or if that dependency is not available, no new UI is introduced
  compared to 3.35.90.

* When running under JHBuild, gnome-keyring is left untouched, and state is not
  saved when setup is complete. This heuristic is intended to make testing the
  application during development easier.

* GLib ≥ 2.63.1 is now required.

* Fixed various memory leaks, warnings, and a memory safety bug.

* Translation updates:
 - Basque
 - Croatian
 - Czech
 - French
 - Galician
 - Hungarian
 - Indonesian
 - Japanese
 - Lithuanian
 - Persian
 - Serbian
 - Turkish

3.35.90
-------

* The final page has been revamped, with minor typography tweaks to other pages
  (#8).

* The timezone map was updated.

* Three pages have been removed since they were unused in all known
  configurations:

  - the region page, which has not displayed even if enabled for many years
    (#90)
  - the software page, which has not displayed for several releases due to
    changes in GNOME Software (#59)
  - the eulas page (!71, #72)

* The providers shown on the goa page can now be customized in the vendor conf
  file (!63)

* Bugs fixed:
 - #61 CheeseCameraDeviceMonitor may hang account page during initialization
 - #82 Support Wi-Fi devices appearing and disappearing dynamically
 - !53 Change generated avatar for empty name

* Translation updates:
 - Finnish
 - Kurdish, Central
 - Malay
 - Portuguese (Brazil)
 - Slovak
 - Spanish
 - Swedish

3.35.3

* Bugs fixed:
 - #85 GNOME intial setup segfaults, possibly due to locale related problems
 - !59 Disable g-i-s service in GDM
 - !61 assistant: mark "Accept" button as suggested action
 - !64 Language: Make language list use full height when search is active

* Translation updates:
 - Catalan
 - Galician
 - Japanese

3.34.0

* Bugs fixed:
 - !58 fixes for systemd user instance support

* Translation updates:
 - Danish
 - Japanese

3.33.92

* Translation updates:
 - English (United Kingdom)
 - Japanese
 - Panjabi
 - Persian

3.33.91

* !54 build: Add a log domain

* Translation updates:
 - Japanese

3.33.90

* !38 systemd user instance support. This is inert without corresponding
  changes in other GNOME modules, and can be disabled entirely with
  `-Dsystemd=false` at build time.

* Other improvements and bug fixes:
 - !37 summary: don't free borrowed password string
 - !41 data: use a11y menu in initial-setup session
 - !42 driver: Account for multi monitor when checking for small screen
 - !44 language: Refactor the logo selection
 - !45 language: Fix the visibility of the placeholder
 - !46 summary: Make the page fit narrow screens
 - !49 Drop the headers for the first rows
 - !50 account: Drop the avatar button padding
 - !51 Refactor page headers
 - !52 data: Update required gnome-settings-daemon plugins

* Translation updates:
 - Basque
 - Karbi

3.33.4

* Bugs fixed:
 - !39 Check for errors from newlocale()

* Translation updates
 - Indonesian

3.33.2

* Bugs fixed:
 - #53 setlocale() usage is not threadsafe
 - !33 Include bug report URL in .pot file

* Translation updates:
 - Chinese (China)
 - Esperanto

3.32.1

* Translation updates:
 - Croatian
 - Esperanto
 - Slovak

3.32.0

* Translation updates:
 - Korean

3.31.92

* Connect to GDM as soon as gnome-initial-setup starts and fix memory leaks
   (!22)

* Improve account page behaviour when offline (!23)

* Translation updates:
 - Catalan
 - Chinese (Taiwan)
 - Czech
 - Danish
 - Dutch
 - Finnish
 - French
 - Friulian
 - Galician
 - German
 - Greek
 - Hungarian
 - Icelandic
 - Indonesian
 - Italian
 - Kazakh
 - Latvian
 - Lithuanian
 - Polish
 - Portuguese (Brazil)
 - Romanian
 - Russian
 - Serbian
 - Slovenian
 - Spanish
 - Swedish
 - Turkish

3.31.90

 * Generate default user account pictures
 * Fix Meson build with (buggy) Meson 0.48.0 and 0.48.1
 * Remove Autotools build
 * Fix various compiler warnings
 * Add welcome distro logo for openSUSE
 * Translation updates:
   - Afrikaans
   - Arabic
   - Aragonese
   - Assamese
   - Basque
   - Belarusian
   - Bengali (India)
   - Bokmål, Norwegian
   - Bosnian
   - Bulgarian
   - Catalan
   - Chinese (China)
   - Chinese (Hong Kong)
   - Czech
   - English (United Kingdom)
   - Esperanto
   - Estonian
   - Gaelic
   - German
   - Gujarati
   - Hebrew
   - Hindi
   - Hungarian
   - Indonesian
   - Interlingua (International Auxiliary Language Association)
   - Irish
   - Japanese
   - Kannada
   - Malayalam
   - Marathi
   - Nepali
   - Occitan (post 1500)
   - Oriya
   - Persian
   - Portuguese
   - Serbian
   - Slovak
   - Tajik
   - Tamil
   - Telugu
   - Thai
   - Uighur
   - Vietnamese

3.30.0

 * Translation updates

3.29.92

 * Translation updates
 * Improved network page
 * Fix timezone selection in new-user mode
 * Properly use libsecret unstable api

3.29.1


 * Translation updates
 * Support more general page skipping
 * Show the welcome page if the language page is skipped
 * Look for vendor.conf in /usr/share instead of /var
 * Go back to allowing weak passwords
 * Set keyring password for enterprise accounts
 * Use Debian, Ubuntu logos when appropriate
 * Fix a crash
 * Add meson support
 * Uses a new avatar chooser

3.28.0

 * Translation updates
 * Sync string changes with gnome-software

3.27.90

 * Adjust session components to recent changes
 * Improve sorting in the language list
 * Memory leak fixes
 * Update titlebar when title changes
 * Translation updates

3.26.0

 * Translation updates

3.25.92

 * Translation updates

3.25.4

 * Use Unicode in translatable strings
 * Adjust to g-s-d's plugin removals
 * Translation updates

3.25.3

 * Support a vendor configuration file
 * Update text direction when the locale changes
 * Allow configuring network connections
 * Copy monitor configuration to user session
 * Sync user account page with control-center
 * Show strength indicator for passwords
 * Translation updates

3.24.0

 * Fix g-i-s session startup deadlock
 * Translation updates

3.23.92

 * Use correct capitalization and unicode characters
 * Exit gracefully when disabled systemwide
 * Adjust to gnome-settings-daemon changes
 * Port network page to use libnm instead of libnm-glib
 * Translation updates

3.23.1

 * Clarify presentation of privacy policies
 * Translation updates

3.22.0

 * Translation updates

3.21.92

 * Port timezone page to use new Geoclue convencience library
 * Minor UI fixes on privacy page
 * Correct license of um-realm-manager
 * Translation updates

3.21.91

 * Better handling of small screens
 * Add a page to configure software sources
 * Translation updates
  British English
  French
  Icelandic
  Indonesian
  Norwegian bokmål
  Occitan
  Polish
  Portuguese
  Slovenian
  Spanish

3.20.1

 * Translation updates
  Bulgarian
  Friulian
  Persian
  Vietnamese

3.20.0

 * Translation updates

3.19.92

 * Add a translator comment for 'Welcome!'
 * Translation updates
  Finnish
  Friulian
  Hebrew
  Hungarian
  Korean
  Latvian
  Lithuanian
  Occitan
  Russian
  Slovenian
  Ukrainian


3.19.91

 * Visual refinements on online accounts page
 * Minor tweaks on the privacy and accounts pages
 * Ensure keyring gets created for new users
 * Translation updates
  Catalan
  Chinese (Taiwan)
  Czech
  Galician
  German
  Greek
  Kazakh
  Polish
  Punjabi
  Serbian
  Slovak
  Spanish
  Swedish
  Vietnamese

3.19.90

 * Visual refresh for the 'ready to go' page

3.19.2

 * Fix timezone lookup after locale change
 * Handle screen resolution changes
 * Design updates to the timezone page
 * Don't create a keyring for existing users
 * Translation updates
  Bulgarian
  Chinese (Taiwan)
  German
  Hungarian
  Latvian
  Lithuanian
  Polish
  Slovak
  Vietnamese

3.19.1

 * Ensure locale region matches the selected language
 * Sort languages case-insensitively
 * Translation updates
  Basque
  Irish
  Serbian
  Serbian Latin
  Vietnamese

3.18.0

 * Translation updates
  Danish
  Dutch
  French
  Indonesian
  Italian
  Japanese
  Kazakh
  Korean
  Lithuanian
  Persian

3.17.91

 * Go back to enforcing password policy (#754213)
 * Translation updates
  Chinese (Taiwan)
  Galician
  Polish
  Swedish

3.17.90

 * Detect enterprise accounts without heuristic (#752980)
 * Don't change keyring password explicitly (#752980)
 * Fix problem with restarting geoclue client
 * Translation updates
  Norwegian bokmål
  Brazilian Portuguese

3.17.4

 * Create keyring initially unencrypted
 * Password page refinements (#735578)
 * Make policy dialog resize properly (#749426)
 * Use correct key for privacy policy (#749545)
 * Handle disabled network better
 * Avoid a crash on language change (#752134)
 * Make gnome-shell launch first
 * AVoid a race in launching welcome tour
 * Translation updates
  Catalan
  Czech
  Friulian
  German
  Greek
  Hebrew
  Hungarian
  Occitan
  Portuguese
  Romanian
  Russian
  Slovak
  Slovenian
  Spanish
  Tajik
  Turkish
  Vietnamese

3.16.2

 * Translation updates
  Icelandic
  Occitan
  Simplified Chinese


3.16.1

 * Translation updates
  Dutch
  Latvian
  Punjabi


3.16.0

 * Translation updates
  Basque
  Indonesian
  Italian
  Japanese


3.15.92

 * Stop using deprecated API
 * Improved keyboard navigation
 * Adapt to gnome-desktop locale codeset changes
 * Translation updates
  Aragonese
  Bosnian
  Bulgarian
  Catalan
  Danish
  Esperanto
  Finnish
  German
  Korean
  Swedish
  Tajik


3.15.91.1

 * Port to Webkit2
 * Translation updates
  Czech
  Polish
  Serbian
  Slovenian


3.15.91

 * Fix a possible crash in the network page
 * Translation updates
  Brazilian Portuguese
  Chinese (Taiwan)
  French
  Galician
  Greek
  Hebrew
  Hungarian
  Kazakh
  Norwegian bokmal
  Spanish
  Turkish
  Ukrainian


3.15.90.1

 * Append ibus input sources
 * Allow resizing on small screens
 * Improve account creation dialogs
 * Move privacy page before timezone
 * Use the permanent bus name for abrtd
 * Translation updates
  Lithuanian
  Russian
  Slovak
  Vietnamese


3.15.90

 * Add a privacy page
 * Don't wait for GDM to kill us
 * Translation updates
  Aragonese
  Portuguese
  Vietnamese


3.14.2.1

 * Disable SSLv3 because of POODLE

3.14.2

 * Fix changing the login keyring password
 * Ensure that we show the selected input source
 * Preserve system keyboard layouts
 * Don't choose irrelevant layouts as first level choices
 * Add a function to detect small screens
 * Hide images when we have no space for them
 * Drop the minimum size when we are on a small screen
 * Translation updates
  Dutch
  Friulian
  Kazakh
  Persian


3.14.1

 * Don't allow to move window
 * Avoid a crash in input chooser
 * Require selecting an input source
 * Translation updates
  Bengali
  Brazilian Portuguese
  Bulgarian
  Friulian
  Gujarati
  Italian
  Latvian

  
3.14.0

 * Fix skip button showing up on the last page
 * Translation updates
  Hindi
  Japanese
  Nepali


3.13.7

 * Refine spacing and alignment on all pages
 * keyboard: Show suggestions for the current locale
 * keyboard: Add all IBus engines
 * keyboard: Ellipsize long labels
 * Translation updates
  Bengali
  Catalan
  Catalan (Valencian)
  Danish
  Kannada
  Marathi
  Turkish


3.13.6

 * language: Drop British English to make page smaller
 * region: Drop, instead show all locales in the language page
 * keyboard: Show all layouts (in the expanded list)
 * account: Whitelist realmd actions to enable enterprise setup
 * timezone: Remove icon to make page smaller
 * Improve keyboard navigation
 * Bring back existing-user mode
 * Translation updates
  Indonesian
  Korean
  Oriya
  Punjabi
  Serbian
  Slovak
  Swedish
  Tamil
  Telugu
 
3.13.5

 * language: Don't dim distro logo
 * timezone: Make page smaller
 * input: Fix build without ibus
 * password: Don't hard-enforce strong passwords

 * Translation updates
  Assamese
  Basque
  Chinese (simplified)
  Czech
  Finnish
  French
  Galician
  German
  Gujarati
  Ukrainian
  

3.13.4

 * account: Improve wording
 * account: Update to match control-center
 * timezone: Add geoclue integration
 * timezone: Add an icon
 * password: Update to match control-center
 * password: Properly clean up signal handler
 * keyring: Open session
 * copy-worker: Run in early initialization phase

 * Translation updates
   Basque
   Belarusian
   Brazilian Portuguese
   Catalan
   Catalan (Valencian)
   Chinese (Taiwan)
   Czech
   Danish
   Dutch
   French
   German
   Greek
   Hebrew
   Hungarian
   Indonesian
   Italian
   Japanese
   Lithuanian
   Norwegian bokmål
   Polish
   Punjabi
   Russian
   Slovak
   Slovenian
   Spanish

3.11.92

 * build: Initialize automake earlier
 * build: Enable maintainer mode
 * Update titlebar on locale change
 * Use distro logo instead of GNOME foot
 * timezone: Ensure map is properly allocated
 * timezone: Draw location marker pixel-aligned

 * Translation updates
   Brazilian Portuguese
   Chinese (China)
   Czech
   Finnish
   French
   Friulian
   Galicican
   Hebrew
   Hungarian
   Indonesian
   Kazakh
   Korean
   Latvian
   Lithuanian
   Polish
   Portuguese
   Punjabi
   Russian
   Tajik
   Traditional Chinese
   Ukrainian   

3.11.91

 * Add an avatar chooser back to the accounts page
 * Fix prepopulating the accounts page from gmail accounts
 * Fix keynav issues on various pages
 * Fix layout issues on various pages
 * Robustnes fixes

 * Translation updates:
   Arabic
   Czech
   Finnish
   Galician
   Hindi
   Kannada
   Kazakh
   Lithuanian
   Malayalam
   Polish
   Tajik


3.11.90

 * Updates to align with design
 * Translation updates

3.10.1.1:

 * Fix build

3.10.1:

 * Fix GOA dialog not closing
 * Use newer GTK+ API for code cleanups

Translations:
 Arash Mousavi
 Carles Ferrando
 Emin Tufan Çetin
 Friedel Wolff
 Reinout van Schouwen
 甘露(Lu Gan)

3.10.0.1:

 * Fix an issue with the account page preventing advancing
   through the wizard

Code:
 Jasper St. Pierre

3.10.0:

 * Now on the GNOME version scheme
 * Prevent a few crashes
 * Use a headerbar to match GNOME3 designs
 * Use the distro name on the "Start" button
 * Drop the intro animation and video player
 * Fix accessibility issues

Code:
 Mattias Clasen, Michael Wood, Jasper St. Pierre, Colin Walters

Translations:
 A S Alam
 Alexandre Franke
 Andika Triwidada
 António Lima
 Aurimas Černius
 Balázs Úr
 Baurzhan Muftakhidinov
 Benjamin Steinwender
 Chao-Hsiung Liao
 Cheng-Chia Tseng
 Christian Kirbach
 Daniel Korostil
 Daniel Mustieles
 Dimitris Spingos
 Dušan Kazik
 Fabio Tomat
 Fran Diéguez
 Gabor Kelemen
 Georges Basile Stavracas Neto
 Gianvito Cavasoli
 Gil Forcada
 Ihar Hrachyshka
 Inaki Larranaga Murgoitio
 Ivaylo Valkov
 Jiro Matsuzawa
 Josep Sànchez
 Kenneth Nielsen
 Khaled Hosny
 Kjartan Maraas
 Krishnababu Krothapalli
 Marek Černocký
 Matej Urbančič
 Mattias Põldaru
 Nilamdyuti Goswami
 Peter Mráz
 Piotr Drąg
 Rafael Ferreira
 Rūdolfs Mazurs
 Sandeep Sheshrao Shedmake
 Seong-ho Cho
 Seán de Búrca
 Shankar Prasad
 Shantha kumar
 Sweta Kothari
 Timo Jyrinki
 Victor Ibragimov
 Yaron Shahrabani
 Yosef Or Boczko
 Yuri Myasoedov
 tuhaihe
 Мирослав Николић

0.11:

 * Make the initial-setup shell mode valid JSON
 * Fix passwordless users
 * Fix visibility of the GOA page under strange network conditions
 * Lots of realmd / Enterprise login fixes
 * Increase the amount of initial languages
 * Make sure usernames are less than 255 characters
 * Remove duplicate username suggestions

Code:
 Michael Wood, Rui Matos, Mattias Clasen

Translations:
 A S Alam
 Aurimas Černius
 Daniel Mustieles
 Fran Diéguez
 Gil Forcada
 Khaled Hosny
 Kjartan Maraas
 ManojKumar Giri
 Marek Černocký
 Matej Urbančič
 Nilamdyuti Goswami
 Piotr Drąg
 Rafael Ferreira
 Shankar Prasad
 Shantha kumar
 Sweta Kothari
 Yaron Shahrabani

0.10:

 * goa: Only set page visible when we have a network connection
 * Bundle our own initial-setup mode file
 * keyboard: Add a default input source for the locale
 * Various bug fixes and code cleanups

Code:
 Michael Wood, Rui Matos, Jasper St. Pierre, Colin Walters

Translations:
 Alexandre Franke
 Andika Triwidada
 Anish A
 A S Alam
 Ask H. Larsen
 Aurimas Černius
 Benjamin Steinwender
 Chetan Khona
 Christian Kirbach
 Daniel Mustieles
 Dmitriy S. Seregin
 Fran Diéguez
 Gabor Kelemen
 Gianvito Cavasoli
 Gil Forcada
 Jiro Matsuzawa
 Kjartan Maraas
 Krishnababu Krothapalli
 ManojKumar Giri
 Matej Urbančič
 Muhammet Kara
 Nik Kalach
 Nilamdyuti Goswami
 Piotr Drąg
 Rafael Ferreira
 Rajesh Ranjan
 Shankar Prasad
 Shantha kumar
 Sweta Kothari
 tuhaihe
 Yuri Myasoedov
 Мирослав Николић


0.9:

 * Update the keyboard panel
 * Hide the back/forward buttons on summary
 * Fix launching the welcome-tour in unsupported locales
 * Add a new infrastructure for launching without a trigger file
 * Update the summary page with a checkmark
 * Fix compiler warnings
 * Launch gnome-initial-setup with the existing user mode on first
   logins

Code:
 Jasper St. Pierre, Mattias Clasen, Michael Wood, Colin Walters

Translations:

 Andika Triwidada
 Arash Mousavi
 A S Alam
 Aurimas Černius
 Balázs Úr
 Carles Ferrando
 Chao-Hsiung Liao
 Daniel Korostil
 Daniel Mustieles
 Dimitris Spingos
 Dr.T.Vasudevan
 Dušan Kazik
 Enrico Nicoletto
 Fran Diéguez
 Gabor Kelemen
 Gianvito Cavasoli
 Gil Forcada
 Jasper St. Pierre
 Jiro Matsuzawa
 Lucas Lommer
 Marek Černocký
 Matej Urbančič
 Michael Wood
 Piotr Drąg
 Praveen Illa
 Rafael Ferreira
 Rajesh Ranjan
 Seong-ho Cho
 Sweta Kothari
 tuhaihe
 Victor Ibragimov
 Yuri Myasoedov

0.8:

 * Improve the language page
 * Don't activate gnome-initial-setup on live media
 * Add a progress indicator

0.7:

 * Port to libgd, and remove dependency on Clutter
 * Add a new welcome page, and fix bugs related to page ordering
 * Add a new page skip mechanism, used for current sessions in
   gnome-initial-setup
 * Performance improvements
 * Remove geoclue
 * Design updates for account page

Code:
 Jasper St. Pierre, Mattias Clasen, Michael Wood, Colin Walters

Translations:

 Adam Matoušek
 Alexandre Franke
 Anish A
 A S Alam
 Aurimas Černius
 Baurzhan Muftakhidinov
 Benjamin Steinwender
 Bruce Cowan
 Chao-Hsiung Liao
 Cheng-Chia Tseng
 Daniel Mustieles
 Dimitris Spingos
 Duarte Loreto
 Dušan Kazik
 Enrico Nicoletto
 Fran Diéguez
 Gheyret Kenji
 Ihar Hrachyshka
 Inaki Larranaga Murgoitio
 Ivaylo Valkov
 Kjartan Maraas
 Matej Urbančič
 Nguyễn Thái Ngọc Duy
 Nilamdyuti Goswami
 Piotr Drąg
 Reinout van Schouwen
 Tobias Endrigkeit
 Tom Tryfonidis
 Ville-Pekka Vainio
 Wouter Bolsterlee
 Yaron Shahrabani
 Yuri Myasoedov
 Мирослав Николић

0.6:

 * Port GOA and Network pages to egg-list-box
 * Make account and language pages match new designs
 * Remove symbolic icons for assistant "next" / "previous" buttons
 * Make EULA pages not require checkboxes by default
 * Add a new Keyboard Layout page, based on the code in the
   control center.

Code:
 Jasper St. Pierre, Mattias Clasen, Michael Wood

Translations:

 Aron Xu
 A S Alam
 Daniel Mustieles
 Dušan Kazik
 Fran Diéguez
 Gianvito Cavasoli
 Khaled Hosny
 Kristjan SCHMIDT
 Matej Urbančič
 Petr Kovar
 Piotr Drąg
 TmTFx
 Yaron Shahrabani

0.5:

 * Be more forgiving if gnome-initial-setup user doesn't exist
 * Improve password handling
 * Eula page improvements
 * Code cleanups, misc. fixes, crashes

Code:
 Jasper St. Pierre, Mattias Clasen, Michael Wood, Colin Walters

Translations:

Daniel Mustieles
Jorge Pérez Pérez
Matej Urbančič
Mattias Põldaru
Runa Bhattacharjee
Sayak Sarkar (1):

0.4:

 * Convert over to a new GisPage base class to help prevent
   memory leaks when switching locales.
 * Remove old summary override system with a system that simply
   swaps out the GtkBuilder filename at runtime.
 * Add a simple movie player for the welcome-tour, based on clutter-gst.
 * Fix GTK+-only assistant.
 * Revamp the account page by making it modal dialog-less, and removing
   the avatar picker. (RIP)
 * Use symbolic icons for assistant "next" / "previous" buttons instead
   of using Unicode glyphs.
 * Style and design updates.
 * Code cleanups, misc. fixes, crashes

Code:
 Jasper St. Pierre, Mattias Clasen

Translations:

 Andika Triwidada
 Fran Diéguez
 Gianvito Cavasoli
 Kjartan Maraas
 Matej Urbančič
 Mattias Põldaru
 Piotr Drąg
 Мирослав Николић

0.3:

 * Port to GStreamer 1.0.
 * Add a minimal systemd service.
 * Fix issues with summary and autologin.
 * Fix some crashes and issues with garbage in private structures.
 * Install desktop files in the right place.
 * Rework skeleton and copy-worker for GDM integration.
 * Redesign the account page to be more like the control center.
 * Add enterprise login support to the account page.

Code:
 Jasper St. Pierre, Mattias Clasen, Ray Strode, Stef Walters

Translations:

 Abhay Kadam
 Alexandre Franke
 Alexsey Nadtochey
 Andika Triwidada
 Ani Peter
 Arash Mousavi
 Arvis Lacis
 A S Alam
 Aurimas Černius
 Bruce Cowan
 Carles Ferrando
 chandankumar
 Changwoo Ryu
 Chao-Hsiung Liao
 Cheng Lu
 Daniel Korostil
 Daniel Mustieles
 Daniel Nylander
 Dr.T.Vasudevan
 Duarte Loreto
 Dušan Kazik
 Felipe Borges
 Fran Diéguez
 Gabor Kelemen
 Gil Forcada
 Ivaylo Valkov
 Kenneth Nielsen
 Khaled Hosny
 Kjartan Maraas
 Kris Thomsen
 Matej Urbančič
 Mattias Põldaru
 Muhammet Kara
 Nguyễn Thái Ngọc Duy
 Nilamdyuti Goswami
 Pavol Klačanský
 Petr Kovar
 Piotr Drąg
 Priit Laes
 Rūdolfs Mazurs
 Sandeep Sheshrao Shedmake
 Timo Jyrinki
 Tobias Endrigkeit
 Tom Tryfonidis
 Unticha Pramgoed
 Urmas D
 Yaron Shahrabani
 Yuri Matsuk
 Мирослав Николић

0.2
===

 * Add a language selector to replace the Welcome splash screen
   before.
 * GDM integration has been rewritten to use libgdm instead of
   libgdmuser.
 * A lot of code has been properly split out into static
   libraries; each page now has one static library. In the
   future, we will have an unsupported module API that can be
   used to extend the system.
 * Use a cc-notebook, stolen from gnome-control-center, that
   allows smooth animations between pages. A plain GTK+
   implementation is being written for systems without the
   capabilities to run animations.
 * Complete integration by including a copy worker run on session
   init. This strategy should work for the use case of enterprise
   users.
 * Fix libcheese integration, and disallow the file picker when
   choosing a user icon.

Code:
 Jasper St. Pierre, Cosimo Cecchi

Translations:

 Alexandre Franke
 Alexsey Nadtochey
 Andika Triwidada
 Arvis Lacis
 A S Alam
 Aurimas Černius
 chandankumar
 Chao-Hsiung Liao
 Cheng Lu
 Daniel Korostil
 Daniel Mustieles
 Fran Diéguez
 Khaled Hosny
 Kjartan Maraas
 Matej Urbančič
 Matthias Clasen
 Muhammet Kara
 Nguyễn Thái Ngọc Duy
 Nilamdyuti Goswami
 Piotr Drąg
 Tobias Endrigkeit
 Tom Tryfonidis
 Urmas D
 Yaron Shahrabani
 Мирослав Николић

0.1
===

 * First release
 * EULA integration

Known bugs:

 * geoclue isn't working quite yet in all places.

Code:

 Mattias Clasen, Jasper St. Pierre, Ray Strode

Design:

 Allan Day, William Jon McCann, Jakub Steiner

Translations:

 Piotr Drag