summaryrefslogtreecommitdiffstats
path: root/NEWS
blob: 535bae9109e163e2c4916c8639ff6a8690756045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
Version 43.5
~~~~~~~~~~~~
Released: 2023-03-03

This is a stable release with the following change:
 * Fix few memory leaks

Version 43.4
~~~~~~~~~~~~
Released: 2023-02-10

This is a stable release with the following changes:
 * Stop cancelled search in appstream data early
 * Lookup for appstream-provided icons in more directories

Version 43.3
~~~~~~~~~~~~
Released: 2023-01-06

This is a stable release with the following changes:
 * Periodically expire cached app icons
 * Stop notifying about unprepared critical updates

This release also updates translations:
 * Abkhazian (Nart Tlisha)
 * Georgian (Ekaterine Papava)
 * Hebrew (Yosef Or Boczko)
 * Interlingue (Olga Smirnova)
 * Occitan (post 1500) (Quentin PAGÈS)
 * Persian (Danial Behzadi)

Version 43.2
~~~~~~~~~~~~
Released: 2022-12-02

This is a stable release with the following changes:
 * Fix show of updatable app in the details page
 * Fix search for apps providing some feature under rpm-ostree
 * Fix sending of ODRS data when using libsoup3
 * Fix occasional crash when installing apps

This release also updates translations:
 * Abkhazian (Nart Tlisha)
 * Belarusian (Vasil Pupkin)
 * Czech (Daniel Rusek)
 * Georgian (Zurab Kargareteli)
 * Greek (Kosmas Martakidis)
 * Hebrew (Yosef Or Boczko)
 * Hungarian (Balázs Meskó)
 * Russian (Aleksandr Melman)
 * Turkish (Sabri Ünal)

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
 * Portuguese (Brazil)
 * Romanian
 * Russian
 * Serbian
 * Spanish
 * Swedish
 * Ukrainian

Version 40
~~~~~~~~~~
Released: 2021-03-19

This is a stable release with the following changes:
 * Fix handling of invalid or incomplete application icons
 * Fix the plugin documentation to reflect reality
 * Fix the Snap plugin to actually load icons
 * Set download size to 0 after the package is downloaded

Translation updates:
 * British English
 * Danish
 * Greek
 * Italian
 * Norwegian Bokmål
 * Polish
 * Punjabi
 * Serbian

Version 40~rc
~~~~~~~~~~~~~
Released: 2021-03-12

This is an unstable release with the following changes:
 * Implement new featured apps carousel.
 * List of Flatpak repositories is updated when changed using the Flatpak command line tool.
 * The loading page now shows the full color icon instead of the symbolic one.
 * Show release date in version history for releases that use the 'date' attribute.
 * Improved icon handling, including with hiDPI screens.
 * Fixed a bug in remembering when update notifications were shown.
 * Build as a dynamic rather than a static library, and rearrange installation paths.

Translation updates:
 * Basque
 * Catalan
 * Croatian
 * Czech
 * Dutch
 * English (United Kingdom)
 * Finnish
 * French
 * Friulian
 * Galician
 * German
 * Hungarian
 * Indonesian
 * Kazakh
 * Korean
 * Lithuanian
 * Persian
 * Portuguese
 * Portuguese (Brazil)
 * Romanian
 * Serbian
 * Slovenian
 * Spanish
 * Swedish
 * Turkish
 * Ukrainian

Version 40~beta
~~~~~~~~~~~~~~~
Released: 2021-02-16

This is an unstable release with the following changes:
 * GNOME Software now uses libappstream instead of libappstream-glib to work with appstream data
   which provides information about apps and other components.
 * App details pages show version history information when it's available.
 * The loading page now shows the full color icon instead of the symbolic one.
 * UI elements for displaying app add-ons have been tweaked to more closely match the designs.
 * Installed icons and the badge showing the number of updates available were changed back to blue
   from green.
 * The dropdown showing the available sources of an application includes the packaging format
   (e.g. Flatpak vs RPM).
 * A bug was fixed that prevented installation of .flatpakref files

Translation updates:
 * Catalan
 * Czech
 * Galician
 * Indonesian
 * Panjabi
 * Portuguese
 * Slovenian
 * Spanish
 * Swedish

Version 40~alpha
~~~~~~~~~~~~~~~~
Released: 2021-01-27

This is the first unstable release for GNOME 40.
 * Small updates to how app descriptions and addons are presented on the details page
 * Fix handling of pending app installations when going online
 * Better support for dark themes (particularly Adwaita-Dark)
 * Improvements to how app screenshots are loaded and presented
 * Hide ‘Launch’ button if an application (for example, Wine) cannot be launched
 * Make the UI clearer when loading information from flatpakref files
 * Don’t update app metadata on start when download-updates is disabled
 * Fix opening the updates list when clicking on an updates notification
 * Fix state updates when installing flatpak apps or repos which are already installed
 * Add Ctrl+Q as a keyboard shortcut for closing the window
 * Rework timing and content of software update notifications
 * Prevent uninstalled local apps from appearing in the installed apps list
 * Support installation/uninstallation of addons for flatpak apps
 * Improve presentation of age ratings for apps
 * Fix a crash in the updates page
 * Fix presentation of app permissions for fully sandboxed flatpak apps
 * Fix deadlock on rpm-ostree systems
 * Fix presentation of version number changes in right-to-left locales
 * Error handling improvements for fwupd
 * Performance improvements for ODRS on startup
 * Improve presentation of firmware warning messages
 * XML parsing performance improvements
 * Automatically remove end-of-life flatpak runtimes
 * Support updating flatpaks to their new name when they are renamed
 * Update the GNOME Software icon
 * Support more search results in the snap store
 * Drop libgnome-desktop-3 dependency in favour of gsettings-desktop-schemas

This release also updates translations:
 * Basque
 * Bokmål, Norwegian
 * Catalan
 * Chinese (Taiwan)
 * Czech
 * Friulian
 * Galician
 * German
 * Greek, Modern (1453-)
 * Hebrew
 * Indonesian
 * Italian
 * Kabyle
 * Kazakh
 * Latvian
 * Lithuanian
 * Persian
 * Portuguese
 * Portuguese (Brazil)
 * Romanian
 * Slovak
 * Spanish
 * Turkish
 * Ukrainian
 * Vietnamese

Version 3.37.92
~~~~~~~~~~~~~~~
Released: 2020-09-01

This is an unstable stable release with the following changes:
 * Add sysprof support for profiling jobs
 * Add webflow and basic auth support to flatpak plugin
 * Coalesce refresh operations where possible
 * Correctly mark layered rpm-ostree local packages as removable
 * Fix flatpak bundle installation
 * Handle invalid snap auth data
 * Improve flatpak progress reporting for transactions
 * Improve the heuristic for detecting old-style AppStream override files
 * Many performance improvements in many areas of the code
 * Only delete the firmware archive if we downloaded it to the cache
 * Show a pulsing progress bar if progress is unknown
 * Support loading appstream files from custom install prefix
 * Use the runtime fwupd version for the user agent

This release also updates existing translations.

Version 3.36.0
~~~~~~~~~~~~~~
Released: 2020-03-11

This is the first stable release for GNOME 3.36.

Version 3.35.92
~~~~~~~~~~~~~~~
Released: 2020-03-04

This is an unstable stable release with the following changes:
 * Fix crash when viewing application details
 * Fix “thrice daily” check running every 3 days
 * Improve the appearance of the front page banners
 * Show the correct upgrade banner contents when a reboot is requried

This release also updates existing translations.

Version 3.35.91
~~~~~~~~~~~~~~~
Released: 2020-02-19

This is an unstable stable release with the following changes:
 * Add an info bar about automatic updates
 * Avoid rpm-ostree downgrade error when doing distro upgrade
 * Click on stars to open review dialog in the details view
 * Fix loading of icons from AppStream YAML
 * Fix weird font sizes in the batter
 * Hide any in-app notifications when closing the main window
 * Integrate better with snapd
 * Only ignore flatpak estimated progress if >10%
 * Remove color stripes on categories in the Explore page
 * Remove support for Shell extensions
 * Remove webapp support
 * Reset star rating when loading an unrated app
 * Sort applications using locale based algorithms
 * Stop snaps from being automatically updated

This release also adds and updates existing translations.

Version 3.35.2
~~~~~~~~~~~~~~
Released: 2019-11-25

This is an unstable stable release with the following changes:
 * Add missing OARS content rating descriptions
 * Add new plugin for restricting access to apps
 * Avoid a UI crash when switching modes
 * Build libmalcontent dependency on Fedora CI
 * Correctly distinguish empty content ratings from missing ones
 * Correctly set the application state if autoupdate is in progress
 * Do not show a crazy error when installing packages
 * Do not show non-applications in the installed panel
 * Download Flatpak updates in the correct installation
 * Expose snap channels as app alternates
 * Fix a crash on 32-bit systems
 * Fix langpacks autoinstall on Fedora SilverBlue
 * Fix manual detach when updating removable device firmware
 * Fix third party repo enabling not working
 * Hide add/remove shortcut buttons for parentally filtered apps
 * Improve some front page banners
 * Invalidate caches when adding or removing remotes
 * Make flatpak more thread-safe to fix some crashes
 * Match the exact ID when refining a wildcard
 * Only set the app row's buttons as destructive when they remove an app
 * Remove hardcoded-featured plugin
 * Remove the app folder functionality as this is now built-in to the shell
 * Remove the banner editor as this is now an app on it's own
 * Rework age ratings handling to avoid hard-coded list
 * Set the shell extension origin correctly in all cases
 * Show the channel for snaps
 * Speed up the flatpak plugin in some situations
 * Use plugin API to launch apps from install notification.

This release also adds and updates existing translations.

Version 3.34.0
~~~~~~~~~~~~~~
Released: 2019-09-09

This is a stable release with the following changes:
 * Add a link to the privacy policy in the review dialog
 * Add and improve many overview banners
 * Add support for download scheduling using Mogwai
 * Allow installing locale data automatically
 * Allow snaps to be shown by AppStream ID
 * Don't apply drop shadow on stock symbolic icons
 * Don't install queued apps when the network changes and is metered
 * Fix the 'localised in my language' kudo
 * Hide addons that are not available in repos
 * Localize ESRB content rating strings
 * Never show the installation progress bar going backwards
 * Notify the user when an application can escape the sandbox
 * Refactor screenshots and hide those unavailable when offline
 * Select the rating systems selected based by territory
 * Use smaller default size for main window when required

This release also adds and updates existing translations.

Version 3.32.4
~~~~~~~~~~~~~~
Released: 2019-07-11

This is a stable release with the following changes:
 * Fix an issue that led to some packages with multiple appdata files not correctly showing up on
   the updates page
 * Fix various problems with flatpak branch handling that were causing issues with freedesktop.org
   runtime updates
 * Fix flatpak update versions to correctly show up
 * Various other minor bug fixes

Version 3.32.3
~~~~~~~~~~~~~~
Released: 2019-05-24

This is a stable release with the following changes:
 * Add missing XbSilo locking, hopefully fixing a large number of reported crashes
 * Fix a regression that caused the fonts category to go missing
 * Show a placeholder on the details page when we don't have the actual icon
 * Plug a large memory leak
 * Use nicer arrows for version numbers on the updates page
 * Fix an issue that led to screenshots not being correctly scaled on hidpi
 * flatpak: Fix several double-uses of GErrors
 * flatpak: Handle failure of a libflatpak function updating permissions
 * rpm-ostree: Implement what-provides decompose

Version 3.32.2
~~~~~~~~~~~~~~
Released: 2019-05-07

This is a stable release with the following changes:
 * Avoid showing a review more than once
 * Correctly update progress bar when downloading packagekit distro upgrades
 * Fix a crash when closing the updates dialog before the content has loaded
 * Fix CTRL+F not working right in certains conditions
 * Set 022 umask to make sure flatpak system helper process can read the files we've written
 * rpm-ostree: Implement getting the repo list, and enabling and disabling repos
 * rpm-ostree: Implement provides search
 * rpm-ostree: Make layered apps not discoverable in the UI
 * Various other minor bug fixes

This release also updates translations.

Version 3.32.1
~~~~~~~~~~~~~~
Released: 2019-04-15

This is a stable release with the following changes:
 * Add drop shadows to app icons
 * Various fixes to initial loading screen
 * Show a generic icon instead of empty space if we failed to load the app icon
 * Update featured banners for Maps and Blender
 * Update featured app IDs
 * Fix a crash due to missing locking
 * Fix missing back button under certain conditions
 * Fix loading AppSteam data from .yml.gz files
 * Fix an issue that caused flatpak repo to not be correctly shown when it matched an existing
   packagekit repo name
 * Hide the fwupd Vendor repo in the repos dialog

This release also updates translations.

Version 3.32.0
~~~~~~~~~~~~~~
Released: 2019-03-11

This is the first stable release for GNOME 3.32. Notable changes compared to 3.30 include:
 * Appstream parsing is completely rewritten and now uses the new libxmlb library, instead of
   appstream-glib
 * Improved handling for apps that are available from multiple sources, e.g. as a flatpak from
   Flathub, as a flatpak from Fedora, and as an RPM package
 * New source selection drop down on the details pages
 * Flatpak apps now list the permissions they need on the details pages, and also show new
   permissions when updating
 * The flatpak backend received a large number of bug fixes
 * The rpm-ostree backend has grown many new features and bug fixes, including support for
   installing layered packages and doing distro upgrades
 * Numerous fixes for error reporting, including making error messages more useful and avoiding
   showing network errors from background operations
 * The items in the app menu were all moved to the window menu
 * New redesigned icon

Version 3.31.92
~~~~~~~~~~~~~~~
Released: 2019-03-05

This is an unstable release in the 3.31 development series, marking the end of the development
cycle. Next release will be 3.32.0!
 * Add two missing description strings for flatpak permissions
 * Only show permissions for flatpak apps and not for e.g. fonts
 * Fix flatpak permissions to correctly show up for available apps
 * Hide various details page items that don't make sense when showing .flatpakrepo files
 * Fix an issue that caused descriptions to sometimes not get correctly loaded
 * Sort the items in the Source drop down
 * Don't show error notifications for background download and refresh errors
 * Fix an issue that could cause an explosion of "A restart is required" notifications
 * Various flatpak plugin fixes to make it correctly match the data when multiple flatpak repos
   are available
 * Fix the rpm-ostree plugin to correctly convert remote dbus errors

This release also updates translations.

Version 3.31.90
~~~~~~~~~~~~~~~
Released: 2019-02-24

This is an unstable release in the 3.31 development series, with the following improvements:
 * Fix showing the installed check mark on tiles
 * Fix crashes in the packagekit plugin due to missing locking
 * Add back support for appstream data in /var/{cache,lib}/app-info directories that accidentally
   got left out with the libxmlb rewrite
 * Update the featured banner for gnome-chess
 * Fix the details page alignment when only one screenshot is shown
 * Move the Update button to the right hand side on the details page
 * Fix enabling repos when installing codecs through the extras page
 * Remove the Sundry folder and sync the apps in the Utilities folder with gnome-menus 3.31.90
 * Improve various content rating texts
 * Drop workarounds for locales with codesets
 * Use the currently selected icon theme for stock icons
 * Don't hide compulsory apps in the category views
 * Use the SPDX-License-Identifier in all source files
 * Remove various useless error prefixes, making flatpak and packagekit error messages shorter and
   easier to read
 * flatpak: Show the installation type (user, system) in the Source dropdown
 * flatpak: Let apps control the name suffix/prefix they have and don't force (Nightly) suffix for
   everything on the master branch
 * flatpak: Various fixes for matching flatpaks to appstream entries
 * flatpak: Distinguish between the same app coming from multiple remotes
 * rpm-ostree: Correctly resolve installed appdata files to package names
 * rpm-ostree: Hook up percentage progress for install and remove
 * rpm-ostree: Implement layered package install
 * rpm-ostree: Implement locally downloaded rpm install
 * rpm-ostree: Show the source of the packages when installing layered packages
 * rpm-ostree: Various fixes making things more robust
 * snap: Use new media API

This release also updates translations.

Version 3.31.2
~~~~~~~~~~~~~~
Released: 2019-01-16

This is an unstable release in the 3.31 development series, with the following improvements:
 * Show permissions for installed flatpaks, and new permissions for updates
 * Use libxmlb to parse AppStream XML, making gnome-software start up faster and use less memory
 * Update the app icon
 * Update categories for ESRA rating system
 * Improve various error messages to have more details
 * Fix an issue that caused incorrect version numbers to be shown for installed flatpaks
 * Fix various thread safety related crashes
 * Fix row unrevealing to not leave behind 2 pixels on the updates page
 * Make the refresh button to actually refresh packagekit cache
 * Fix various issues that could lead to cache refresh getting stuck
 * Show updates available notifications even when automatic updates are disabled
 * Fix counting apps in the updates applied notification
 * Improve packagekit update loading code, hopefully making it more robust
 * Fix an issue that could lead to the packagekit plugin activating on rpm-ostree based systems
 * Switch flatpak updates to use a single transaction, which lets us share more code (and bugs)
   with the command line flatpak utility
 * Fix various issues with transitioning from the "Download" state to "Restart & Update"
 * Don't error out from update downloads if the ODRS server is unavailable
 * Fix old updates accumulating in the OS Updates item
 * Various flatpakref installation fixes
 * Fix opening the details page when clicking on "Show Details" in GNOME Shell
 * Fix opening shell extensions details from GNOME Tweaks
 * Various fixes for initial loading state
 * Add a separate "Download" step for packagekit offline updates, so that "Restart & Update" is
   instant
 * Fix a version comparison issue that led to package updates sometimes showing as downgrades in
   the OS Updates section (this needs latest appstream-glib)
 * Show the refresh button when the updates page is in the failed state
 * Notify about offline updates only after they are fully downloaded
 * Fix a memory corruption issue on 32-bit arches that made gnome-software very crashy
 * Fix an issue with stuck back button on the details page after closing and reopening
   gnome-software
 * Make distro upgrades to Fedora N+2 release show up correctly
 * Various flatpak plugin fixes
 * Allow opening CAB files that include more than one update
 * Fix critical warnings when quickly switching between category pages
 * Small memory leak fixes

This release also updates translations.

Version 3.31.1
~~~~~~~~~~~~~~
Released: 2018-10-09

This is an unstable release in the 3.31 development series, with the following improvements:
 * Icon redesign
 * Switch to using window menus instead of app menu
 * Add a source selection drop down to details pages
 * Move the search button to the left side in the header bar
 * Various other minor UI tweaks
 * GtkBuilder UI file changes to pave the way for an eventual GTK4 port (please file issues for
   any UI layout regressions if you notice any!)
 * Various internal plugin loader fixes and cleanups
 * Remove the steam plugin
 * Simplify the details page loading
 * Fix an issue that caused icons to not get loaded for locally installed flatpaks
 * Update Fedora distro upgrades text
 * Avoid a critical warning in the fwupd plugin when the device vendor is not set
 * Show verified developers for snaps

This release also updates translations.

Version 3.30.2
~~~~~~~~~~~~~~
Released: 2018-10-05

This is a stable release with the following changes:
 * Localize the polkit policy file
 * Display ongoing app-installation at top of the list
 * Update apps in display order
 * Fix autoupdates triggering in a feedback loop
 * Tweak the prefs dialog layout
 * Various fixes to the flatpak plugin, making its state keeping more robust
 * Fix flatpak errors to show up instead of a generic "Aborted" error
 * Avoid triggering reboots for online updatable apps (flatpak)
 * Make rpm-ostree updates work again
 * Fix an issue that caused duplicate lines in 'OS Updates' on rpm-ostree based systems
 * Compiler warning fixes

This release also updates translations.

Version 3.30.1
~~~~~~~~~~~~~~
Released: 2018-09-25

This is a stable release with the following changes:
 * Fix an issue that caused duplicate lines in 'OS Updates'
 * Filter the application restart notification to actual desktop apps
 * Fix an issue that caused automatic updates to fail during download phase
 * Avoid showing duplicates in the featured apps when an app is available as both flatpak and a
   package
 * Fix an issue that caused gnome-software to use 100% of CPU when doing automatic updates
 * Lower IO priority for gnome-software so that other apps stay responsive during flatpak installs
 * Various fixes and wording changes to automatic updates notifications
 * Only show "Examine Disk" button when baobab is available
 * Leak and correctness fixes in the snap plugin

This release also updates translations.

Version 3.30.0
~~~~~~~~~~~~~~
Released: 2018-09-04

This is the first stable release for GNOME 3.30.

Version 3.29.92
~~~~~~~~~~~~~~~
Released: 2018-08-28

This is an unstable release in the 3.27 development series, with the following improvements:
 * Do not go 'back' to a previous application details panel
 * Don't crash if when getting the fwupd locked status
 * Download updates automatically when required
 * Fix dark theme support
 * Hide screenshot and support widgets when no screenshots
 * Ignore non-interactive generic errors
 * Implement distro upgrade downloading when using rpm-ostree
 * Only update the update check timestamp when it succeeds
 * Open the WiFi panel when clicking the Network Settings button
 * Rotate featured apps on the overview page
 * Simplify the updates panel
 * Use FlatpakTransaction to install, remove and update
 * Use new display name for the Snap publisher
 * Use the full name for the ESRB ratings descripion

This release also updates translations.

Version 3.29.1
~~~~~~~~~~~~~~
Released: 2018-03-05

This is an unstable release in the 3.27 development series, with the following improvements:
 * Show a better notification when a local file or URI is not supported
 * snap: Use ODRS for reviews

This release also updates translations.

Version 3.28.2
~~~~~~~~~~~~~~
Released: 2018-05-09

This is a stable release with the following changes:
 * Add a warning when enabling the LVFS remote
 * Show a notification when failing to open an url or a local file
 * Fix multiple flatpak refreshes with new libflatpak
 * Build fixes for FreeBSD
 * Icon loading fixes for snap

This release also updates translations.

Version 3.28.1
~~~~~~~~~~~~~~
Released: 2018-04-09

This is a stable release with the following changes:
 * Fix a regression with opening results from gnome-shell search
 * Show "Source: " tag in gnome-shell search when we have multiple matches
 * Improve unknown license tag color scheme on details page
 * Don't show installed icon on app tiles while still installing
 * Fix empty items appearing under OS Updates
 * Fix a regression that caused duplicate results in codec search
 * Fix an issue with passing username/password to packagekit proxy
 * Avoid crashing during first run with no network access
 * A number of rpm-ostree fixes, making it possible to trigger offline updates
 * Stop searching multiple times on search page
 * Update Fedora third party repositories "Find out more..." link
 * Fix an issue with in-app notifications failing with invalid markup errors
 * Improve purchase failure handling for the snap store
 * Fix a possible crash in snap plugin when adding screenshots
 * Various other crash and correctness fixes

This release also updates translations.

Version 3.28.0
~~~~~~~~~~~~~~
Released: 2018-03-12

This is the first stable release for GNOME 3.28, with the following improvements:
 * Fix the build on NixOS
 * Fix purchasing not working after authentication
 * Revert a commit that led to flatpak updates failing without any feedback
 * Make front page featured tile corners round to match other tiles
 * Fix in-app notification close button alignment
 * Several fixes to make error notifications more useful
 * snap: Fix invalid metadata after cancelled refine
 * snap: Launch command line snaps with 'snap run'

This release also updates translations.

Version 3.27.92
~~~~~~~~~~~~~~~
Released: 2018-03-05

This is an unstable release in the 3.27 development series, marking the end of the development
cycle. Next release will be 3.28.0!
 * Removal of global plugin cache, simplifying gnome-software internals
 * Software Repositories dialog got another batch of improvements and UI changes
 * GNOME Shell Extensions repository and fwupd repositories are now shown in the Software
   Repositories dialog
 * Shell extensions handling through PackageKit was improved, fixing a long standing bug where we
   were unable to remove shell extension packages
 * Category page rewrite that landed earlier this cycle went through UI review and got a number of
   fixes
 * Package version comparison in the updates dialog was fixed and should no longer incorrectly
   show updates as downgrades
 * Distro upgrade notifications are now rate limited to once per week
 * Install buttons in codec install view that got lost in the 3.22 cycle are now back
 * Various paper cuts with distro upgrades were fixed
 * Various fixes to installing apps from yum repos that have enabled=0 enabled_metadata=1
 * Various other correctness and warning fixes
 * Distros: Minimum supported fwupd version is now 1.0.3
 * Distros: We've released PackageKit 1.1.9 that has string changes to match gnome-software 3.28

This release also updates translations.

Version 3.27.90
~~~~~~~~~~~~~~~
Released: 2018-02-14

This is an unstable release in the 3.27 development series, with the following improvements:
 * The Software Sources dialog was renamed to Software Repositories and rewritten
 * Fedora Workstation third party repository handling was rewritten and should be more robust
 * Improved handling of metered network connections, making sure we cancel any downloads when
   changing to a metered connection
 * Limit the number of parallel operations depending on the installed CPU
 * Improved handling of pending installs when there's no network connection
 * Unused ostree and rpm plugins were dropped
 * Switch from GtkSpell to gspell
 * Improve alignment on the updates page
 * Do not show missing screenshot error for fonts that have screenshots
 * Fix various issues on Ubuntu when purchasing apps
 * Fix an issue that led to duplicate categories appearing on the overview page
 * Various memory leak and correctness fixes

This release also updates translations.

Version 3.27.4
~~~~~~~~~~~~~~
Released: 2018-01-08

This is an unstable release in the 3.27 development series, with the following improvements:
 * Add missing locking to gs_plugin_cache_remove(), fixing a possible crash
 * Fix various memory leaks spotted by valgrind
 * Fix a possible crash triggered by the fwupd plugin
 * Do not emit critical warnings when reviewing OS Updates
 * fwupd: Use the custom user-agent when downloading firmware
 * overview page: Fix a crash when we have no featured apps
 * packagekit: Implement repository enabling
 * Fix hover CSS for "unknown" and "nonfree" license buttons

This release also updates translations.

Version 3.27.3
~~~~~~~~~~~~~~
Released: 2017-11-13

This is an unstable release in the 3.27 development series, with the following improvements:
 * Fix crashes in the repos plugin due to missing locking
 * Add translated strings for the new OARS v1.1 additions
 * Work around Firefox deleting rpm/deb files downloaded to /tmp when closing
 * Log errors to console when starting from command line
 * Do not enable distro-upgrades when updates are disabled
 * Do not require the user to keep clicking 'More reviews' after each click
 * Fix a critical when updating (flatpak) packages live
 * fwupd: Do not crash when trying to list a locked device
 * fwupd: Prepend the vendor name to the device name if not included
 * Improve SPDX ID parsing when working out if it is 'free'
 * packagekit: Do not crash when getting an invalid ID from PackageKit
 * packagekit: Support apt:// URLs
 * Various fixes to the snap plugin
 * Do not crash when closing the source dialog while it is loading

This release also updates translations.

Version 3.27.2
~~~~~~~~~~~~~~
Released: 2017-11-13

This is an unstable release in the 3.27 development series, with the following improvements:
 * Redesigned category view
 * Better notifications for completed distro upgrades
 * Number of test suite fixes to pave way for continuous integration tests
 * Improved support for running on low res displays
 * Various fixes to internal state handling
 * Allow linking to specified proprietary licenses
 * Don't use versioned subdirectories under ~/.cache/gnome-software
 * Only show in-app notifications for interactive user actions
 * Various fixes for flatpak, fwupd, and snap support

This release also updates translations.

Version 3.26.2
~~~~~~~~~~~~~~
Released: 2017-11-09

This is a stable release with the following changes:
 * Various fixes to cancellable handling, making it more robust to cancel install/remove
   operations
 * Fix a common crash in Fedora distro upgrades plugin
 * Fix showing N+2 Fedora upgrades
 * Fix flatpak updates inadvertently triggering a reboot
 * Revert plugin GType registering changes that broke app "adopting"
 * Various flatpak plugin fixes
 * Various snap plugin fixes
 * Bump fwupd required dep to 0.9.7 and support building with new 1.0.0 API
 * Avoid erroring out for operations that return more than 500 results (distro upgrades, getting
   gnome-shell extensions list)
 * Fix a few memory leaks

This release also updates translations.

Version 3.26.1
~~~~~~~~~~~~~~
Released: 2017-10-02

This is a stable release with the following changes:
 * Fix memory leak in "external appstream" plugin
 * Don't translate an icon name in the Punjabi translation
 * Fix critical warning in the fwupd plugin if the update URI isn't set
 * Fix Addon categories not showing
 * Fix crash in PackageKit plugin if reporting progress with no current application
 * Revert a change in the snapd plugin which can cause operations to fail or hang in some
   situations

This release also updates translations.

Version 3.26.0
~~~~~~~~~~~~~~
Released: 2017-09-11

This is the first stable release for GNOME 3.26, with the following improvements:
 * Use the new fwupd API in 0.9.7 to avoid when a reboot is required
 * Pass the complete proxy settings to PackageKit

The following bugs are also fixed:
 * Do not crash when emitting an uncommon error message
 * Do not show a critical warning with new versions of fwupd
 * Do not show an error for a remote-less flatpakref application
 * Don't refine PackageKit packages after we've been cancelled
 * Fix a possible crash on 32 bit systems
 * Fix GNOME Shell search results for snap applications
 * Properly disable shell-extensions when not running GNOME Shell

This release also updates translations.

Version 3.25.91
~~~~~~~~~~~~~~~
Released: 2017-08-21

This is an unstable release in the 3.25 development series, with the following improvements:
 * Add a simple donation button on the details page

The following bugs are also fixed:
 * Allow plugins to say that installation cannot be cancelled
 * Fix displaying the info bar for the Shell Extensions category
 * Use first featured snap as the featured app

This release also updates translations.

Version 3.25.90
~~~~~~~~~~~~~~~
Released: 2017-08-07

This is an unstable release in the 3.25 development series, with the following improvements:
 * Add a simple donation button on the details page

The following bugs are also fixed:
 * Do not crash if the child schema is invalid
 * Don't log a warning when clicking the the 'more results' search entry
 * Fixed subcategory names localization
 * Ensure flatpak remote names are valid
 * Fix critical warning with new versions of the fwupd daemon

This release also updates translations.

Version 3.25.4
~~~~~~~~~~~~~~
Released: 2017-07-21

This is an unstable release in the 3.25 development series, with the following improvements:
 * Add new rpm-ostree integration for Fedora Atomic Workstation
 * Install the Flatpak runtime as part of the application install phase
 * Split OS updates up into multiple sections and show the target version
 * Support compatibility IDs when getting reviews from the ODRS

The following bugs are also fixed:
 * Cancel plugin jobs if they take too much time
 * Correctly find already installed flatpak runtimes
 * Do not show an error for a flatpakref when broken remotes exist
 * Don't show the screenshot section for runtimes
 * Fix authentication prompt not showing when using snapd
 * Make license buttons buttons actually look clickable
 * Make the review moderator panel easier to use
 * Only show snaps as sandboxed if snapd supports confinement
 * Respect the per-user or per-system install preferences
 * Return the correct installed state for user/system flatpak remotes

This release also updates translations.

Version 3.25.3
~~~~~~~~~~~~~~
Released: 2017-06-22

This is an unstable release in the 3.25 development series, with the following improvements:
 * Add a banner designer utility
 * Add the initial support to support purchasable apps
 * Automatically install flatpak icon themes and GTK themes
 * Restyle the updates panel to have a separate sections
 * Show a notification in the updates page when the OS is end of life
 * Show recently updated applications on the overview page

The following bugs are also fixed:
 * Add snap self tests and provide more data to the details panel
 * Allow compiling with newer versions of meson
 * Do not crash when sending progress reports while refreshing
 * Don't trigger systemd for every single offline update
 * Ensure all related flatpak applications get installed
 * Ensure we use the gnome-desktop support if enabled
 * Fix searching for codecs on Ubuntu
 * Show a better status messages when downloading metadata
 * Show a pulsing progressbar if plugins do not report progress
 * Show the PackageKit interactive dialog when required
 * Support updating metadata from multiple fwupd remotes

This release also updates translations.

Version 3.25.2
~~~~~~~~~~~~~~
Released: 2017-05-08

This is an unstable release in the 3.25 development series, with the following improvements:
 * Allow AppStream to be downloaded out-of-band per-user

The following bugs are also fixed:
 * Do not initialize plugins in every instance
 * Fix the 'Show Details' context menu item in GNOME Shell
 * Use headerbar in toolbar-mode in Unity
 * Do not allow plugins to set the origin title in the UI

This release also updates translations.

Version 3.25.1
~~~~~~~~~~~~~~
Released: 2017-04-28

This is an unstable release in the 3.25 development series, with the following improvements:
 * Truncate the search results if there are a large number
 * Use the complete source as a search keyword

The following bugs are also fixed:
 * Fall back to a stock icon for hardware drivers
 * Fix a crash when removing an addon
 * Fix a critical warning in the shell search provider
 * Fix popular-overrides to show the correct applications
 * Fix various failures to read from snapd
 * Make offline updates work when online updates are available
 * Never include the size of the runtime in the installed size
 * Respect the install preference when for flatpakref files
 * Use the developer name in preference to the project group

This release also updates translations.

Version 3.23.92
~~~~~~~~~~~~~~~
Released: 2017-03-13

This is an unstable release in the 3.23 development series, with the following bug fixes:
 * Allow installing broken flatpakref files
 * Do not reload the updates list when updates are in progress
 * Reset the headerbar title when switching to the details page
 * Unconditionally show things that are in progress in the Installed page

This release also updates translations.

Version 3.23.91
~~~~~~~~~~~~~~~
Released: 2017-02-27

This is an unstable release in the 3.23 development series, with the following improvements:
 * Add support for RuntimeRepo in flatpakref files
 * Allow the user to restart the currently running gnome-software instance
 * Never show components without AppData files

The following bugs are also fixed:
 * Initialize progress to zero right before and after processing an action
 * Animate the removal of live updates
 * Add YaST as a default folder in gnome-shell overview

This release also updates translations.

Version 3.23.90
~~~~~~~~~~~~~~~
Released: 2017-02-13

This is an unstable release in the 3.23 development series, with the following improvements:
 * Handle apt and snap URLs
 * Show the updates panel with sections
 * Sort the apps in the installed panel by kind

The following bugs are also fixed:
 * Add a more detailed error message when AC power is required
 * Do not hardcode the gnome-software application name
 * Ensure firmware is downloaded when not cached
 * Fix a rather large memory leak when loading Steam data
 * Fix launching Flatpak apps after updating
 * Install needed Flatpak runtimes when updating an app
 * Only show the scary firmware warning for removable devices

This release also updates translations.

Version 3.23.3
~~~~~~~~~~~~~~
Released: 2016-12-15

This is an unstable release in the 3.23 development series, with the following improvements:
 * Add an --install and --interaction CLI options
 * Add the installed size of the apps in the installed view
 * Always set a description for each notification
 * Show an in-app notification when installed plugins are changed
 * Use a set of stars to show the different star ratings

The following bugs are also fixed:
 * Add a missing error check to fix a common crash on LiveDVD media
 * Add thread locking in GsApp to fix some common crashes
 * Allow upgrading to Fedora EOL releases
 * Don't allow review actions when offline
 * Ensure we actually schedule firmware updates for download
 * Fix the getting of PackageKit and flatpak update details
 * Hide some notifications when the new app is launched or the window is closed
 * Hide the screenshot placeholder for input methods and langpacks

This release also updates translations.

Version 3.23.2
~~~~~~~~~~~~~~
Released: 2016-11-21

This is an unstable release in the 3.23 development series, with the following improvements:
 * Add a setting for downloading updates on metered connections
 * Add content rating interface for games
 * Add support for pending updates that are applied on demand
 * Add support for the flatpak DefaultBranch feature
 * Allow showing an application review without a display name
 * Convert the modal failure dialogs to in-app notifications
 * Switch to using the ODRS server hosted by GNOME

The following bugs are also fixed:
 * Always get the newest screenshot for GNOME Shell extensions
 * Avoid redownloading the same screenshots for different images
 * Don't download updates when low on power
 * Fix the growth in memory usage for every search request
 * Never show a 'back' button when showing search results
 * Show the search bar when the user does ctrl+f

This release also updates translations.

Version 3.22.2
~~~~~~~~~~~~~~
Released: 2016-11-07

This stable release fixes the following bugs:
 * Large number of fixes and improvements for flatpak support
 * Improved handling for flatpak repos with multiple branches
 * Initial support for installing flatpakrepo files
 * Fix a crash when searching for codecs
 * Fix a crash when de-duplicating applications
 * Speed improvements for loading appstream data
 * Refactor snapd handling code using snapd-glib
 * Show the search bar when the user does Ctrl+f

This release also updates translations.

Version 3.22.1
~~~~~~~~~~~~~~
Released: 2016-10-12

This stable release fixes the following bugs:
 * Fix several issues with flatpak bundles
 * Fix installing local packages
 * Fix a crash when failing to get an installed flatpak ref
 * Speed up loading the details and overview pages
 * Switch to using the ODRS server hosted by GNOME

This release also updates translations.

Version 3.22.0
~~~~~~~~~~~~~~
Released: 2016-09-19

This is the first stable release for GNOME 3.22 and updates several translations.

Version 3.21.92
~~~~~~~~~~~~~~~
Released: 2016-09-13

This is an unstable release in the 3.21 development series, with the following improvements:
 * Add a new section name in the Addons category for drivers
 * Add a plugin to match a hardware modalias

The following bugs are also fixed:
 * Do not hide the origin when installing or removing an app
 * Do not show the screenshot fallback image for firmware or drivers
 * Fix launching app's details from the installed notification
 * Fix showing the source line in the installed panel
 * Unbreak the GNOME Shell search provider
 * Use the same padding as a GtkStackSwitcher

This release also updates translations for many languages.

Version 3.21.91
~~~~~~~~~~~~~~~
Released: 2016-08-31

This is an unstable release in the 3.21 development series, with the following improvements:
 * Add functionality to enable non-free sources
 * Show the device bootloader screenshot when required

The following bugs are also fixed:
 * Always return consistent results by allowing plugins to share a cache
 * Ensure the search text is showing when going back to search results
 * Only enable the firmware 'Install' button when the device is in the right mode
 * Remove an app from the installed view when it's uninstalled
 * Show percentage progress when installing firmware

This release also updates translations for many languages.

Version 3.21.90
~~~~~~~~~~~~~~~
Released: 2016-08-15

This is an unstable release in the 3.21 development series, with the following improvements:
 * Limit the ODRS moderation queue to a specific language

The following bugs are also fixed:
 * Correctly load .flatpakrepo files
 * Don't get the download size for installed flatpak packages
 * Fix showing the progress bar when installing apps
 * Never try to modify the application name
 * Only notify about upgrades once per month

This release also updates translations for many languages.

Version 3.21.4
~~~~~~~~~~~~~~
Released: 2016-07-18

This is an unstable release in the 3.21 development series, with the following improvements:
 * Add a cancel button and progress information to the details page
 * Add a dialog to confirm upgrade removals
 * Add support for authenticating in plugins
 * Add support for snaps
 * Enable gtk-doc generation for documentation
 * Show a new-style category list on the overview page
 * Show origin information when applications are available from multiple sources
 * Show sandboxing information for selected applications
 * Show the star ratings in more places
 * Support installing .flatpakrepo files
 * Support launching applicatins using a appstream:// URL

The following bugs are also fixed:
 * Allow plugins to be enabled and disabled at runtime
 * Always show the 'MyLanguage' kudo when in en_US locale
 * Correctly trigger systemd offline updates when only processing OS updates
 * Disable app folders feature when run outside GNOME
 * Do not show buttons on the search results
 * Do not use deprecated CSS properties
 * Do not use deprecated fwupd API
 * Ensure reviews are shown in the correct order
 * Fix a crash when double clicking files
 * Fix several UX issues when upgrading
 * Show the 'More Reviews' button in the details panel
 * Try really hard to have two rows of important categories

This release also updates translations for many languages.

Version 3.21.2
~~~~~~~~~~~~~~
Released: 2016-05-23

This is an unstable release in the 3.21 development series, with the following improvements:
 * Add a --details-pkg option to the gnome-software binary
 * Add support for flatpak packages
 * Add a plugin to auto-add some license information
 * Add depends, requires and conflicts at initialize time
 * Add support for application key colors
 * Export a set of headers to allow external plugins to be built

The following bugs are also fixed:
 * Do not crash if plugins are badly behaved
 * Do not directly load pixbufs in the AppStream plugin
 * Do not unconditionally invalidate the updates list on hardware hotplug
 * Find the best AppSteam component when matching any prefixes
 * Fix crash due to network change before app activation
 * Fix launching various KDE4 applications
 * Support getting cached content from /var/cache and /usr/share

This release also updates translations for many languages.

Version 3.21.1
~~~~~~~~~~~~~~
Released: 2016-04-25

This is an unstable release in the 3.21 development series, with the following improvements:
 * Add an initial loading panel when there is no metadata
 * Add an outline ostree plugin that just adds remotes as sources
 * Add an unreviewable application quirk
 * Add initial Steam support
 * Add support for app shortcut addition/removal
 * Add support for GNOME Shell extensions
 * Allow free-but-unspecified SPDX tokens
 * Allow widgets to use custom CSS in a generic way
 * Do the PackageKit refresh as a background transaction
 * Hide "Software Sources" menu when its action is disabled
 * Make the distro upgrades dialog match the new mockup
 * Split the 'size' property into size-installed and size-download
 * Use a link instead of a button for history
 * Use AppStream files for the popular, featured and extra category data
 * Use dpkg-deb info to create a GsApp when double clicking on a .deb file
 * Use FwupdClient from fwupd 0.7.0
 * Use GdkPixbuf to parse icns files
 * Use gsettings to enable/disable the 'sources' action
 * Use the Fedora themed image for the upgrade banner
 * When there are no trusted sources mark everything as non-3rd-party

The following bugs are also fixed:
 * Actually show the error dialog for an invalid file
 * Allow all functions called by g_module_symbol() to fail
 * Allow popular and featured apps to match any prefix
 * Do not maintain a cache of applications in the plugin loader
 * Do not make the ODRS plugin depend on xdg-app
 * Do not re-request the distro-upgrade when switching pages
 * Do not show ratings and reviews for some component kinds
 * Do not show the distro-upgrade notification if the window is open
 * Do not use the header bar on Unity
 * Fix a crash when double clicking package files
 * Fix live installing firmware
 * Get the correct icon size when installing xdg-app bundles on HiDPI
 * Hide the kudo details panel for non desktop components
 * Load screenshots directly if their URLs point to local files
 * Lower the limits for review text
 * Make all the plugins more threadsafe
 * Make the provenance plugin non-specific to Fedora
 * Move header bar button creation into individual pages
 * Move the Install & Restart button below the upgrade banner
 * Never show star ratings on the category app tiles
 * Only show one modal dialog at a time
 * Only show the session manager restart if there were any non-live updates
 * Properly support multi-line .deb descriptions
 * Show a 'Install All' button when all the updates can be installed live
 * Show a modal dialog when downloading the distro-upgrade failed
 * Show the upgrades banner even if there are no updates to show
 * Use a cache file to respect the fedora-distro-upgrades cache-age
 * Use GFile instead of a filename when converting apps

This release also updates translations for many languages.

Version 3.19.91
~~~~~~~~~~~~~~~
Released: 2016-02-29

This is an unstable release in the 3.19 development series, with the following improvements:
 * Add an 'All' subcategory in the category shell
 * Add ratings and review functionality for Ubuntu
 * Install the xdg-app runtime as required automatically
 * Show a confirmation dialog before reporting a review
 * Show a guide label for the different star values
 * Support installing local xdg-app bundles

The following bugs are also fixed:
 * Correctly identify local packages with sources
 * Do not add multiple search results for the same app
 * Do not show xdg-app runtimes in the installed panel
 * Escape markup before showing modal dialogs

This release also updates translations for many languages.

Version 3.19.90
~~~~~~~~~~~~~~~
Released: 2016-02-15

This is an unstable release in the 3.19 development series, with the following improvements:
 * Add end-user application review functionality
 * Add support for upgrading the OS from one release to another
 * Add support for xdg-app and Limba bundles
 * Add tags to applications, and explain them in the details page
 * Update the list of featured applications on the front page

The following bugs are also fixed:
 * Add a missing tag to the software center metadata file
 * PackageKit support is now optional
 * Temporarily remove the remove button in the sources dialog
 * Use versioned user cache directories to pick up new screenshots

This release also updates translations for many languages.

Version 3.19.4
~~~~~~~~~~~~~~
Released: 2016-01-15

This is an unstable release in the 3.19 development series, with the following improvements:
 * Add a link to Wikipedia to explain proprietary and public domain software
 * Allow administrators to override the default popular applications
 * Improve the interface for device firmware updates and some can be done live
 * Make sure Characters and Disks show up in Utilities
 * Show 3rd party applications in the search results
 * Show a nicer installation dialog when installing local files
 * Speed up the application first-start and also speed up switching pages
 * Try to show if an application is free software

The following bugs are also fixed:
 * Do not crash on refresh if the fwupd daemon is not available
 * Fix installing web applications
 * Rework several windows to fit better on small screens
 * Use the correct user agent string when downloading firmware

This release also updates translations for many languages.

Version 3.18.3
~~~~~~~~~~~~~~
Released: 2015-11-05

This stable release fixes the following bugs:
 * Use the correct user agent string when downloading firmware
 * Fix a crash in the limba plugin
 * Fix installing web applications

This release also updates translations for many languages.

Version 3.18.2
~~~~~~~~~~~~~~
Released: 2015-10-15

This stable release fixes the following bugs:
 * Fix a regression that could lead to never finding any updates
 * Fix an issue with getting package details for apps without AppData

This release also updates translations for many languages.

Version 3.18.1
~~~~~~~~~~~~~~
Released: 2015-10-13

This stable release fixes the following bugs:
 * Do not force the cache refresh and delete otherwise valid packages
 * Fix several potential crashes when navigating and when installing
 * Get the new application icon for local packages after installation
 * Improve cold start time by only parsing AppStream data once
 * Make sure Characters and Disks show up in Utilities
 * Only download the fwupd metadata signature once per day
 * Show an empty space for no category results
 * Show applications without AppData in the installed panel

This release also updates translations for many languages.

Version 3.18.0
~~~~~~~~~~~~~~
Released: 2015-09-21

This is the first stable release for the GNOME 3.18 desktop!

Version 3.17.92
~~~~~~~~~~~~~~~
Released: 2015-09-15

This is an unstable release in the 3.17 development series, with the following improvements:
 * Fix getting firmware updates by parsing the metadata correctly
 * Make the application menu path correct in RTL locales
 * Don't keep the application running forever when run as a search provider

This release also updates translations for many languages.

Version 3.17.91
~~~~~~~~~~~~~~~
Released: 2015-09-03

This is an unstable release in the 3.17 development series, with the following improvements:
 * Better theming for the category sidebar
 * Use standard size icon in the about dialog
 * Support mouse back button for going back in dialogs
 * Fix incorrect alignment on the front page in RTL languages
 * Misc other minor bugs fixed

This release also updates translations for many languages.

Version 3.17.90
~~~~~~~~~~~~~~~
Released: 2015-08-19

This is an unstable release with the following bugs fixed:
 * Use CSS to style the error message details
 * Correctly align labels in the Add to Folder dialog

This release also updates translations for many languages.

Version 3.17.3
~~~~~~~~~~~~~~
Released: 2015-08-12

This is an unstable release in the 3.17 development series, with the following improvements:
 * Add basic support for Limba bundles
 * Automatically download new firmware metadata from LVFS
 * Hide updates UI on managed systems
 * Show a new notification when security updates remain unapplied
 * Show installation progress when installing applications
 * Use some new applications to the picked category

Bugs fixed in this release:
 * Do not show applications that are not available when searching by category
 * Don't crash when launching an app that has no desktop ID
 * Don't show applications without AppData in the category view
 * Fix a possible race and crash when loading icons
 * Fix locking in the AppStream code to fix several crashes
 * Use better error messages on offline update failure
 * Withdraw the notification when prepared update gets invalidated

This release also updates translations for many languages.

Version 3.17.2
~~~~~~~~~~~~~~
Released: 2015-06-05

This is an unstable release in the 3.17 development series, with the following improvements:
 * Make fwupd dependency automagic

Bugs fixed in this release:
 * Fix a regression from the previous unstable release that made it impossible to install updates
 * Fix a crash in the screenshot loader
 * Fix a crash in the sources dialog
 * Fix a crash when installing rpms that lack description
 * Wrap long descriptions in the update dialog

This release also updates translations for many languages.

Version 3.17.1
~~~~~~~~~~~~~~
Released: 2015-05-25

This is the first unstable release in the 3.17 development series, with a number of new features:
 * Support getting firmware updates through the fwupd daemon
 * Use a smaller number of tiles on the front page on small monitors
 * Rework internal modulesets, making it easier to edit the list of featured apps
 * Revert back to using a hand-picked list of featured apps
 * Several improvements to the sources dialog
 * Show better human readable names when searching for font scripts
 * Show a spinner while loading the data for the update history dialog

This release also updates translations for many languages.

Version 3.16.2
~~~~~~~~~~~~~~
Released: 2015-05-11

This release fixes the following bugs:
 * Remove redundant OK button from the updates installed notification
 * Display a better human readable title for printer drivers
 * Show a better UI for offline update failure dialog
 * Set default actions for the update done notifications
 * Allow searching for packages via the API without appdata
 * Fix showing webapps with non-local icons

This release also updates translations for many languages.

Version 3.16.1
~~~~~~~~~~~~~~
Released: 2015-04-14

This release fixes the following bugs:
 * Correctly save HiDPI images to HiDPI directories
 * Scroll the contents of the error message dialog

This release also updates translations for many languages.

Version 3.16.0
~~~~~~~~~~~~~~
Released: 2015-03-23

This stable release marks the release of GNOME 3.16!

Version 3.15.92
~~~~~~~~~~~~~~~
Released: 2015-03-16

This unstable release adds the following features:
 * React to theme changes
 * Rebase the HighContrast theme

This release fixes the following bug:
 * Fix HiDPI scale factor calculation
 * Align section headings in all views
 * Fix 'installed' overlays when using the HighContrast theme
 * Fall back to showing the top level category when no sub category exists
 * Fix a crash when using the pending applications feature

This release also updates translations for many languages.

Version 3.15.91
~~~~~~~~~~~~~~~
Released: 2015-03-02

This unstable release adds the following features:
 * Enable kinetic scrolling in updates dialog

This release fixes the following bug:
 * Always ensure that the back entry focus widget is valid
 * Don't show small screenshots on HiDPI hardware
 * Fix a crash when starting GNOME Software for the first time
 * Only show compatible projects when getting the featured list

Version 3.15.90
~~~~~~~~~~~~~~~
Released: 2015-02-16

This unstable release adds the following features:
 * Add a new panel for displaying session service results
 * Add a new version of the Modify interface
 * Require AppData for all available packages

This release fixes the following bug:
 * Use the new mockups for the 3rd party source install dialogs

Version 3.15.4
~~~~~~~~~~~~~~
Released: 2015-01-19

This unstable release adds the following features:
 * Fix searching with very small search terms

This release fixes the following bugs:
 * Do case-insensitive searching of suitable keywords
 * Fix a crash in the screenshot loader
 * Fix a crash when clicking the back button
 * Fix searching for keyworks with special chars
 * Show an error message when we fail to load details about a local file

Version 3.15.2
~~~~~~~~~~~~~~
Released: 2014-11-24

This unstable release adds the following features:
 * Show a blurred low-resolution screenshot while loading the HiDPI one

This release fixes the following bugs:
 * Do not show a random white line above the star rating widget
 * Do not show empty app boxes if no popular results are available
 * Do not try to download local web-app icons
 * Use blue stars for the user-ratings rather than gold