-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathNEWS
More file actions
2603 lines (2111 loc) · 56.2 KB
/
NEWS
File metadata and controls
2603 lines (2111 loc) · 56.2 KB
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
50.0
----
Translators:
Abduqadir Abliz [ug], 小山田 純 - Oyamada Jun [ja], Victoria [pl],
Ask Hjorth Larsen [da], Bruce Cowan [en_GB], Марко Костић [sr]
50.rc
-----
* Allow selecting hidden languages by searching [nmontero; #231]
* Disable some unused featured in the embedded webview [Marco, !306]
Contributors:
Michael Catanzaro, nmontero, Marco Trevisan
Translators:
Artur S0 [ru], Antonio Marin [ro], Hugo Carvalho [pt], Andika Triwidada [id],
Sabri Ünal [tr], Rafael Fontenelle [pt_BR], Victor Dargallo [ca],
Alexander Alexandrov Shopov [bg], Danial Behzadi [fa], Anders Jonsson [sv],
Yaron Shahrabani [he], Christian Kirbach [de], Daniel Rusek [cs],
Guillaume Bernard [fr], Efstathios Iosifidis [el], Daniel Mustieles [es],
Asier Saratsua Garmendia [eu], Fran Diéguez [gl], Jiri Grönroos [fi],
Lucien Ouoba [fr], Balázs Úr [hu], Seong-ho Cho [ko]
50.alpha
--------
* Try run0 first if available instead of pkexec [Luca; 294]
* timezone: Remove duplicate cities [nmontero; !298]
* timezone: Improve keyboard navigation [nmontero; !297]
* timezone: Enable geolocation for timezone page [nmontero; !299]
* Make session explicitly depend on gnome-shell [Adrian; !301]
* parental-controls: Adapt for malcontent 0.14 [Jordan; !304]
* CI cleanups [Jordan; !303]
Contributors:
Luca Boccassi, Marge Bot, Michael Catanzaro, Matthias Clasen, Sunniva Løvstad,
matiwari, nmontero, Jordan Petridis, Adrian Vovk
Translators:
Emilio Sepúlveda [ia], Kristjan SCHMIDT [eo], Antonio Marin [ro],
Christian Kirbach [de], Abduqadir Abliz [ug], Quentin PAGÈS [oc],
twlvnn kraftwerk [bg], Fabio Tomat [fur], Милош Поповић [sr, sr@latin],
Sunniva Løvstad [nn], Kjartan Maraas [nb], Efstathios Iosifidis [el],
Iverson Briones [fil], Baurzhan Muftakhidinov [kk], Yuri Chornoivan [uk],
Martin [sl], Ekaterine Papava [ka], luming zh [zh_CN],
Aurimas Aurimas Černius [lt]
49.0
---------
* Restore minimal desktop file to show app icon [Alessandro, !291]
* Add spoken levels to the password quality [Sergio, !292]
Contributors:
- Alessandro Astone
- Sergio Costas Rodriguez
Translation Updates:
- Aefgh Threenine [th]
- Anders Jonsson [sv]
- Antonio Marin [ro]
- Artur S0 [ru]
- Asier Saratsua Garmendia [eu]
- Ask Hjorth Larsen [da]
- Aurimas Aurimas Černius [lt]
- Balázs Úr [hu]
- Bruce Cowan [en_GB]
- Christian Kirbach [de]
- Danial Behzadi [fa]
- Daniel Mustieles [es]
- Daniel Rusek [cs]
- Dušan Kazik [sk]
- Ega Natha [id]
- Ekaterine Papava [ka]
- Emilio Sepúlveda [ia]
- Emin Tufan Çetin [tr]
- Fran Diéguez [gl]
- Francisco Diéguez Souto [gl]
- Hugo Carvalho [pt]
- Jiri Grönroos [fi]
- Jordi Mas i Hernandez [ca]
- luming zh [zh_CN]
- Luming Zh [zh_CN]
- Makoto Sakaguchi [ja]
- Martin [sl]
- Matthias Clasen
- Nathan Follens [nl]
- Nilton Perim Neto [pt_BR]
- Piotr Drąg [pl]
- Quentin PAGÈS [oc]
- Sabri Ünal [tr]
- Seong-ho Cho [ko]
- Sergio Costas Rodriguez
- Yaron Shahrabani [he]
- Yuri Chornoivan [uk]
- Álvaro Burns [pt_BR]
49.beta.1
---------
* This release will only work with gnome-session 49, due
to changes in session orchestration and increased reliance
on systemd
* Many accessibility issues have been fixed
* Drop gnome-keyring support. This is no longer used
* Changes:
- !277 Adapt to systemd-only gnome-session and GDM dynamic users
- !278 a11y: Notify bad username
- !280 a11y: Make local user page accessible
- !281 a11y: Add accessibility to the password page
- !282 a11y: Add accessibility to the language selection page
- !283 a11y: Add accessibility support to the keyboard page
- !284 a11y: some extra accessibility to the Summary page
- !285 a11y: Add accessibility to parental controls page
- !286 a11y: read description in location services
- !287 a11y: add accessibility to the Timezone page
- !289 Remove integration with keyring
* Translation updates:
- Arabic (Ahmed Najmawi)
- Serbian (Милош Поповић)
49.alpha
-----
* data: Drop dependency on Wacom g-s-d plugin [Jordan; !279]
Contributors:
Jordan Petridis
Translators:
Cheng-Chia Tseng [zh_TW], Iverson Briones [fil], Makoto Sakaguchi [ja]
48.1
----
New translation:
- Uzbek (Baxrom Raxmatov)
48.0
----
Translation updates:
- Basque (Asier Sarasua Garmendia)
- Bokmål, Norwegian (Brage Fuglseth)
- Danish (Ask Hjorth Larsen)
- Galician (Fran Dieguez)
- Hungarian (Balázs Úr)
- Korean (Seong-ho Cho)
- Panjabi (A S Alam)
- Spanish (Daniel Mustieles)
48.rc
-----
Translation updates:
- Chinese (Taiwan) (Cheng-Chia Tseng)
- Greek, Modern (1453-) (Giannis Antypas)
48.beta
-------
On the network page, the Tab key now navigates between the network list and
other widgets, rather than between each network in the list in turn. (Lukáš
Tyrychtr)
As a result of the change above, Gtk ≥ 4.17 is now required.
Translation updates:
- Dutch (Nathan Follens)
- French (Guillaume Bernard)
- Interlingua (Emilio Sepúlveda)
- Lithuanian (Aurimas Černius)
- Romanian (Daniel Șerbănescu)
- Serbian (Марко Костић)
- Thai (Aefgh Threenine)
- Turkish (Sabri Ünal)
47.1
----
The (hidden) password hint field is now labelled as such, rather than as a
“password reminder”.
Translation updates:
- Belarusian (Vasil Pupkin)
- Bulgarian (Alexander Shopov)
- Chinese (China) (Luming Zh)
- Czech (Daniel Rusek)
- Finnish (Jiri Grönroos)
- Georgian (Ekaterine Papava)
- German (Jürgen Benvenuti)
- Latvian (Rūdolfs Mazurs)
- Occitan (post 1500) (Quentin PAGÈS)
- Persian (Danial Behzadi)
- Polish (Piotr Drąg)
- Portuguese (Hugo Carvalho)
- Portuguese (Brazil) (Juliano de Souza Camargo)
- Russian (Artur S0)
- Slovenian (Martin)
- Swedish (Anders Jonsson)
- Ukrainian (Yuri Chornoivan)
47.0
----
Translation updates:
- Danish (Ask Hjorth Larsen)
- English (United Kingdom) (Andi Chandler)
- French (Irénée THIRION)
- Galician (Fran Dieguez)
- Greek, Modern (1453-) (Efstathios Iosifidis)
- Indonesian (Andika Triwidada)
- Latvian (Rūdolfs Mazurs)
- Lithuanian (Aurimas Černius)
- Occitan (post 1500) (Quentin PAGÈS)
- Polish (Piotr Drąg)
- Spanish (Daniel)
- Swedish (Anders Jonsson)
- Turkish (Sabri Ünal)
47.rc
-----
Translation updates:
- Basque (Asier Sarasua Garmendia)
- Belarusian (Vasil Pupkin)
- Bokmål, Norwegian (Brage Fuglseth)
- Bulgarian (Alexander Shopov)
- Catalan (Jordi Mas i Hernandez)
- Chinese (China) (Luming Zh)
- Czech (Daniel Rusek)
- Finnish (Jiri Grönroos)
- Georgian (Ekaterine Papava)
- German (Jürgen Benvenuti)
- Hebrew (Yosef Or Boczko)
- Kazakh (Baurzhan Muftakhidinov)
- Korean (Seong-ho Cho)
- Persian (Danial Behzadi)
- Portuguese (Hugo Carvalho)
- Portuguese (Brazil) (Juliano de Souza Camargo)
- Romanian (Daniel Șerbănescu)
- Russian (Artur S0)
- Slovak (Jose Riha)
- Turkish (Sabri Ünal)
- Ukrainian (Yuri Chornoivan)
47.beta
-------
* The third-party repositories page, which is currently only displayed on
Fedora, now links to a webpage documenting what software is provided by
these external repositories.
* On the privacy page, references to Mozilla Location Service have been removed,
since this service was shut down earlier this year.
* If an error occurs when applying the user's settings (which in practice means
while creating user accounts), it is now displayed in a dialog rather than
only in the journal.
* The password page has been lightly refreshed, fixing a bug where the empty
input shows the red error style as soon as the page is displayed.
* There is now a field to set an optional password hint, which has been
supported by accountsservice for many years. However, since the login screen
does not currently know how to display the hint when the user needs it, this
field is currently hidden.
Translation updates:
- Hindi (Scrambled 777)
- Hungarian (Balázs Úr)
- Romanian (Daniel Șerbănescu)
- Slovenian (Martin)
47.alpha
--------
* gnome-initial-setup-copy-worker, which runs when the newly-created user signs
in to copy files from the temporary gnome-initial-setup home directory to the
user's real home directory, has been rewritten to not use GFile & GVFS. There
have previously been issues with GVFS, due to this program running very early
in the session startup, & there is no need to unleash the formidable power of
GFile to copy a few files.
* The summary page now uses an embedded themed icon for the checkmark, which
ensures that the icon is loaded at the proper scaling level on hidpi displays.
* If you customize the generated username for the new account, changing the
account name no longer clobbers the customized username.
* The keyboard page no longer crashes if it is destroyed and recreated while
still waiting for the set of IBus engines.
Translation updates:
- Hindi (Guntupalli Karunakar)
- Portuguese (Hugo Carvalho)
- Thai (Aefgh Threenine)
46.1
----
Bugs fixed:
- gnome-initial-setup-copy-worker, which runs after Initial Setup has created
the first user on the system, is now ordered before GNOME Keyring, assuming
both Initial Setup and GNOME Keyring have been configured with systemd
support. This avoids a race between gnome-initial-setup-copy-worker copying
the login keyring that was created during Initial Setup, and GNOME Keyring
creating a login keyring if none exists on disk.
- Keyboard navigation now works better on the Wi-Fi page.
Other improvements:
- The CONTRIBUTING file has been updated with more development tips.
Translation updates:
- Catalan (Jordi Mas i Hernandez)
- Friulian (Fabio Tomat)
- Greek (Efstathios Iosifidis)
- Kabyle (Rachida SACI)
- Occitan (Quentin PAGÈS)
- Panjabi (A S Alam)
- Portuguese (Brazil) (Juliano de Souza Camargo)
- Serbian (Милош Поповић)
46.0
----
Translation updates:
- Bokmål, Norwegian (Brage Fuglseth)
- Danish (Ask Hjorth Larsen)
- Italian (Milo Casagrande)
- Kabyle (Athmane MOKRAOUI)
46.rc
-----
Bugs fixed:
- The text direction is now correctly updated when switching between
left-to-right and right-to-left locales. (Khalid Abu Shawarib)
Updated dependencies:
- Geoclue 2.6.0 is now required. This 2-year-old release is widely available in
distros so this isn't expected to cause issues.
- GTK 4.10 is now explicitly required. 46.beta introduced a dependency on API
that is not available in earlier GTK releases; this dependency is now detected
earlier in the build.
Translation updates:
- Basque (Asier Sarasua Garmendia)
- Belarusian (Vasil Pupkin)
- Bulgarian (Alexander Shopov)
- Chinese (China) (Luming Zh)
- Dutch (Nathan Follens)
- English (United Kingdom) (Andi Chandler)
- Finnish (Jiri Grönroos)
- French (Irénée THIRION)
- Galician (Fran Dieguez)
- Georgian (Ekaterine Papava)
- German (Jürgen Benvenuti)
- Hebrew (Yaron Shahrabani)
- Hungarian (Balázs Úr)
- Indonesian (Kukuh Syafaat)
- Kazakh (Baurzhan Muftakhidinov)
- Korean (Seong-ho Cho)
- Latvian (Rūdolfs Mazurs)
- Lithuanian (Aurimas Černius)
- Persian (Danial Behzadi)
- Polish (Piotr Drąg)
- Russian (Artur S0)
- Slovenian (Matej Urbančič)
- Spanish (Daniel Mustieles)
- Swedish (Anders Jonsson)
- Turkish (Sabri Ünal)
- Ukrainian (Yuri Chornoivan)
46.beta
-------
* Avatars are now generated using HdyAvatar. (#111)
- In addition, the buttons overlaid on the avatar widget now have tooltips.
(!237)
* The Welcome page image is now more appropriately sized and not cropped. (#167)
* The Welcome page now uses PRETTY_NAME from os-release rather than combining
the NAME + VERSION_ID fields. (!225)
* The summary page no longer expresses our collective hope that users love
GNOME, reducing the overall exuberance of the page. (!232)
Bugs fixed:
* On distributions which show the minimise button in general, Initial Setup
no longer shows it, making it harder to hide the Initial Setup window and
not know how to get it back. (!237)
* Clicking the ABRT privacy policy link, if present, is now handled. This was
a regression in 46.alpha.
* The “minimize” button is no longer shown in the header bar (on distributions
which override the defaults to show it on most windows.
* While setting up an enterprise user account, the window would previously
freeze, potentially triggering the force-quit dialog. This is now fixed.
(!216, #79)
* On distributions which reënable the existing-user mode, the window can now
be closed with Alt+F4 once again. (!224)
Translation updates:
- Czech (Daniel Rusek)
- Galician (Fran Dieguez)
- Georgian (Ekaterine Papava)
- Russian (Artur S0)
- Turkish (Sabri Ünal, Emin Tufan Çetin)
46.alpha
--------
* GNOME Online Accounts integration has been removed. See
https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/issues/202 for further
information.
* The WebKitGTK dependency is now optional.
- If configured without WebKitGTK, the Privacy page will not show any links
to privacy policies.
- If configured with WebKitGTK, only the webkitgtk-6.0 API version is
supported; support for the webkit2gtk-5.0 API has been removed.
* Bugs fixed:
- The Initial Setup window can no longer be closed with Alt+F4, leaving the
user with no way to recover (#200)
- The avatar picker no longer logs a vast number of criticals, which were
triggered by a GLib change. (!210)
* Translation updates:
- Bulgarian
- English (United Kingdom)
- Esperanto
- French
- Friulian
- Occitan (post 1500)
- Romanian
- Serbian
- Turkish
- Vietnamese
45.0
----
Post-release version bump
* Mark more strings as translatable
* Translation updates:
- Basque
- Belarusian
- Brazilian Portuguese
- Catalan
- Chinese (China)
- Czech
- Danish
- Dutch
- Finnish
- Galician
- Georgian
- German
- Greek
- Hebrew
- Hungarian
- Indonesian
- Italian
- Kazakh
- Korean
- Lithuanian
- Occitan
- Persian
- Polish
- Portuguese
- Punjabi
- Romanian
- Russian
- Slovenian
- Spanish
- Swedish
- Turkish
- Ukrainian
45.beta
-------
* Initial Setup now invokes tecla, rather than gkbd-keyboard-display, to
show keyboard layout previews. This is a new runtime dependency.
* Initial Setup now installs dconf presets to disable some irrelevant Shell
functionality and always display the Accessibility menu in the Initial Setup
session. (Florian Müllner, !207)
* Bugs fixed:
- #180 Label for a default non-xkb ibus input method remains a placeholder
- #183 Replace applications with apps
- #186 Third-party repos: don't set the status if the user doesn't activate
- #187 [ARM64][Wayland] gnome-initial-setup crashing
- #191 Replace gkbd-keyboard-display with Tecla
- !189 keyboard: Don't leak IBus engine display name
- !191 driver: Set a non-trivial window title
- !201 Replace deprecated gtk_widget_show/hide with set_visible
- !202 Replace deprecated gtk_style_context_add_class with gtk_widget_add_css_class
- !203 ci: Update to new ci-templates snapshot
- !204 Misc tweaks for ABRT setting on privacy page
- !206 Improve the README
* Translation updates:
- Belarusian
- Chinese (China)
- Dutch
- English (United Kingdom)
- Friulian
- Georgian
- Greek, Modern (1453-)
- Hebrew
- Hungarian
- Icelandic
- Italian
- Latvian
- Persian
- Portuguese
- Portuguese (Brazil)
- Russian
- Slovenian
- Turkish
- Ukrainian
- Vietnamese
44.0
----
Bug fixes:
- The privacy policy links on the Privacy page are now usable. This was a
regression in the GTK 4 port, first released as 43.0. (#181)
Translation updates:
- Bulgarian
- Czech
- Danish
- French
- Persian
- Polish
- Russian
- Swedish
44.rc
-----
Enhancements:
- The About You page now makes it clear that you can choose a different avatar.
(#174)
Bug fixes:
- Double-clicking on the headerbar no longer makes the window super small.
(#136)
- The keyboard layout list is no longer empty until you search or expand it.
(#165)
- Non-ASCII characters in location names are now displayed correctly on the
timezone page. Previously, changing the language on the first page would
cause them to be mangled. (#177)
- StartupWMClass is now set in the .desktop file, allowing GNOME Shell to
associate the app window with the desktop file. (!187)
Translation updates:
- Basque
- Belarusian
- Catalan
- Czech
- Finnish
- Friulian
- Galician
- Georgian
- German
- Greek, Modern (1453-)
- Hebrew
- Hindi
- Hungarian
- Indonesian
- Korean
- Lithuanian
- Occitan (post 1500)
- Portuguese
- Serbian
- Slovenian
- Spanish
- Turkish
44.beta
-------
* Correctly align the 'Preview' links on the keyboard page. (#150, Automeris
naranja)
* Update for removal of WebKitGTK sandbox API in 2.39.5. (!177, Michael Catanzaro)
* Update password page to Adwaita style. (!178, Cassidy James Blaede)
44.alpha.2
----------
* Unlike 44.alpha.1, this version really can be built against the new
webkitgtk-6.0 API from WebKitGTK 2.39.1, as well as webkit2gtk-5.0.
(Michael Catanzaro)
* The close button on the "Failed to join domain" dialog now works. (#161)
* The quick settings menu is now correctly shown in the Initial Setup session.
(!166)
* The search fields on the keyboard layout and timezone pages now have
placeholder text, as recommended by the GNOME HIG. Thanks to sunflowerskater
for their first contribution to this project! (#144)
* Translation updates:
- Abkhazian
- Belarusian
- Hindi
- Interlingue (new in this version)
44.alpha.1
----------
This is an early release to support building against the new webkitgtk-6.0 API
from WebKitGTK 2.39.1, or webkit2gtk-5.0 as before. (!164)
There are no other changes compared to the GNOME 43 branch.
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