-
Notifications
You must be signed in to change notification settings - Fork 3
/
NEWS
1956 lines (1598 loc) · 39.5 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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