-
Notifications
You must be signed in to change notification settings - Fork 37
/
NEWS
2466 lines (2135 loc) · 84.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
Version 47.0
~~~~~~~~~~~~
Released: 2024-09-12
This is a stable release with the following changes:
* Do not install example featured software lists by default (packagers should use gnome-app-list
instead)
This release also updates translations:
* Bokmål, Norwegian (Brage Fuglseth)
* Bulgarian (twlvnn kraftwerk, Alexander Shopov)
* Catalan (Jordi Mas i Hernandez)
* Czech (Daniel Rusek)
* Danish (Alan Mortensen)
* English (United Kingdom) (Bruce Cowan)
* Galician (Fran Dieguez)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Italian (Davide Ferracin)
* Kazakh (Baurzhan Muftakhidinov)
* Lithuanian (Aurimas Černius)
* Occitan (post 1500) (Quentin PAGÈS)
* Polish (Piotr Drąg)
* Portuguese (Hugo Carvalho)
* Portuguese (Brazil) (Juliano de Souza Camargo)
* Spanish (Daniel, Daniel Mustieles)
* Swedish (Anders Jonsson)
* Thai (Aefgh Threenine)
* Turkish (Emin Tufan Çetin)
Version 47~rc
~~~~~~~~~~~~~
Released: 2024-08-30
This is an unstable release with the following changes:
* Update help pages and add some translations of them
* Correct tooltips of review voting buttons
* Lower power consumption when certain pages are not visible
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Belarusian (Vasil Pupkin)
* Bokmål, Norwegian (Brage Fuglseth)
* Chinese (China) (Luming Zh)
* Czech (Daniel Rusek)
* Finnish (Jiri Grönroos)
* Georgian (Ekaterine Papava)
* German (Jürgen Benvenuti, Tim Sabsch)
* Greek, Modern (1453-) (Giannis Antypas)
* Hindi (Scrambled 777)
* Korean (Seong-ho Cho)
* Persian (Danial Behzadi)
* Portuguese (Brazil) (Rafael Fontenelle, Juliano de Souza Camargo)
* Russian (Artur S0)
* Slovak (Matej Mrenica)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
Version 47~beta
~~~~~~~~~~~~~~~
Released: 2024-08-02
This is an unstable release with the following changes:
* Shorten text in some notifications
* Fix Orca not reading the contents in Preferences dialog
* Enhance behavior of a review row
* Added plugin to ease installation of DKMS and akmods key with enabled Secure Boot
This release also updates translations:
* Greek, Modern (1453-) (Efstathios Iosifidis)
* Hebrew (Yaron Shahrabani, Yosef Or Boczko)
* Hindi (Scrambled 777)
* Slovenian (Martin)
Version 47~alpha
~~~~~~~~~~~~~~~~
Released: 2024-06-28
This is an unstable release with the following changes:
* Fix a crash when updating apps when built with Mogwai
* Fix a crash when installing flatpak application
* Correct desktop/mobile hardware support detection
* Correct state of Fedora upgrade
* Several fixes in historical updates for rpm-ostree
* Fix a crash when no appstream data is found
* Correct app safety calculation
* Correct Flatpak system and user apps recognition
* Slightly speed-up rpm-ostree metadata refresh
* Show "Install All" button only for codecs
* Prefer vendor name from os release in app origin
* Make more jobs asynchronous
* Port to recent Adwaita widgets
This release also updates translations:
* Catalan (Jordi Mas i Hernandez)
* Chinese (China) (Boyuan Yang)
* Czech (Daniel Rusek)
* Dutch (Nathan Follens)
* Friulian (Fabio Tomat)
* Georgian (Ekaterine Papava)
* Hebrew (Yosef Or Boczko)
* Kabyle (Athmane MOKRAOUI)
* Panjabi (A S Alam)
* Portuguese (Hugo Carvalho)
* Russian (Artur S0)
* Serbian (Милош Поповић)
* Slovenian (Martin)
* Spanish (Daniel Mustieles)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
Version 46.0
~~~~~~~~~~~~
Released: 2024-03-15
This is a stable release with the following changes:
* Improvements for screen readers
* Stop ‘loading updates’ in a loop on Debian
This release also updates translations:
* Czech (Daniel Rusek)
* Danish (Alan Mortensen)
* Finnish (Jiri Grönroos)
* French (Vincent Chatelain)
* Galician (Fran Dieguez)
* Georgian (Ekaterine Papava)
* Hungarian (Balázs Úr)
* Indonesian (Kukuh Syafaat)
* Korean (Seong-ho Cho)
* Latvian (Rūdolfs Mazurs)
* Persian (Danial Behzadi)
* Polish (Piotr Drąg)
* Portuguese (Brazil) (Juliano de Souza Camargo)
* Russian (Artur S0)
* Swedish (Anders Jonsson)
* Thai (Aefgh Threenine)
* Turkish (Emin Tufan Çetin)
Version 46~rc
~~~~~~~~~~~~~
Released: 2024-03-01
This is an unstable release with the following changes:
* Various UI text improvements
* Fix launch of some apps
* Fix invalid app state after it's uninstalled
* Fix read of app description text
* Do not ask to reboot after failed firmware update
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Belarusian (Vasil Pupkin)
* Bokmål, Norwegian (Brage Fuglseth)
* Catalan (Jordi Mas, Quique Serrano)
* Chinese (China) (Boyuan Yang)
* Czech (Daniel Rusek)
* Dutch (Nathan Follens)
* English (United Kingdom) (Andi Chandler)
* Galician (Fran Dieguez)
* Georgian (Ekaterine Papava)
* German (Jürgen Benvenuti, Philipp Kiemle)
* Hebrew (Yaron Shahrabani)
* Indonesian (Kukuh Syafaat)
* Kazakh (Baurzhan Muftakhidinov)
* Latvian (Rūdolfs Mazurs)
* Lithuanian (Aurimas Černius)
* Occitan (post 1500) (Quentin PAGÈS)
* Persian (Danial Behzadi)
* Russian (Artur S0)
* Slovenian (Matej Urbančič)
* Spanish (Daniel Mustieles)
* Thai (Aefgh Threenine)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
Version 46~beta
~~~~~~~~~~~~~~~
Released: 2024-02-09
This is an unstable release with the following changes:
* Show feedback for all conditions that pause automatic updates
* Various UI improvements and move to new libadwaita widgets
* Fix loading OS AppStream catalog data if it is available as YAML
* Add openSUSE Leap distro upgrade plugin
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Belarusian (Vasil Pupkin)
* Czech (Daniel Rusek)
* Galician (Fran Dieguez)
* Hebrew (Yosef Or Boczko)
* Persian (Danial Behzadi)
* Portuguese (Brazil) (Juliano de Souza Camargo)
* Russian (Artur S0)
* Turkish (Sabri Ünal)
Version 46~alpha
~~~~~~~~~~~~~~~~
Released: 2024-01-05
This is an unstable release with the following changes:
* Recognize links in package update descriptions
* Expose package names discreetly in the UI
* Increase speed of load of the category pages
* Improve search match with multiple words
* Recognize verified apps by Flathub
* Correct message when installing firmware updates
* Improve application safety checks
* Improve update preferences dialog
* Fix deadlock when cancelling app update
* Support user installation of local flatpak files
* Fix apps appearing unsorted and without tiles in category page
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Chinese (China) (Boyuan Yang)
* Chinese (Taiwan) (Andre Klapper)
* Czech (Daniel Rusek)
* Friulian (Fabio Tomat)
* Georgian (Ekaterine Papava)
* German (Jürgen Benvenuti)
* Hebrew (Yosef Or Boczko)
* Persian (Danial Behzadi)
* Romanian (Florentina Mușat)
* Russian (Artur S0)
* Turkish (Emin Tufan Çetin, Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
* Vietnamese (Ngọc Quân Trần)
Version 45.0
~~~~~~~~~~~~
Released: 2023-09-15
This is a stable release with the following changes:
* Fix a crash when downloading resources from the Internet
* Fix a crash after cancelled Restart request
* Correct safety rating for KDE apps
* Correct version history widgets visibility in the details page
This release also updates translations:
* Catalan (Jordi Mas)
* Greek, Modern (1453-) (Efstathios Iosifidis)
* Hebrew (Yosef Or Boczko)
* Hungarian (Balázs Úr)
* Indonesian (Kukuh Syafaat)
* Korean (Seong-ho Cho)
* Occitan (post 1500) (Quentin PAGÈS)
* Panjabi (A S Alam)
* Slovenian (Matej Urbančič)
* Spanish (Daniel Mustieles)
* Swedish (Anders Jonsson)
* Turkish (Emin Tufan Çetin)
Version 45~rc
~~~~~~~~~~~~~
Released: 2023-09-01
This is an unstable release with the following changes:
* Fix firmware's 'Restart & Update' to ask for the restart
* Fix app getting unresponsive when loading screenshots
* Improve performance for PackageKit plugin search-by-file
* Improve app license display
* Improve search to also check for 'contains' words
* Various minor styling updates
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Belarusian (Vasil Pupkin)
* Catalan (Jordi Mas)
* Chinese (China) (Luming Zh, Boyuan Yang)
* Czech (Daniel Rusek)
* Danish (Alan Mortensen)
* Dutch (Nathan Follens)
* Finnish (Jiri Grönroos)
* Galician (Fran Dieguez)
* Georgian (Ekaterine Papava)
* German (Philipp Kiemle, Christian Kirbach)
* Greek, Modern (1453-) (Efstathios Iosifidis)
* Hebrew (Yosef Or Boczko)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada, Kukuh Syafaat)
* Kazakh (Baurzhan Muftakhidinov)
* Lithuanian (Aurimas Černius)
* Panjabi (Amn Alam)
* Persian (Danial Behzadi)
* Polish (Piotr Drąg)
* Portuguese (Hugo Carvalho)
* Russian (Artur S0, Artur So)
* Spanish (Daniel Mustieles)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
Version 45~beta
~~~~~~~~~~~~~~~
Released: 2023-07-30
This is an unstable release with the following changes:
* Improve error notifications from failed GPG checks
* Disable animations in the UI according to the user’s accessibility settings
* Fix applying updates which require some packages to be removed to satisfy dependencies
* Stop using the software repositories dialog provided by the distribution, and always use GNOME
Software’s inbuilt dialog; this will affect Debian and Ubuntu
This release also updates translations:
* Belarusian (Vasil Pupkin)
* Chinese (China) (Luming Zh)
* Czech (Daniel Rusek)
* English (United Kingdom) (Bruce Cowan)
* French (Guillaume Bernard)
* Friulian (Fabio Tomat)
* Georgian (Ekaterine Papava)
* Greek, Modern (1453-) (Efstathios Iosifidis)
* Hebrew (Yosef Or Boczko)
* Hungarian (Balázs Úr)
* Lithuanian (Aurimas Černius)
* Persian (Danial Behzadi)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
Version 45~alpha
~~~~~~~~~~~~~~~~
Released: 2023-06-30
This is an unstable release with the following changes:
* Indicate when OS updates includes security fixes
* Ask whether to clear app storage for Flatpak apps on uninstall
* Show a notification when system updates are downloaded
* Advertise if an installed Flatpak app has reached end of life
* Revamp Safety ratings
* Fix slow Repositories dialog open
* Fix card view and key navigation in the Explore page
* Fix a crash on startup in GNOME OS
* Fix navigation between "Other Apps by Developer" in the Details page
* Fix a crash when refining a Flatpak app
* Fix a state recover after a failed app update
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Catalan (Jordi Mas i Hernandez)
* Czech (Daniel Rusek)
* Finnish (Jiri Grönroos)
* Friulian (Fabio Tomat)
* Georgian (Ekaterine Papava)
* Hebrew (Yosef Or Boczko)
* Italian (Gianvito Cavasoli)
* Occitan (post 1500) (Quentin PAGÈS)
* Persian (Danial Behzadi)
* Polish (Piotr Drąg)
* Portuguese (Hugo Carvalho)
* Russian (Aleksandr Melman)
* Slovenian (Martin)
* Turkish (Sabri Ünal)
Version 44.1
~~~~~~~~~~~~
Released: 2023-04-21
This is a stable release with the following changes:
* Fix firmware updates state change after update
* Fix origin reference information for PackageKit apps
* Fix a crash after dismissing firmware update warning dialog
* Fix a crash on repo removal
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Bulgarian (Alexander Shopov)
* Chinese (China) (Boyuan Yang)
* Chinese (Taiwan) (Chao-Hsiung Liao)
* Czech (Petr Kovář, Daniel Rusek)
* Dutch (Nathan Follens)
* French (Guillaume Bernard)
* Occitan (post 1500) (Quentin PAGÈS)
* Persian (Danial Behzadi)
* Slovenian (Martin)
* Vietnamese (Ngọc Quân Trần)
Version 44.0
~~~~~~~~~~~~
Released: 2023-03-16
This is a stable release with the following changes:
* Fix missing separators in system updates dialog
This release also updates translations:
* Bulgarian (Alexander Shopov)
* Catalan (Jordi Mas)
* Danish (Alan Mortensen)
* English (United Kingdom) (Bruce Cowan)
* Friulian (Fabio Tomat)
* Hebrew (Yosef Or Boczko)
* Korean (Seong-ho Cho)
* Polish (Piotr Drąg)
* Russian (Aleksandr Melman)
* Slovenian (Martin, Matej Urbančič)
* Swedish (Anders Jonsson)
Version 44~rc
~~~~~~~~~~~~~
Released: 2023-03-03
This is an unstable release with the following changes:
* Fix a crash during install of a firmware update
* Fix notifications of a prepared update
* Fix cancellation of an update
* Update details page on app job start/end
* Fix a crash after cancelling of a single package update
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Belarusian (Vasil Pupkin)
* Bokmål, Norwegian (Kjartan Maraas)
* Catalan (Jordi Mas)
* Finnish (Jiri Grönroos)
* Friulian (Fabio Tomat)
* Galician (Fran Dieguez)
* Georgian (Ekaterine Papava)
* German (Jürgen Benvenuti, Philipp Kiemle)
* Hebrew (Yosef Or Boczko, Yaron Shahrabani)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada, Kukuh Syafaat)
* Lithuanian (Aurimas Černius)
* Occitan (post 1500) (Quentin PAGÈS)
* Portuguese (Hugo Carvalho)
* Spanish (Daniel, Daniel Mustieles)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
Version 44~beta
~~~~~~~~~~~~~~~
Released: 2023-02-13
This is an unstable release with the following changes:
* Add a preference for only showing freely-licensed apps
* Improve design of Install/Uninstall buttons for app addons
* Fix loading flatpak bundles if a runtime is missing
* Improvements to the UI for ratings and reviews
* Fix refreshing the details page after searching for an app
* Improve choice of icons for apps where a themed icon is available
* Improve performance of downloading remote icons significantly
This release also updates translations:
* Basque (Asier Sarasua Garmendia)
* Belarusian (Vasil Pupkin)
* Galician (Fran Dieguez)
* Georgian (Ekaterine Papava)
* German (Jürgen Benvenuti)
* Hebrew (Yosef Or Boczko, Yaron Shahrabani)
* Indonesian (Andika Triwidada)
* Lithuanian (Aurimas Černius)
* Occitan (post 1500) (Quentin PAGÈS)
* Portuguese (Hugo Carvalho)
* Russian (Aleksandr Melman)
* Spanish (Philip Withnall, Daniel Mustieles)
* Turkish (Sabri Ünal, Emin Tufan Çetin)
* Ukrainian (Yuri Chornoivan)
* Vietnamese (Ngọc Quân Trần)
Version 44~alpha
~~~~~~~~~~~~~~~~
Released: 2023-01-06
This is an unstable release with the following changes:
* Allow automatically removing unneeded runtimes
* Show changelogs for rpm-ostree updates
* Limit the maximum description length in context tiles
* Support a less-prominent UI for regular updates for image-based OSs
* Improvements to error notification display
* Reduce reloading/refreshing of view when installing apps
* Minor usability improvements to review lists and adding a review
* Stop using libdnf in rpm-ostree backend
* UI polish on app source chooser
* Fix distro upgrades
* Fix system-wide external AppStream support
* UI polish on Incompatible Software dialog
* Fix opening web apps
* Fix notifying about available firmware updates
* Improve scaling of Explore page on phones
* Add a placeholder to search entry
* Fix repo authentication dialog
* Periodically refresh cached app icons
* Improve labels and tooltips on Updates page
* Annotate firmware updates with their release urgency
* Adapt to GTK API deprecations
* Use the OS logo for minor update rows for image-based OSs
* Change ‘application’ to ‘app’ in translatable strings
* Stop notifying about unprepared critical updates
* Show the ‘Learn More’ link for larger updates of image-based OSs if provided
* Add translations for more firmware device categories
This release also updates translations:
* Abkhazian (Nart Tlisha)
* Belarusian (Vasil Pupkin)
* Catalan (Jordi Mas)
* Chinese (Taiwan) (Cheng-Chia Tseng)
* Croatian (Goran Vidović)
* Czech (Daniel Rusek)
* French (Claude Paroz)
* Friulian (Fabio Tomat)
* Georgian (Zurab Kargareteli)
* German (Philipp Kiemle, Jürgen Benvenuti)
* Greek, Modern (1453-) (Kosmas Martakidis)
* Hebrew (Yosef Or Boczko)
* Hungarian (Balázs Úr)
* Icelandic (Sveinn í Felli)
* Interlingue (Olga Smirnova)
* Italian (Gianvito Cavasoli)
* Kazakh (Baurzhan Muftakhidinov)
* Panjabi (A S Alam)
* Persian (Danial Behzadi)
* Russian (Aleksandr Melman)
* Slovenian (Matej Urbančič)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
Version 43.1
~~~~~~~~~~~~
Released: 2022-10-21
This is a stable release with the following changes:
* Fix searches not completing if installing or uninstalling an app at the same time
* Notify of errors when running a flatpak app whose runtime is missing
* Fix installing local RPM packages
* Fix distribution upgrades when package conflicts are present
* Fix opening web apps from their details page
* Improve appearance of app ratings if ratings data cannot be downloaded
* Fix crash when showing offline update errors on startup
* Highlight priority of firmware updates, making security fixes more obvious
* Fix installation of pending apps in some situations
* Fix downloading of rpm-ostree app updates from the Updates page
This release also updates translations:
* Abkhazian (Nart Tlisha)
* Catalan (Jordi Mas)
* Chinese (Taiwan) (Cheng-Chia Tseng)
* Croatian (Goran Vidović)
* French (Claude Paroz)
* Friulian (Fabio Tomat)
* Georgian (Zurab Kargareteli)
* German (Philipp Kiemle, Jürgen Benvenuti)
* Icelandic (Sveinn í Felli)
* Italian (Gianvito Cavasoli)
* Kazakh (Baurzhan Muftakhidinov)
* Panjabi (A S Alam)
* Slovenian (Matej Urbančič)
Version 43.0
~~~~~~~~~~~~
Released: 2022-09-16
This is a stable release with translation updates:
* Bulgarian
* Catalan
* Chinese (Taiwan)
* Czech
* English (United Kingdom)
* Galician
* Georgian
* German
* Hebrew
* Hungarian
* Icelandic
* Latvian
* Lithuanian
* Nepali
* Serbian
* Slovenian
* Spanish
* Swedish
Version 43~rc
~~~~~~~~~~~~~
Released: 2022-09-02
This is the third unstable release for GNOME 43.
* Supports video as a screenshot
* Improvements of source picker in the details page
* Fixes a bug when viewing details of a package file
* Fixes a bug when reading certain .flatpakref file
This release also updates translations:
* Abkhazian
* Basque
* Catalan
* Chinese (China)
* Croatian
* Danish
* Dutch
* Finnish
* Galician
* Georgian
* Hebrew
* Icelandic
* Indonesian
* Korean
* Lithuanian
* Persian
* Polish
* Portuguese
* Portuguese (Brazil)
* Russian
* Serbian
* Spanish
* Turkish
* Ukrainian
Version 43~beta
~~~~~~~~~~~~~~~
Released: 2022-08-05
This is the second unstable release for GNOME 43.
* Various fixes related to changed threading model
* Various UI parts updated
* Sources dropdown had been reworked
* Fixes a rare crash when showing app details
This release also updates translations:
* Abkhazian
* Catalan
* Chinese (China)
* Dutch
* Georgian
* Hebrew
* Indonesian
* Italian
* Lithuanian
* Persian
* Portuguese
* Russian
* Serbian
* Spanish
* Turkish
* Ukrainian
* Vietnamese
Version 43~alpha
~~~~~~~~~~~~~~~~
Released: 2022-06-30
This is the first unstable release for GNOME 43.
* Various improvements to notifications
* Fix several crashes when handling flatpak apps
* Add ‘Other Apps by Author’ section in the app details page
* Improve styling of app context lozenges
* Add ‘Available for Distro’ section to the overview page (if configured by your distribution)
* Show more details about file system permissions requested by flatpak apps
* Show more types of URI from app metainfo
* Fix a few issues when using a dark mode theme
* Fix some issues with arrows in right-to-left locales
* Fix language pack installation for certain locales
* Improve debug output to make user bug reports more useful
* Add `--uninstall=ID` command line option
* Allow scrolling screenshots by clicking on next and previous screenshots
* Add support for webapps
* Allow swiping back in the shell using touch gestures
* Improved caching of downloaded metadata
* Many internal architectural changes to make the code more maintainable
* The popular-overrides GSettings key has been removed; distribution vendors wishing to mark
their apps as popular should see `doc/vendor-customisation.md` for examples of how to do this
now
* The hardcoded_popular Meson option has been renamed to hardcoded_curated.
This release also updates translations:
* Basque
* Bulgarian
* Catalan
* Chinese (China)
* Chinese (Taiwan)
* Croatian
* Czech
* Danish
* Dutch
* English (United Kingdom)
* Finnish
* French
* Friulian
* Galician
* Georgian
* German
* Hebrew
* Hungarian
* Indonesian
* Lithuanian
* Nepali
* Occitan (post 1500)
* Persian
* Polish
* Portuguese
* Portuguese (Brazil)
* Russian
* Serbian
* Slovenian
* Spanish
* Swedish
* Turkish
* Ukrainian
* Vietnamese
Version 42.0
~~~~~~~~~~~~
Released: 2022-03-18
This is a stable release with the following changes:
* Various fixes related to changed threading model
* Added several appstream-related fixes
This release also updates translations:
* Basque
* Bokmål, Norwegian
* Bulgarian
* Catalan
* Chinese (China)
* Danish
* Finnish
* French
* German
* Hebrew
* Hungarian
* Japanese
* Kazakh
* Lithuanian
* Occitan (post 1500)
* Persian
* Polish
* Russian
* Serbian
* Slovenian
* Swedish
Version 42~rc
~~~~~~~~~~~~~
Released: 2022-03-04
This is the third unstable release for GNOME 42.
* Cancel ongoing update downloads when system power is low
* Numerous small user interface fixes and tweaks
* Prioritize full matches in search results
* Improvements in dark mode
* Fix disabling flatpak remotes from the ‘Software Repositories’ dialog
* Threading and performance improvements which should reduce the number of user interface freezes
* Update some icons
* Check for updates when moving from a metered to a non-metered network connection
This release also updates translations:
* Basque
* Catalan
* Chinese (China)
* Croatian
* Czech
* Danish
* Friulian
* Galician
* Hebrew
* Indonesian
* Korean
* Lithuanian
* Persian
* Portuguese
* Portuguese (Brazil)
* Russian
* Slovenian
* Spanish
* Turkish
* Ukrainian
Version 42~beta
~~~~~~~~~~~~~~~
Released: 2022-02-10
This is the second unstable release for GNOME 42.
* Allow --verbose to be enabled at runtime
* Condense the rows in the age rating context dialog
* Update the UI for ratings and reviews of apps
* Improve the appearance of the category page loading screen
* Drop the first run dialog
* Improvements to dark theming
* Support viewing a specific metainfo file using --show-metainfo
* Several more threading improvements
* Icon updates
* Drop the hardcoded-popular plugin in favour of an appstream file
* The background image for upgrades is now looked for using several well-known (and
distribution-specific) names in ${DATADIR}/gnome-software/backgrounds, and the previous
Fedora-specific default background image is no longer distributed. Similarly, the
upgrade-background-uri GSettings key has been removed. Distributions may need to update how
they ship background images. See doc/vendor-customisation.md.
This release also updates translations:
* Chinese (China)
* Galician
* Hebrew
* Icelandic
* Indonesian
* Japanese
* Occitan (post 1500)
* Portuguese
* Portuguese (Brazil)
* Russian
* Slovenian
* Spanish
* Ukrainian
Version 42~alpha
~~~~~~~~~~~~~~~~
Released: 2022-01-07
This is the first unstable release for GNOME 42.
* Various UI parts updated
* Support more markup in the application description
* Ask about package signature with PackageKit on signing issue
* Show better System Update progress
* Remove various cultural sensitivity badges
* Fix a crash when processing age ratings
* Reload application details only when not installing/removing the application
* Do not follow symlinks when calculating disk size usage
* Fix addons section, which could show addons for different application
* Fix showing a ‘transaction in progress’ error when using the rpm-ostree plugin
* Don’t recommend a reboot if firmware updates fail
* Fix flathub repo being considered present on Fedora 35 with filtered flathub
* Allow searching for extensions
* Fix translation of main button on updates page
* Fix codec installation process
* Add new GNOME Circle apps to the featured carousel
* Improve metadata support for snaps
* Fix update checks being missed across suspend/hibernation
* Ensure application lists are updated when repositories are enabled/installed or
disabled/removed
This release also updates translations:
* Basque
* Belarusian
* Bulgarian
* Catalan
* Chinese (China)
* Croatian
* Dutch
* English (United Kingdom)
* Friulian
* Galician
* German
* Hebrew
* Icelandic
* Indonesian
* Latvian
* Lithuanian
* Occitan (post 1500)
* Persian
* Portuguese
* Portuguese (Brazil)
* Russian
* Serbian
* Slovak
* Slovenian
* Spanish
* Swedish
* Turkish
* Ukrainian
* Vietnamese
Version 41.0
~~~~~~~~~~~~
Released: 2021-09-17
This is a stable release with the following changes:
* Instead of showing all package-based apps as "potentially unsafe", only use that language for
3rd party ones
* Fix a bug where the "Show more" button on an app details page would flicker when the window is
resized
* Fix a bug where Software sometimes shows an Uninstall button after uninstalling something
* Add GNOME Circle apps to the featured carousel
* Fix a bug where Software would sometimes fail to execute an install/remove operation for
PackageKit software rather than showing a PolicyKit password prompt
* Fix a bug where Software would fail to upgrade the distribution via PackageKit
* Fix the hiding of rows on the Updates tab after they have been updated
This release also updates translations:
* Basque
* Catalan
* Chinese (China)
* Croatian
* Czech
* Danish
* Dutch
* Finnish
* French
* Galician
* German
* Hungarian
* Indonesian
* Korean
* Lithuanian
* Occitan (post 1500)
* Polish
* Portuguese
* Portuguese (Brazil)
* Romanian
* Russian
* Slovenian
* Spanish
* Swedish
* Ukrainian
Version 41~rc
~~~~~~~~~~~~~
Released: 2021-09-07
This is the third unstable release for GNOME 41.
* Tweaks to the context tiles and dialogs
* Fixes to the details page for non-desktop apps
* Re-add support for the add-ons categories
* Sort new and updated apps by release date on the category page
This release also updates translations:
* Basque
* Catalan
* Chinese (China)
* Chinese (Taiwan)
* Croatian
* English (United Kingdom)
* Finnish
* Galician
* Indonesian
* Kazakh
* Korean
* Lithuanian
* Occitan (post 1500)
* Persian
* Portuguese
* Portuguese (Brazil)
* Slovenian
* Spanish
* Swedish
* Ukrainian
Version 41~beta
~~~~~~~~~~~~~~~
Released: 2021-08-13
This is the second unstable release for GNOME 41.
* Many parts of the user interface reworked
* Fix when the 'Launch' button is shown after an application install
* Fix appstream:// URL handling
* Fix application freeze on Flatpak application install/remove/update
* Disable automatic update downloads when in power saver mode
This release also updates translations:
* Belarusian
* Bulgarian
* Catalan
* Friulian
* Galician
* German
* Greek, Modern (1453-)
* Occitan (post 1500)
* Persian
* Portuguese
* Portuguese (Brazil)
* Slovenian
* Ukrainian
Version 41~alpha
~~~~~~~~~~~~~~~~
Released: 2021-07-20
This is the first unstable release for GNOME 41.
* Many parts of the user interface reworked
* Improve error reporting from flatpak when low on disk space
* Fix issues with updating the UI when uninstalling apps with add-ons
* Don’t keep rpm-ostreed alive forever
* Prevent polkit checks showing up for background operations
* Disallow submitting reviews for an app you haven’t installed
* Show download size in the Updates page
* Notify when restart is needed when uninstalling an app
* Fix some issues with searches not running
* Allow non-integer average star ratings for apps
* Reduce number of categories in the UI
* Improve ‘pending updates’ notifications
* Refine presentation of download and installed size on details page
* Remove left over gnome-online-account dependencies
This release also updates translations:
* Basque
* Belarusian
* Bokmål, Norwegian
* Catalan
* Chinese (China)
* Chinese (Taiwan)
* Czech
* Dutch
* English (United Kingdom)
* Finnish
* Friulian
* German
* Greek, Modern (1453-)
* Hebrew
* Italian
* Lithuanian
* Nepali
* Occitan (post 1500)
* Persian
* Polish
* Portuguese