~ubuntu-branches/debian/sid/gnome-shell/sid

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
3.8.4
=====
* Fix initial text in logout dialog [Matthias; #702056]
* Clear login messages when the user answers [John; #702458]
* Align the "Not Listed?" label properly in the login screen [Mathieu; #702307]
* Workaround crash causing bugs in code [Florian; #610279]
* Improve time stamp in chat messages (frequency and formatting)
  [Carlos; #687809, #687809]
* Fix unlock screen after prematurely stopping curtain drag [Lionel; #703126]
* Fix autorun notification [Matthis; 703418
* Fix background occasionally turning solid blue on monitor changes [Lionel: #703001]
* Increase message tray performance [Giovanni; #700194]
* Fix focus of notifications after they're expanded [Jasper; #698778]
* Fix orientation of gradient on app menu in RTL locales [Jasper; #704583]
* Support filenames in addition to file uris for background
  [Giovanni, Ray; #702121]
* misc bug fixes [Adel, Florian, Emilio, Alban, Jasper; #702338, #704265,
  #698863, #698484]

Contributors:
  Mathieu Bridon, Alban Browaeys, Giovanni Campagna, Matthias Clasen, Adel Gadllah,
  Emilio Pozuelo Monfort, Linonel Landwerlin, Carlos Soriano, Ray Strode,
  John Wendell

3.8.3
=====
* Fix child menu regression introduced in 3.8.2 [Florian; #699678]
* Fix alt-tab not always switching back to the previous window [Florian; #700356]
* Fix VPN network icon regression introduced in 3.8.2 [Florian; #700394]
* Allow switch-to-workspace-n keybindings in overview [Florian; #649977]
* Update man page [Matthias; #700339]
* Add FocusSearch DBus method [Florian; #700536]
* gdm: Update the session chooser style [Allan; #695742]
* Fix some app folders getting truncated at the top [Florian; #694371]
* Fix duplicate cursors in screenshots with magnification [Florian; #700488]
* popupMenu: Allow for an optional border for slider handle [Florian; #697917]
* Synchronize input source switching with key events [Rui; #697007]
* Switch input source on modifiers-only accelerator [Rui; #697008]
* Allow input source switching in message tray [Rui; #697009]
* Tweak timeout for activating windows during XDND [Adel; #700150]
* Fix fullscreen windows not being unredirected when legacy tray icons
  are around [Adel; #701224]
* Fix ellipsization in control buttons in app picker [Carlos; #696307]
* Fix DND to empty dash [Florian; #684618]
* Fix OSD window appearing below system modal dialogs [Rui; #701269]
* Clear clipboard on screen lock to prevent information leak [Florian; #698922]
* Allow session mode specific overrides schema [Florian; #701717]
* Fix incomplete app menu if multiple actions only become available later
  [Xavier; #694612]
* Fix showing the OSD when a fullscreen app is unredirected [Adel, #701224]
* window-switcher: Only show windows from current workspace by default
  [Florian; #701214
* Misc bug fixes [Florian, Rui, Giovanni, Stef; #700409, #700625, #700807,
  #700842, #700900, #700944, #700190, #700972, #700877]

Contributors:
  Giovanni Campagna, Xavier Claessens, Matthias Clasen, Allan Day,
  Adel Gadllah, Rui Matos, Florian Müllner, Carlos Soriano, Stef Walter

Translations:
  Cheng-Chia Tseng [zh_HK, zh_TW], eternalhui [zh_CN]

3.8.2
=====
* Fix hotcorner regression in RTL locales [Jasper; #698884]
* Allow some keybindings to work while a top bar menu is open [Florian; #698938]
* Make open-app-menu keybinding a toggle action [Florian; #686756]
* ctrlAltTab: Use symbolic icons for desktop windows [Matthias; #697914]
* gdm: Fix regression where domain login hint not shown [Stef; #698200]
* Hide "Open Calendar" item when no calendar app is installed [Lionel; #697725]
* Update how branding appears on login screen [Florian; #694912, #699877]
* Allow OSD popups to grow if necessary [Marta; #696523]
* Fix offset of shadow offscreen rendering [Lionel; #698301]
* Fix insensitive button preventing empty keyring password [Stef; #696304]
* Allow cancelling keyring dialog between prompts [Stef; #682830]
* modalDialog: Show spinner while working [Stef; #684438]
* Provide a DBus API for screencasting [Florian; #696247]
* Implement app folder keynav and shortcuts [Florian; #695314]
* polkitAgent: Allow retrying after mistyped passwords [Stef; #684431]
* Add input purpose and hints to StEntry and StIMText [Daiki; #691392]
* Set input-purpose property for password entries [Rui; #700043]
* Misc fixes and cleanups [Jasper, Florian, Giovanni, Tim, Rui; #697203,
  #698959, #696720, #698531, #676285, #698812, #699189]

Contributors:
  Giovanni Campagna, Matthias Clasen, Lionel Landwerlin, Tim Lunn, Rui Matos,
  Simon McVittie, Marta Milakovic, Florian Müllner, Jasper St. Pierre,
  Daiki Ueno, Stef Walter

Translations:
  Muhammet Kara [tr], Nik Kalach [ia], Žygimantas Beručka [lt],
  Kjartan Maraas [nb]

3.8.1
=====
* Clip window group during startup animation [Jasper; #696323]
* Check for logind rather than systemd [Martin; #696252]
* Don't special-case last remote search provider position [Giovanni; #694974]
* Fix memory leaks [Ray, Jasper; ##697119, #697295, #697300, #697395]
* AppSwitcherPopup: Activate only the selected window if any [Rui; #697480]
* Enable screen recorder keybinding in all modes [Florian; #696200]
* Remove box-shadow from screen shield for performance reasons [Adel; #697274]
* Add support for -st-natural-width/height CSS properties [Giovanni; #664411]
* Remove excessive padding from notification buttons [Allan; #664411]
* Fix thumbnail dragging in overview [Jasper; #697504]
* theme-node: Add get_url()/lookup_url() methods [Florian; #693688]
* Misc bug fixes and cleanups [Jasper, Rui, Colin, David, Ray, Matthias:
  #695859, #696259, #696585, #696436, #697432, #697435, #697560, #697722,
  #697709]

Contributors:
  Giovanni Campagna, Matthias Clasen, Allan Day, Adel Gadllah, David Gumberg,
  Rui Matos, Florian Müllner, Martin Pitt, Jasper St. Pierre, Ray Strode,
  Colin Walters

Translations:
  Daniel Martinez [an], Bruce Cowan [en_GB], Khaled Hosny [ar],
  Ihar Hrachyshka [be], Aron Xu [zh_CN], Wojciech Szczęsny [pl],
  Inaki Larranaga Murgoitio [eu], Kjartan Maraas [nb],
  Милош Поповић [sr, sr@latin], Trần Ngọc Quân [vi]

3.8.0.1
=======
* Background bug fixes [Ray; #696712]

3.8.0
=====
* Remove blur and desaturation from lock screen [Jasper; #696322]
* Remove scroll view fade near edges [Adel; #696404]
* dateMenu: Open calendar component when using Evolution [Florian; #696432]
* Fix unlocking on fast user switch [Cosimo; #696287]
* Tweak screen shield animation [Rui; #696380]
* Fix major memory leak when changing backgrounds [Ray; #696157]
* Miscellaneous bug fixes [Jasper, Adel, Florian; #696199, #696212, #696422,
  #696447, #696235]

Contributors:
  Giovanni Campagna, Cosimo Cecchi, Adel Gadllah, Rui Matos, Florian Müllner,
  Jasper St. Pierre, Ray Strode

Translations:
  Alexandre Franke [fr], Victor Ibragimov [tg], Arash Mousavi [fa],
  Gabor Kelemen [hu], Sandeep Sheshrao Shedmake [mr], ManojKumar Giri [or],
  Shantha kumar [ta], Rajesh Ranjan [hi], Stas Solovey [ru],
  Shankar Prasad [kn], Dušan Kazik [sk], Ihar Hrachyshka [be],
  Wouter Bolsterlee [nl], Kris Thomsen [da], Jiro Matsuzawa [ja],
  Daniel Korostil [uk], Ani Peter [ml], Krishnababu Krothapalli [te],
  Mantas Kriaučiūnas [lt], Praveen Illa [te]

3.7.92
======
* Drop fallback lock implementation [Florian; #693403]
* Don't let the user trigger message-tray when in fullscreen [Jasper; #694997]
* Scroll search results when using keynav [Jasper; #689681]
* Allow raising the shield by starting to type the password [Jasper; #686740]
* Improve tracking of fullscreen windows [Owen; #649748]
* Improve animation of new windows in overview [Giovanni; #695582]
* workspace switcher: Animate new workspaces created by DND [Giovanni; #685285]
* Give user time to read messages on login screen [Ray; #694688]
* Misc bug fixes and cleanups [Jasper, Ray, Florian, Cosimo, Giovanni, Adel,
  Stef, Takao, Rui, Neil; #695154, #694993, #695272, #691578, #694321, #695338,
  #695409, #695458, #695526, #695601, #695471, #695324, #695650, #695656,
  #695659, #695485, #695395, #694951, #695824, #695841, #695801, #694321,
  #693708, #695800, #695607, #695882, #691578, #685851, #694371, #690857,
  #694092, #695747, #696007, #693438, #696064, #696102

Contributors:
  Giovanni Campagna, Cosimo Cecchi, Allan Day, Takao Fujiwara, Adel Gadllah,
  Tim Lunn, Rui Matos, Florian Müllner, Neil Roberts, Jasper St. Pierre,
  Ray Strode, Stef Walter, Colin Walters, Owen W. Taylor

Translations:
  Nilamdyuti Goswami [as], Chao-Hsiung Liao [zh_HK, zh_TW],
  Yuri Myasoedov [ru], Gheyret Kenji [ug], Baurzhan Muftakhidinov [kk],
  Ville-Pekka Vainio [fi], Matej Urbančič [sl],
  Мирослав Николић [sr, sr@latin], Rūdolfs Mazurs [lv], Christian Kirbach [de],
  Andika Triwidada [id], Gil Forcada [ca], Mattias Põldaru [et],
  Duarte Loreto [pt], Adam Matoušek [cs], Changwoo Ryu [ko],
  Ihar Hrachyshka [be], Carles Ferrando [ca@valencia], Sweta Kothari [gu]

3.7.91
======
* overview: Fade out controls during DND that are not targets [Cosimo; #686984]
* overview: Keep open when a Control key is held [Florian; #686984]
* Improve login screen => session transition [Ray; #694321]
* Center application grid horizontally [Florian; #694261]
* Fix hiding panel when fullscreen windows span multiple monitors [Adel; 646861]
* Tweak thresholds of pressure barrier [Jasper; #694467]
* Tweak window picker layout [Jasper; #694902]
* Expose key grab DBus API to gnome-settings-daemon [Florian; #643111]
* Don't always show message tray in overview, add message indicator
  [Cosimo; #687787]
* Tweak startup animation [Ray; #694326]
* Add OSD popups and expose them to gnome-settings-daemon [Florian; #613543]
* Move loupe icon to the start of the search entry [Jasper; #695069]
* Don't show the input switcher with less than 2 items [Rui; 695000]
* Fix auto-completion of system modals immediately upon display [Stef; #692937]
* Ignore workspaces in alt-tab [Florian; #661156]
* Disable copying text from password entries [Florian; #695104]
* Use standard styling for ibus candidate popups [Allan; #694796]
* Fix calendar changing height on month changes [Giovanni; #641383]
* Port the hot corner to use pressure barriers [Jasper; #663661]
* Misc bug fixes and cleanups: [Hashem, Giovanni, Alban, Jasper, Cosimo,
  Florian, Adel, Daniel, Matthias, Ray, Rui, Guillaume, Stef; #685849, #690643,
  #694292, #693814, #694234, #694365, #694287, #694336, #694256, #694261,
  #663601, #694441, #694284, #694463, #694475, #687248, #694394, #694320,
  #694701, #694784, #694858, #694906, #694327, #694876, #694905, #694969,
  #694970, #694988, #695006, #695001, #694998, #695023, #695002, #695073,
  #695126, #687748, #694837, #693907, #679851, #694988]

Contributors:
  Giovanni Campagna, Cosimo Cecchi, Matthias Clasen, Alban Crequy, Allan Day,
  Guillaume Desmottes, Adel Gadllah, Rui Matos, Daniel Mustieles,
  Hashem Nasarat, Jasper St. Pierre, Ray Strode, Stef Walter

Translations:
  Yuri Myasoedov [ru], Adam Matoušek [cs], Piotr Drąg [pl], Matej Urbančič [sl],
  Sweta Kothari [gu], Kjartan Maraas [nb], Nguyễn Thái Ngọc Duy [vi],
  Chao-Hsiung Liao [zh_HK, zh_TW], Dimitris Spingos [el],
  Inaki Larranaga Murgoitio [eu], Luca Ferretti [it], A S Alam [pa],
  Gheyret Kenji [ug], Stas Solovey [ru], Enrico Nicoletto [pt_BR],
  Fran Diéguez [gl], Daniel Mustieles [es], Aurimas Černius [lt]

3.7.90
======
* Let GNOME Shell work on EGL and GLES2 [Neil; #693225, #693438, #693339]
* Implement middle-click paste [Jasper; #645019]
* Fix top bar transition between session modes [Rui; #692966]
* Trigger the message tray with downward pressure [Jasper; #677215]
* Don't ask for a password on shutdown [Adel; #693385]
* Add a context menu to the message tray [Adel; #691035, #693887]
* Use unicode formatting in the date menu [Matthias; #689251]
* Use proper ellipsis instead of three dots [Jeremy; #689542]
* Tweak screen shield animation [Giovanni; #691964]
* Always hide the OSK when showing the message tray [Florian; #662687]
* Support sound in notifications [Giovanni; #642831]
* Place application popup menus above chrome [Jasper; #633620]
* Hide overview elements while searching [Cosimo; #682050]
* Implement updated IBus candidate popup designs [Rui; #691902]
* Add support for enable-animations preference [Cosimo; #655746]
* Don't always show the message tray in the overview [Cosimo; #693987]
* Improve arrangement of window previews [Adel; #690313]
* Remove builtin settings provider [Giovanni; #690824]
* Minimize fullscreen windows when they end up in the background [Adel; #693991]
* Add context menu to the background actor [Jasper; #681540]
* Handle backgrounds in the shell, improve startup animation [Ray; #682429]
* Hide universal access menu when not needed [Giovanni; #681528]
* Implement updated app picker designs [Florian; #694192]
* Improve login manager -> session transition [Ray; #694062]
* Don't use a grid layout in window picker [Adel; #694210]
* Use scroll wheel for workspace switching rather than zoom [Florian; #686639]
* Misc bug fixes and cleanups: [Jasper, Florian, Debarshi, Adel, Matthias,
  Giovanni, Daiki, Rico, Bastien, Cosimo, Ray, Allan, Antonio; #693284,
  #692680, #691746, #693303, #693162, #693161, #693522, #693385, #691715,
  #688915, #689106, #682429, #693570, #693737, #693458, #692845, 693836,
  #681540, #679925, #688227, #692773, #693909, #683288, #693854, #693746,
  #693931, #693924, #693940, #693970, #693935, #693937, #693974, #693936,
  #693975, #693822, #694030, #685849, #694052, #694035, #694038, #694079,
  #694064, #681735, #694100, #694057, #694070, #693572, #693896, #686984,
  #694123, #694125, #693756, #693757, #687556, #694215, 694062, #694227,
  #694240, #694234, #694264, 694276, 694282, #694241, #689394, #694202,
  #694265, #694289, #691806, #694290, #694296]

Contributors:
  Jeremy Bicha, Giovanni Campagna, Cosimo Cecchi, Matthias Clasen, Allan Day,
  António Fernandes, Adel Gadllah, Rui Matos, Florian Müllner, Bastien Nocera,
  Debarshi Ray, Neil Roberts, Jasper St. Pierre, Ray Strode, Rico Tzschichholz,
  Daiki Ueno

Translations:
  Yasumichi Akahoshi [ja], Yoji TOYODA [ja], Dušan Kazik [sk],
  Wouter Bolsterlee [nl], Matej Urbančič [sl], Gheyret Kenji [ug],
  Ivaylo Valkov [bg], Daniel Korostil [uk], Gheyret Kenji [ug],
  Daniel Mustieles [es], Anish A [ml], Gil Forcada [ca],
  Carles Ferrando [ca@valencia], Мирослав Николић [sr, sr@latin],
  Aurimas Černius [lt], Rafael Ferreira [pt_BR], Fran Diéguez [gl],
  Piotr Drąg [pl], Luca Ferretti [it], A S Alam [pa]

3.7.5
=====
* MessageTray: pass keyboard events to tray icons [Giovanni; #687425]
* network: add support for virtual devices (vlan, bond, bridge) [Dan; #677144]
* gdm: Allow right-clicking buttons for left-handed users [Jasper; #688748]
* Make list search results span all available horizontal space [Tanner; #691967]
* Make Show-Applications button depress when held down [Hashem; #692319]
* Set a max width on search results [Cosimo; #692453]
* Reserve scrollbar allocation for automatic policy [Cosimo; #686881]
* Improve scaling algorithm for window thumbnails [Jasper; #686944]
* Fix launching settings panels after g-c-c changes [Jasper; #692483]
* Stop launching applications from empty searches [Hashem; #692391]
* Implement per-source notification filtering [Giovanni; #685926]
* ScreenShield: Omit ActiveChanged() signal at end of fade [Giovanni; #691964]
* ScreenShield: Lower the shield on idle before locking [Giovanni; #692560]
* Make previews of minimized windows translucent in overview [Florian; #692999]
* windowManager: Respect icon geometry when minimizing [Florian; #692997]
* ScreenShield: Only show lock icon when actually locked [Giovanni; #693007]
* general: Use & instead of 'and' for Settings panels [Jeremy; #689590]
* network: Add support for new ModemManager1 interface [Aleksander; #687359]
* network: Handle LTE-only modems as GSM ones [Aleksander; #688144]
* mobile-providers: Port to libnm-gtk [Aleksander; #688943]
* general: Consistently use Title Case in top bar [Jeremy; #689589]
* panel: Add :overview pseudo class while in overview [Florian; #693218]
* sessionMode: Add support for mode-specific styling [Florian; #693219]
* loginManager: Make suspend a NOP in the ConsoleKit patch [Florian; #693162]
* screenShield: Inhibit suspend until the screen is locked [Florian; #686482]
* Misc bug fixes and cleanups [Jasper, Giovanni, Rui, Cosimo, Florian, Stefano,
  Adel, Yanko; #691745, #691731, #690171, #689091, #691976, #691963, #684279,
  #692052, #692091, #642831, #692454, #692715, #692678, #692723, #692677,
  #683986, #692693, #692749, #692948, #692995, #692996, #692994, #677215,
  #692586, #693067, #693031, #693049, #643111, #693161, #693220]

Contributors:
  Jeremy Bicha, Giovanni Campagna, Cosimo Cecchi, Tanner Doshier,
  Stefano Facchini, Adel Gadllah, Yanko Kaneti, Rui Matos, Aleksander Morgado,
  Florian Müllner, Hashem Nasarat, Jasper St. Pierre, Dan Winship

Translations:
  Duarte Loreto [pt], Daniel Mustieles [es], Kjartan Maraas [nb],
  Nilamdyuti Goswami [as], Мирослав Николић [sr,sr@latin],
  Tobias Endrigkeit [de], Fabio Tomat [fur], Matej Urbančič [sl], A S Alam [pa],
  Inaki Larranaga Murgoitio [eu], Piotr Drąg [pl], Wouter Bolsterlee [nl],
  Gheyret Kenji [ug], Yaron Shahrabani [he], Chao-Hsiung Liao [zh_HK,zh_TW],
  Milo Casagrande [it], Benjamin Steinwender [de]

3.7.4.1
=======
* userMenu: Use show-full-name-in-top-bar setting [Bastien; #689561]
* dateMenu: Add "Open Clocks" entry [Mathieu; #644390]
* screenshot: Immediately show the flash spot [Jasper; #691875]
* Misc. bug fixes [Rico, Jeremy]

Contributors:
  Jeremy Bicha, Mathieu Bridon, Bastien Nocera, Jasper St. Pierre,
  Rico Tzschichholz

Translations:
  Ihar Hrachyshka [be]

3.7.4
=====
* Make menu separators crisp [Giovanni, Allan; #641745]
* power: Update for new D-Bus name [Bastien; #690506]
* Add smooth scrolling support [Jasper; #687573]
* Tweak notification layout [Allan; #688506]
* Ping the active window when using the app menu [Giovanni; #684340]
* Make password entries insensitive after submission [Jasper; #690594, #690895]
* Honor lock-delay GSettings key [Giovanni, Matthias; #690766, #691170]
* Use text/calendar preferred app as the calendar app [Giovanni; #690767]
* lookingGlass: Move to an inspect() function [Jasper; #690726]
* Make OSK animation quicker, snappier [Rui; #688642]
* Allow to close chat notifications with Escape [Jasper; #690897]
* Honor org.gnome.desktop.screensaver.user-switch-enabled [Giovanni; #691042]
* Add a SelectArea() DBus method [Cosimo; #687954]
* Support non-absolute paths when saving screenshots [Cosimo; #688004]
* OSK: Fix extended keys popups [Rui; #674955]
* Don't hide or show the keyboard immediately [Rui; #688646]
* Improve padding in power menu [Giovanni; #689297]
* Add per-window input source switching [Rui; #691414]
* Misc bug fixes and cleanups [Rico, Jasper, Giovanni, Rui, Florian, Dan;
  #690608, #690589, #690539, #687081, #690667, #690665, #690666, #685856,
  #690858, #690895, #680414, #690965, #691019, #690590, #681376, #690180,
  #685513, #689263, #691553, #691720, #691743, #691750]

Contributors:
  Giovanni Campagna, Cosimo Cecchi, Matthias Clasen, Allan Day, Rui Matos,
  Florian Müllner, Bastien Nocera, Jasper St. Pierre, Rico Tzschichholz,
  Dan Winship

Translations:
  Matej Urbančič [sl], Kjartan Maraas [nb], Mattias Põldaru [et],
  Yaron Shahrabani [he], Aurimas Černius [lt], Khaled Hosny [ar],
  Fran Diéguez [gl], Daniel Mustieles [es], Piotr Drąg [pl], Balázs Úr [hu],
  Baurzhan Muftakhidinov [kk], Tobias Endrigkeit [de], Dušan Kazik [sk],
  Aron Xu [zh_CN], Gheyret Kenji [ug]

3.7.3
=====
* Add 'No Messages' label when message tray is empty [Victoria; #686738]
* Use better icons in Ctrl-Alt-Tab popup [Stéphane; #641303]
* Show the OSK on the monitor where the focused window lives [Giovanni; #685856]
* Highlight window clone and caption when hovered [Giovanni, Marc; #665310]
* Improve login process indication [Stéphane; #687113]
* Omit empty categories in apps view [Stéphane; #687970]
* Style panel differently according to mode [Florian; #684573]
* Make it possible to hide the user name [Matthias; #688577]
* Consolidate and improve chat connection notifications [Giovanni; #687213]
* Improve notification scrollbar appearance [Carlos; #688393]
* Fade scroll view fade near scrolling edges [Jasper; #689249]
* Add a read-only org.gnome.Shell.Mode property [Debarshi; #689300]
* Don't close message tray after using context menus [Giovanni; #689296]
* Port swipe-scrolling to ClutterPanAction [Jasper, Florian; #689062, #689552]
* Remember state of 'Remember Password' checkbox [Ron; #688039]
* Improve timestamp format in chat notifications [Carlos; #680989]
* Improve style of missed-messages counter [Carlos; #686472]
* Omit connection failure notifications if cancelled by user [Giovanni; #684823]
* Add window-based Alt-Tab popup [Florian; #688913]
* Support external session mode definitions [Florian; #689304]
* Support session-mode-specific extensions [Florian; #689305]
* Support 'parentMode' property in session modes [Florian; #689308]
* Support a new org.gnome.ShellSearchProvider2 DBus interface
  [Cosimo; #689735, #690009]
* Add "windows" to Ctrl-Alt-Tab popup [Jasper; #689653]
* Port PopupMenu to GrabHelper [Jasper; #689109, #689954]
* Show headphone icon when headphones are plugged in [Giovanni; #675902]
* Display (non-app) search results as list [Tanner, Cosimo; #681797]
* Skip diacritical marks in search terms [Aleksander; #648587]
* Expose all engine options in input sources [Giovanni, Rui; #682318]
* Add input source switcher popup [Rui; #682315]
* Add minimal support for InfiniBand in network menu [Dan; #677150]
* Misc bug fixes and cleanups [Sebastian, Aleksander, Giovanni, Tim, Cosimo,
  Florian, Matthias, Rui, Lionel, Colin, Piotr, Guillaume, Bastien, Tanner,
  Carlos, Stéphane, Jakub; #688422, #688379, #688750, #688771, #686800,
  #688133, #688895, #688966, #683986, #688004, #689108, #689029, #683449,
  #688196, #689304, #689243, #689295, #689325, #689400, #679168, #689568,
  #689537, #689528, #689749, #689789, #689353, #689820, #689868, #689778,
  #689959, #688589, #688589, #689955, #687250, #689965, #690046, #690049,
  #689884, #682286, #690173, #690174, #672941, #689876, #687881, #690171,
  #690241, #690312, #690175, #687955, #650843, #688234, #690427

Contributors:
  Giovanni Campagna, Cosimo Cecchi, Matthias Clasen, Stéphane Démurget,
  Guillaume Desmottes, Tanner Doshier, Piotr Drąg, Sebastian Keller,
  Lionel Landwerlin, Tim Lunn, Victoria Martínez de la Cruz, Aleksander Morgado,
  Florian Müllner, Bastien Nocera, Marc Plano-Lesay, Carlos Soriano Sánchez,
  Jakub Steiner, Jasper St. Pierre, Colin Walters, Dan Winship, Ron Yorston

Translations:
  Yuri Myasoedov [ru], Wouter Bolsterlee [nl], Yaron Shahrabani [he],
  Nilamdyuti Goswami [as], Ani Peter [ml], Kjartan Maraas [nb],
  Dr.T.Vasudevan [ta], A S Alam [pa], Shankar Prasad [kn], Khaled Hosny [ar],
  Daniel Mustieles [es], Dušan Kazik [sk]

3.7.2
=====
* Enforce RTL in he for messages that might end up as LTR [Florian; #686630]
* gdm: Move logo into the panel [Florian; #685852]
* Hide notifications when closed button is clicked [Jasper, Florian; #682237]
* Tweak screenShield animations [Rui; #686745]
* Restore Fittsability of summary items in message tray [Florian; #686474]
* Save screencasts as recent item [Ray; #680647]
* overview: Resize window captions on content change [Giovanni, Alex; #620874]
* App search: Match GenericName too [Matthias; #687121]
* runDialog: Better match style of other modal dialogs [Florian, Allan; #687127]
* Improve the button insensitive style [Stéphane; #687110]
* network: Don't use a global switch for all VPN connections [Giovanni; #682929]
* appMenu: Update on icon theme changes [Florian; #687224]
* Show 'Log out' in more situations [Matthias; #686736]
* Add a setting to force the 'Log out' menuitem [Matthias; #686057]
* overview: Improve styling of search box [Stéphane; #686479]
* Implement 'disable-user-list' in login screen [Ray; #660660]
* Fix auto-scroll to bottom in chat notifications [Sjoerd; #686571]
* Show feedback notifications when user is busy [Stéphane; #662900]
* Disable login button when there is no input [Stéphane; #687112]
* Use non-linear overview shade for background [Giovanni, Pierre-Eric; #669798]
* Reduce blocking in compositor thread [Simon, Jasper; #687465]
* network: new country-specific type to gather providers [Aleksander; #687356]
* Update man page [Matthias; #680601]
* st-entry: Change the pointer cursor on enter/leave events [Thomas; #687130]
* screenShield: Blur and desaturate the background [Giovanni, Cosimo; #682536]
* Change height of chat notifications to have more context [Carlos; #665255]
* screenShield: Account for motion velocity when hiding [Giovanni; #682537]
* screenShield: hide the cursor while the lock screen is on [Giovanni; #682535]
* Support remote search provider settings [Cosimo; #687491]
* unlockDialog: Improve label of confirmation button [Stéphane; #687656]
* userMenu: Rename "System Settings" item to "Settings" [Elad; #687738]
* messageTray: Add keybinding to focus current notification [Stéphane; #652082]
* Remove shell-screen-grabber [Neil; #685915]
* main: Stop using Metacity's keybinding files [Florian; #687672]
* Bluetooth: Remove ObexFTP functionality [Bastien; #688160]
* a11y: Also set WM theme when HighContrast is switched on [Cosimo; #688256]
* network: Rework multiple NIC support [Giovanni; #677142]
* Rework keybindings to allow selective blocking/processing [Florian; #688202]
* recorder: Show indicator on primary monitor [Adel; #688470]
* recorder: Set frame duration to fix broken video headers [Adel; #688487]
* Misc. bugfixes and cleanups [Florian, Jasper, Giovanni, Matthew, Stéphane,
  Allan, Daiki, Owen, Alejandro, Jean-François, Cosimo, Sebastian, Adel, Alban;
  #686484, #686728, #686805, #686574, #686763, #682428, #687132, #685239,
  #687189, #687226, #658091, #670687, #687457, #687242, #687287, #687020,
  #686583, #661194, #687491, #657315, #687958, #683986, #688089, #687708,
  #686530, #684810, #688181, #688475, #688557, #688507, #638351]

Contributors:
  Elad Alfassa, Matthew Barnes, Alban Browaeys, Giovanni Campagna,
  Cosimo Cecchi, Matthias Clasen, Allan Day, Stéphane Démurget,
  Jean-François Fortin Tam, Adel Gadllah, Alex Hultman, Sebastian Keller,
  Rui Matos, Simon McVittie, Aleksander Morgado, Florian Müllner,
  Bastien Nocera, Pierre-Eric Pelloux-Prayer, Alejandro Piñeiro, Neil Roberts,
  Sjoerd Simons, Carlos Soriano Sánchez, Jasper St. Pierre, Ray Strode,
  Owen Taylor, Daiki Ueno, Thomas Wood

Translations:
  Dušan Kazik [sk], Pavol Klačanský [sk], Piotr Drąg [pl], Yuri Myasoedov [ru],
  Marek Černocký [cs], Kjartan Maraas [nb], Wolfgang Stöggl [de],
  Yaron Shahrabani [he], Fran Diéguez [gl], Mattias Põldaru [et]

3.7.1
=====
* Add shortcut to open application view directly [Jeremy; #685738]
* Expose '<Super>F10' shortcut in System Settings [Florian; #672909]
* Clean up timestamp format in chat notifications [Carlos; #680989]
* loginScreen: Add support for 'disable-restart-buttons' [Florian; #686247]
* Update textures automatically on file changes [Florian; #679268]
* Implement org.gnome.ScreenSaver.GetActiveTime [Giovanni; #686064]
* Add missing translations for GSetting schema [Giovanni; #686413]
* Hide workspace switcher completely when it's not necessary [Seif; #686483]
* Explicitly load gnome-screensaver when not running GDM [Tim; #683060]
* Port to GnomeIdleMonitor [Jasper; #682224]
* Set Empathy as preferred handler when delegating channels [Xavier; #686296]
* Allow testing GDM login dialog from the session [Giovanni; #683725]
* Use all available space for windows in window picker [Jasper, Pierre-Eric;
  #582650]
* Use logind for suspend if available [Florian; #686482]
* Misc. fixes and cleanups [Jasper, Florian, Adel, Rui; #677426, #680426,
  #686233, #686241, #686318, #686240, #686484, #686002, #684650, #686487]

Contributors:
  Jeremy Bicha, Giovanni Campagna, Xavier Claessens, Adel Gadllah, Seif Lotfy,
  Tim Lunn, Rui Matos, Florian Müllner, Pierre-Eric Pelloux-Prayer,
  Carlos Soriano, Jasper St. Pierre

Translations:
  Andika Triwidada [id], Matej Urbančič [sl], Ihar Hrachyshka [be],
  Daniel Mustieles [es], Fran Diéguez [gl], Takayuki KUSANO [ja],
  Мирослав Николић [sr, sr@latin], Dušan Kazik [sk], Tom Tryfonidis [el]

3.6.1
=====
* dash: Make padding even on the top/bottom of the dash [Jasper; #684619]
* Fix a crash when dragging search results [Jasper; #684888]
* workspaceThumbnail: Fix dragging with static workspaces [Jasper; #684641]
* Really hide 'Show Keyboard Layout' on the lock screen [Matthias]
* Misc. improvements to jhbuild setup [Owen; #685352, #685353, #685354, #685355]
* Show message tray in Ctrl+Alt+Tab outside of the overview [Jasper, Florian;
  #684633, #685914]
* Disable hotplug sniffer on remote filesystems [Jasper; #684093]
* userMenu: Remove 'Switch Session' item [Florian; #685062]
* unlockDialog: Make prompt entry insensitive while logging in [Jasper; #685444]
* messageTray: Don't animate desktop clone for failed grabs [Jasper; #685342]
* Fix crash on dragging windows between workspaces [Ryan; #681399]
* userMenu: Ignore 'lock-enabled' setting for user switching [Florian; #685536]
* gdm: Fix key-focus on first user [Adel; #684650]
* Make grid button insensitive when dragging non-favorites [Jasper; #685313]
* Calendar: hide all actions when on the login screen [Matthias; #685142]
* Adapt unlock dialog layout for the login screen [Florian; #685201]
* Make focus-follows-mouse work better with Shell UI [Florian; #678169]
* Improve look of screen shield [Jasper; #685919]
* Fix keynav in the login screen [Florian; #684730]
* dateMenu: Hide "Open Calendar" item if calendar unavailable [Florian; #686050]
* unlockDialog: Reset UI on verification failure [Giovanni; #685441]
* Show unlock dialog on primary monitor when using keynav [Giovanni; #685855]
* Fix height changes of entries when entering text [Florian; #685534]
* Fix show-apps label after successful drags [Florian; #684627]
* Misc. bugfixes and cleanups [Jasper, Olivier, Florian, Owen, Adel, Tanner, Tim, Matthias; #685434, #685511, #685466, #685341, #685156, #681159, #673189, #686016, 684869, #686079, #686063

Contributors:
Jasper St. Pierre
Matthias Clasen
Owen Taylor
Olivier Blin
Florian Müllner
Ryan Lortie
Adel Gadllah
Tanner Doshier
Tim Lunn
Giovanni Campagna

Translations:
  Tobias Endrigkeit [de], Rudolfs Mazurs [lv], Ask H. Larsen [da],
  Shankar Prasad [kn], Changwoo Ryu [ko], Chris Leonard [en_GB],
  Arash Mousavi [fa], Theppitak Karoonboonyanan [th], Seán de Búrca [ga],
  Yaron Shahrabani [he], Alexander Shopov [bg], Žygimantas Beručka [lt],
  Milo Casagrande [it], Kjartan Maraas [nb], Kris Thomsen [da],
  Aurimas Černius [lt], Yuri Myasoedov [ru], Мирослав Николић [sr],
  Marek Černocký [cs], Gabor Kelemen [hu], Ihar Hrachyshka [be],
  Chao-Hsiung Liao [zh_HK, zh_TW], Eleanor Chen [zh_CN],
  Carles Ferrando [ca@valencia], Vicent Cubells [ca], Daniel Korostil [uk],
  Alexandre Franke [fr], Piotr Drąg [pl]

3.6.0
=====
* keyboard: Make input source items accessible [Florian; #684462]
* Don't show network dialogs in the lock screen [Giovanni; #684384]
* popupMenu: Fix initial visibility of settings items [Florian; #684473]
* userMenu: Close menu immediately on user/session switch [Florian; #684459]
* Fix alignment of search section headers in RTL locales [Florian; #684379]
* screenShield: Fix unlock animation [Florian; #684591]
* Don't open the tray from a dwell while in a modal grab [Jasper; #684458]
* userMenu: Fix texture updates on icon changes [Florian; #679268]
* Fix a11y support in the login screen [Florian, Ray; #684727, #684728, #684748]
* Make On-Screen-Keyboard usable with new message tray [Giovanni, Florian;
  #683546]
* Fix initial visibility of input volume in lock-screen [Florian; #684611]

Contributors:
  Giovanni Campagna, Florian Müllner, Jasper St. Pierre, Ray Strode

Translations:
  Matej Urbančič [sl], Dr.T.Vasudevan [ta], Piotr Drąg [pl], A S Alam [pa],
  Alexander Shopov [bg], Nilamdyuti Goswami [as], Chandan Kumar [hi],
  Khaled Hosny [ar], Ibrahim Saed [ar], Sandeep Sheshrao Shedmake [mr],
  Tom Tryfonidis [el], Theppitak Karoonboonyanan [th], Alexandre Franke [fr],
  Fran Diéguez [gl], Gabor Kelemen [hu], Ani Peter [ml], Daniel Mustieles [es],
  Мирослав Николић [sr, sr@latin], Duarte Loreto [pt], ManojKumar Giri [or],
  Ihar Hrachyshka [be], Aurimas Černius [lt], Djavan Fagundes [pt_BR],
  Changwoo Ryu [ko], Bruce Cowan [en_GB], Kris Thomsen [da], Gil Forcada [ca],
  Yaron Shahrabani [he], Milo Casagrande [it], Ville-Pekka Vainio [fi],
  YunQiang Su [zh_CN], Carles Ferrando [ca@valencia], Mario Blättermann [de],
  Rajesh Ranjan [hi], Yuri Myasoedov [ru], Rūdolfs Mazurs [lv],
  Jiro Matsuzawa [ja], Mattias Põldaru [et], Timur Zhamakeev [ky],
  Petr Kovar [cs], Chao-Hsiung Liao [zh_HK,zh_TW], Andika Triwidada [id]

3.5.92
======
* Login/UnlockDialog: Don't reset immediately if auth fails [Giovanni; #682544]
* Allow changing session mode at runtime [Jasper, Giovanni; #683156]
* Add zoom out animation on login [Jasper; #683170]
* Bluetooth: don't restrict the length of non numeric PINs [Giovanni; #683356]
* Force chat notification to stay open when focusing entry [Debarshi; #682236]
* Make sure the screen is fully locked before suspending [Giovanni; #683448]
* st-texture-cache: Fix a case of distorted textures [Florian; #683483]
* popupSubMenu: Fix padding for non-scrolled submenus [Florian; #683009]
* popupMenu: Fix width changes on submenu open/close [Florian; #683485]
* boxpointer: Avoid malformed boxpointer arrow [Debarshi; #680077]
* Change stage background color to grey [Adel; #683514]
* messageTray: Update style of summary counters [Debarshi; #682891]
* Don't fail if a legacy tray icon has no WM_CLASS [Giovanni; #683724]
* PolkitAgent: Fix a crash if there is no avatar [Giovanni; #683707]
* Hide the a11y menu in the lock screen, but show it in the login screen
  [Giovanni; #682542]
* Fix show-apps button dropping off the dash [Florian; #683340]
* Fix committing strings to shell entries from input method [Florian; #658325]
* Make IBus display strings consistent with control-center [Rui; #683124]
* Fix missing short codes for some input sources [Rui; #683613]
* Remove support for long-press from entry context menus [Jasper; #683509]
* screenShield: Add box-shadow to the shield [Florian]
* Don't show a right-click menu for the hotplug source [Jasper; #683438]
* Fix extension styling [Giovanni; #682128]
* Fix on-screen keyboard not working with system-modal dialogs
  [Giovanni; #664309]
* Fix insensitive styling for popup menu items [Giovanni; #683988]
* Disable the message tray dwell when the user is interacting [Owen; #683811]
* Animate going from the unlock dialog to the lock screen [Giovanni; #681143]
* Autostart fprintd when necessary [Ray; #683131]
* UnlockDialog: Allow typing before the first PAM question [Giovanni; #681576]
* Make Return key dismiss screenshield [Ray; #683889]
* Fix keyboard navigation in the message tray [Florian; #682243]
* Remove the places & devices search provider [Giovanni; #683506]
* Enable hot corner while the message tray is up [Florian; #682255]
* Port screen recorder to new GStreamer vp8enc API [Adel; #684206]
* Fix fish flickering [Giovanni; #684154]
* Fix extension ordering with !important [Jasper; #684163]
* Allow the shell to run without the screenshield [Giovanni; #683060]
* Add menu items for IBus Anthy's InputMode, TypingMode [Rui; #682314]
* Improve transition to the login dialog [Jasper; #682428]
* Keep unlock dialog around until shield animation ends [Florian; #684342]
* Expose shell keybindings in System Settings [Florian; #671010]
* Misc. bugfixes and cleanups [Debarshi, Florian, Giovanni, Jasper, Rico, Rui;
  #672790, #677434, #683305, #683357, #683369, #683377, #683378, #683400,
  #683449, #683472, #683482, #683487, #683488, #683526, #683529, #683546,
  #683583, #683628, #683705, #683982, #683989, #684035, #684036, #684040,
  #684162, #684214, #684343]

Contributors:
  Giovanni Campagna, Adel Gadllah, Rui Matos, Florian Müllner, Debarshi Ray,
  Jasper St. Pierre, Ray Strode, Owen Taylor, Rico Tzschichholz

Translations:
  Gabor Kelemen [hu], Piotr Drąg [pl], Khaled Hosny [ar],
  Мирослав Николић [sr, sr@latin], Chao-Hsiung Liao [zh_HK, zh_TW],
  Bruce Cowan [en_GB], Dirgita [id], Tom Tryfonidis [el], Timo Jyrinki [fi],
  Adorilson Bezerra [pt_BR], Arash Mousavi [fa], Matej Urbančič [sl],
  Christian Kirbach [de], Yaron Shahrabani [he], Ihar Hrachyshka [be],
  Changwoo Ryu [ko], Duarte Loreto [pt], Theppitak Karoonboonyanan [th],
  Nilamdyuti Goswami [as], Sandeep Sheshrao Shedmake [mr],
  Alexandre Franke [fr], Ivaylo Valkov [bg], tuhaihe [zh_CN],
  Yuri Myasoedov [ru], Aurimas Černius [lt], Andika Triwidada [id],
  Rajesh Ranjan [hi], Sweta Kothari [gu], Daniel Mustieles [es],
  Fran Diéguez [gl], Praveen Illa [te]

3.5.91
======
* Improve modal dialog styling of network secret prompts [Jasper; #682412]
* Fix visibility of non-active workspaces during overview transition
  [Florian; #682002]
* Improve scrollbar theming [Cosimo; #682476]
* Make sure the app menu remains hidden in locked state [Florian; #682475]
* Add tooltip to show-applications icon [Jasper; #682445]
* Do not add duplicate remote search providers [Florian; #682470]
* Handle 'popup-menu' signal on summary items [Florian; #682486]
* Fix dwelling during mouse-down [Owen; #682385]
* Set label actor for endSessionDialog.ListItem [Alejandro; #677503]
* Don't match on comments when searching applications [Florian; #682529]
* Make workspace selector more similar to the mockup [Stefano; #662087]
* Fix extension installation and reloading [Jasper; #682578]
* Hide removable devices in the lock screen [Giovanni; #681143]
* Reset cancellable after hitting Escape on login screen [Alban; #681537]
* Fix suspend from the user menu [Giovanni; #682746]
* Set label actor for summary items in message tray [Alejandro; #677229]
* Set label for the "Show applications" dash button [Alejandro; #682366]
* Load extensions as late as possible [Jasper; #682822]
* Improve mount operation dialogs [Jon; #682645]
* Remove "Connect to ..." item from places search [Florian; #682817]
* Don't auto-expand notifications with actions [Giovanni; #682738]
* Add a new lock screen menu to combine volume network and power
  [Giovanni; #682540]
* Add support for pre-edit to StIMText [Daiki; #664041]
* Remove StIconType [Jasper, Florian, Rui, Giovanni, Debarshi; #682540]
* Use monitor geometry for dwelling [Florian; #683044]
* Add support for surrounding-text to StIMText [Daiki; #683015]
* Improve the placement and style of the "No results" text [Jasper; #683135]
* Remove broken network device activation policy [Giovanni; #683136]
* Hide power status icon when no battery is present [Tim; #683080]
* Ensure summary items are square and have spacing [Debarshi; #682248]
* Fix close buttons overlapping screen edge [Debarshi; #682343]
* Escape the tray when a legacy icon is clicked [Giovanni; #682244]
* Update arrow in the screen shield to match latest mockups [Giovanni; #682285]
* Allow lifting the screen shield with the mouse wheel [Giovanni; #683164]
* Make sure to show the app menu after unlocking the screen [Jasper; #683154]
* Misc bug fixes and cleanups [Debarshi, Florian, Giovanni, Jasper, Rui;
  #582650, #667439, #682238, #682268, #682429, #682455, #682544, #682546,
  #682683, #682710, #682998, #683073, #683137, #683156]

Contributors:
  Alban Browaeys, Giovanni Campagna, Cosimo Cecchi, Stefano Facchini,
  Adel Gadllah, Tim Lunn, Rui Matos, William Jon McCann, Florian Müllner,
  Alejandro Piñeiro, Debarshi Ray, Jasper St. Pierre, Owen Taylor, Daiki Ueno

Translations:
  Piotr Drąg [pl], Takayuki KUSANO [ja], Kjartan Maraas [nb],
  Aurimas Černius [lt], Daniel Mustieles [es], Yuri Myasoedov [ru],
  Khaled Hosny [ar], Yaron Shahrabani [he], Tom Tryfonidis [el],
  Nilamdyuti Goswami [as], Fran Diéguez [gl], Nguyễn Thái Ngọc Duy [vi],
  A S Alam [pa], Dr.T.Vasudevan [ta], Luca Ferretti [it]

3.5.90
======
* Use symbolic icons for workspace switch OSD [Jon; #680738]
* Lock screen improvements:
  - Hide user menu and a11y menu in the screen lock [Giovanni; #681143]
  - Bump the lock screen slightly when pressing a key [Giovanni; #681143]
  - Constrain vertical movement of the screen shield [Giovanni; #681143]
  - Return to lock screen on idle [Giovanni; #682041]
  - Unlock screen automatically after fast-user switching [Giovanni; #682096]
  - Fix "other user" label [Ray; #681750]
* Constrain content of system modals to primary monitor [#681743]
* Respect automatic lock setting on suspend/user-switch [Giovanni; #680231]
* Improve styling of keyring prompt [Jasper; #681821]
* Do not hard-code <super> as overlay-key [Florian; #665547]
* Update style of attached modal dialogs [Florian; #681601]
* a11y: allow navigation on non reactive items [Alejandro; #667439, #667439]
* Implement mode-less overview design [Joost, Florian; #682109]
* Implement message-tray redesign:
  - Restyle the message tray [Ana, Allan, Florian; #677213, #682342]
  - Move the desktop upwards when showing the tray [Debarshi; #681392]
  - Add a close button to notifications [Ana, Jasper; #682253]
  - Add a keybinding to toggle the tray [Debarshi; #681392]
  - Make the tray keyboard navigable [Debarshi; #681519]
  - Add dwelling at the bottom of the screen to open the tray [Owen; #682310]
  - Don't time out banners when the user is inactive [Marina, Jasper]
  - Misc fixes and cleanups [Jasper, Marina]
* Fix showing "Next Week" on Sundays [Sebastian; #682198]
* Delay restoring IM presence until the network comes up [Florian; #677982]
* Display enterprise login hint [Ray; #681975]
* Ignore unrecognized/irrelevant network devices/connections [Dan; #682364]
* Misc bug fixes and cleanups: [Dan, Florian, Jasper, Jiro, Piotr, Rico;
  #643687, #682045, #682189]

Contributors:
  Giovanni Campagna, Allan Day, Piotr Drąg, William Jon McCann,
  Sebastian Keller, Jiro Matsuzawa, Florian Müllner, Alejandro Piñeiro,
  Debarshi Ray, Ana Risteska, Jasper St. Pierre, Ray Strode, Owen Taylor,
  Rico Tzschichholz, Joost Verdoorn, Dan Winship, Marina Zhurakhinskaya

Translations:
  Nilamdyuti Goswami [as], Daniel Mustieles [es], Yaron Shahrabani [he],
  Chao-Hsiung Liao [zh_HK, zh_TW], Tobias Endrigkeit [de], A S Alam [pa],
  Sandeep Sheshrao Shedmake [mr], Fran Diéguez [gl],
  Мирослав Николић [sr, sr@latin]

3.5.5
=====
* Update style to match mockups [Allan]
  - improve calendar layout and legibility
  - update notifications and menus
  - use a common style for entries
  - update scrollbars to match GTK+
  - improve clock/unlock button in lock screen
  - update polkit dialogs [Jasper]
* Fix login dialog growing when selecting different users [Florian; #675076]
* Implement screen lock in the shell [Giovanni]
  - restructure login code to be shared with session unlock [#619955]
  - add initial screen shield / unlock dialog implementation [#619955]
  - implement (optional) notification list on lock shield [#619955]
  - update login dialog style to match lock screen [#619955]
  - filter notifications to only show new ones on the screen lock [#681143]
  - make notifications scrollable if necessary [#681143]
  - use correct application names in notifications [#681143]
  - allow to return to the shield by pressing Escape [#681143]
* Minor login dialog improvements [Florian]
  - update style to match the overall visuals [#660913]
  - indicate whether users are logged in [#658185]
* Add support for background-repeat CSS property [Jasper; #680801]
* Add :active pseudo class on scroll handles [Florian]
* Remove markup from translated strings [Matthias; #681270]
* Misc bug fixes and cleanups: [Alban, Florian, Giovanni, Jasper, Jeremy,
  Matthias, Piotr; #677893, #679944, #680064, #680170, #680216, #680426,
  #681101, #681382]

Contributors:
  Jeremy Bicha, Alban Browaeys, Giovanni Campagna, Matthias Clasen, Allan Day,
  Piotr Drąg , Florian Müllner, Jasper St. Pierre

Translations:
  Matej Urbančič [sl], Tom Tryfonidis [el], Yaron Shahrabani [he],
  Kjartan Maraas [nb], Baurzhan Muftakhidinov [kk], Praveen Illa [te],
  Khaled Hosny [ar], Daniel Mustieles [es], Gabor Kelemen [hu],
  Fran Diéguez [gl], Sweta Kothari [gu], Aleksej Kabanov [ru],
  Nilamdyuti Goswami [as], Arash Mousavi [fa], Мирослав Николић [sr, sr@latin]

3.5.4
=====
* Fix wrong result handling of remote calls [Florian; #678852]
* dateMenu: Fix regression that caused no date to be displayed [Colin]
* WindowTracker: Fix refcounting bug in get_app_for_window() [Giovanni; #678992]
* Show the workspace switcher for move-to-workspace keybinding
  [Giovanni, Jasper; #674104, #660839, #679005]
* userMenu: Move "Power off" item to the bottom [Florian; #678887]
* Remove contacts search provider [Florian, Rui; #677442]
* network: don't ask for always-ask secrets when interaction isn't allowed
  [Dan; #679091]
* PolkitAgent: Look for the right password prompt [Matthias; #675300]
* Implement extension updates [Jasper; #679099]
* userMenu: Don't disconnect account signals when disabled [Guillaume; #669112]
* Fix startup notification when opening calendar [Florian; #677907]
* networkAgent: use absolute path if configured [Clemens; #679212]
* recorder: Port to GStreamer-1.0 API [Florian; #679445]
* telepathyClient: don't add log messages on presence changes [Ana; #669508]
* lookingGlass: Don't use a signal callback on 'paint' to draw the border
  [Jasper; #679464]
* Add support for inhibiting automount [Hans; #678597]
* Implemented banner support for the login screen [Matthias, Marius; #665346]
* boxpointer: Flip side if we would end outside the monitor [Rui; #678164]
* boxpointer: Change 'animate' parameter on show/hide to a bitmask
  [Rui; #678337]
* Add a grayscale effect [Matthias, Jasper, Florian: #676782, #674499]
* UserMenu: show "Install Updates & Restart" when appropriate
  [Giovanni; #677394, #680080]
* messageTray: don't show the message tray when a new notification is shown
  [Ana; #677210]
* panel: don't break when indicator has no menu [Jean-Philippe; #678694]
* appMenu: Disable app menu during startup animations [Florian; #672322]
* autorun: Add a notification when unmounting drives [Cosimo; #676125]
* st-icon: Fix potential crash involving shadows [Jasper; #679776]
* Remove manual garbage collection on tweeners end [Cosimo; #679832]
* dash: hide tooltips when overview begins hiding [Stefano; #674241]
* Update modal dialog animation for new centered position [Florian; #674499]
* calendar: Fix grid lines in RTL locales [Florian; #679879]
* Integrate IBus with keyboard indicator [Rui; #641531]
* Move ibus status icon under keyboard [Matthias]
* gdm: port from libgdmgreeter to libgdm [Ray; #676401]
* Misc bug fixes and cleanups [Antoine, Cosimo, Giovanni, Jasper, Rico;
  #678978, #672790, #679847, #679944]

Contributors:
 Jean-Philippe Braun, Clemens Buchacher, Giovanni Campagna, Cosimo Cecchi,
 Matthias Clasen, Hans de Goede, Guillaume Desmottes, Stefano Facchini,
 Antoine Jacoutot, Rui Matos, Florian Müllner, Marius Rieder, Ana Risteska,
 Jasper St. Pierre, Rico Tzschichholz, Colin Walters, Dan Williams

Translations:
 Matej Urbančič [sl], Khaled Hosny [ar], Nguyễn Thái Ngọc Duy [vi],
 Nilamdyuti Goswami [as], Alexander Shopov [bg], Ivaylo Valkov [bg],
 Daniel Mustieles [es], Kjartan Maraas [nb,nn], Yaron Shahrabani [he],
 Nilamdyuti Goswami [as], Chao-Hsiung Liao [zh_HK, zh_TW], Ihar Hrachyshka [be],
 Praveen Illa [te]

3.5.3
=====
* calendar: Adapt to Evolution-Data-Server API changes [Matthew; #677402]
* messageTray: Don't show non urgent notifications while in fullscreen
  [Adel; #677590]
* modalDialog: show dialogs on monitor with the mouse pointer [Tim; #642591]
* extensionSystem: Prepare for extension updating system [Jasper; #677586]
* appDisplay: Don't show apps in NoDisplay categories in the All view
  [Jasper; #658176]
* st: Trigger theme updates on resolution changes [Florian; #677975]
* Always enable a11y [Bastien; #678095]
* telepathyClient: ignore invalidated channels [Guillaume; #677457]
* shell-app: Update app menu if necessary [Florian; #676238]
* Enable the Screen Reader menu item [Matthias; #663256]
* Disable unredirection when a modal operation is active [Giovanni]
* Make folks optional [Colin]
* Improve mount-operation support [Cosimo]
  - Fix exception when showing password entry [#678428]
  - Close the password entry on operation abort [#673787]
  - autorun: Don't allow autorun for things we mount on startup [#660595]
  - Turn passphrase prompt into a dialog [#674962]
  - Implement org.Gtk.MountOperationHandler [#678516]
* Network menu improvements
  - Sort Wifi networks by strength [Giovanni; #658946]
  - Prefer wifi/3g over VPN in the panel [Cosimo; #672591]
* clock: Switch to using GnomeWallClock [Colin; #657074]
* remoteSearch: Allow to reference .desktop file for Title/Icon
  [Florian; #678816]
* Fix memory leaks [Jasper, Pavel; #678079, #678406, #678737]
* Misc fixes [Florian, Giovanni, Guillaume, Jasper, Kjartan, Piotr, Rui;
  #658955, #677497, #678396, #678502]
* Misc cleanups [Bastien, Florian, Jasper; #677426, #677515, #678096, #678416]

Contributors:
 Matthew Barnes, Giovanni Campagna, Cosimo Cecchi, Matthias Clasen,
 Guillaume Desmottes, Piotr Drąg, Adel Gadllah, Tim L, Kjartan Maraas,
 Rui Matos, Florian Müllner, Bastien Nocera, Jasper St. Pierre, Colin Walters

Translations:
 Matej Urbančič [sl], Yuri Kozlov [ru], Tom Tryfonidis [el],
 Kjartan Maraas [nb], Žygimantas Beručka [lt], Luca Ferretti [it],
 Khaled Hosny [ar], Daniel Mustieles [es], Fran Diéguez [gl], A S Alam [pa]

3.5.2
=====
* main: Move 'toggle-recording' binding into the shell [Florian; #674377]
* popupMenu: make sure to break the grab when the slider is not visible
  [Stefano; #672713]
* st-theme-node-drawing: Don't use GL types [Neil; #672711]
* Mirror Evolution calendar settings into our own schema [Owen; #674424]
* shell-network-agent: don't crash if a request isn't found [Dan; #674961]
* notificationDaemon: Match app based on WM_CLASS [Jasper; #673761]
* NetworkMenu: use network-offline while loading [Giovanni; #674426]
* lookingGlass: Remove the Errors tab [Jasper; #675104]
* searchDisplay: Reset keyboard focus after displaying async results
  [Rui; #675078]
* gdm: don't fail if fprintd is unavailable [Ray; #675006]
* messageTray: Fix scrolling up [Jasper; #661615]
* main: Close the recorder instead of pausing it [Rui; #675128]
* Accessibility [Alejandro]
  - Use the proper label_actor for date menu on top panel [#675307]
  - Set the proper role/label_actor for SearchResult.content [#672242]
  - do not expose a label text if 'hidden' style class is used [#675341]
* Magnifier: Add brightness and contrast functionality [Joseph; #639851]
* theme: use a smaller border-radius for top bar [Jakub; #672430]
* placeDisplay: use new bookmark file location [Matthias; #675443]
* port all synchronous search providers to the async API [Jasper, Rui; #675328]
* NetworkAgent: disallow multiple requests for the same connection/setting
  [Giovanni; #674961]
* userMenu: Update to latest mockups [Florian; #675802]
* util: Don't double-fork when spawning from Alt-F2 [Colin; #675789]
* messageTray: Make Source usable without subclassing [Jasper; #661236]
* panel: Check for appMenu button's reactivity before opening [Florian; #676316]
* Fix formatting of bluetooth passkey [Florian; #651251]
* notificationDaemon: Filter out file-transfer notifications [Jasper; #676175]
* Don't use global.log() [Jasper; #675790]
* Fix broken extension loading in some distributions [Owen, Alexandre; #670477]
* shell-app: Raise windows in reverse order to preserve the stacking
  [Rui; #676371]
* Generalize gdm-mode [Florian; #676156]
* Switch string formatting to the one inside gjs [Jasper; #675479]
* extensionUtils: Support subdirectories in getCurrentExtension
  [Jasper; #677001]
* panel: Refuse to add (legacy) status icons not part of the session mode
  [Florian; #677058]
* Add an initial-setup mode [Matthias; #676697]
* status/keyboard: Port to the new input sources settings [Rui; #641531]
* NetworkMenu: show notifications for failed VPN connections [Giovanni; #676330]
* userMenu: Indicate progress on status changes [Florian; #659067]
* recorder: Honor "disable-save-to-disk" lockdown key [Rūdolfs; #673630]
* searchDisplay: Use the rowLimit we pass to the IconGrid [Christian; #675527]
* endSessionDialog: Factor out _updateDescription from _updateContent
  [Alejandro; #674210]
* Fix empathy's appMenu freezing the shell [Alban; #676447]
* Code cleanups [Florian, Giovanni, Jasper; #672807, #672413, #676837, #676850,
  #672272]
* Misc bug fixes [Alban, Florian, Giovanni, Guillaume, Jasper, Piotr, Rico,
  Ron, Rui, Stefano; #659968, #672192, #673177, #673198, #674323, #675301,
  #675370, #676347, #676806, #677097]

Contributors:
 Alban Browaeys, Giovanni Campagna, Matthias Clasen, Guillaume Desmottes,
 Piotr Drąg, Stefano Facchini, Rui Matos, Rūdolfs Mazurs, Florian Müllner,
 Alejandro Piñeiro, Neil Roberts, Alexandre Rostovtsev, Joseph Scheuhammer,
 Jakub Steiner, Jasper St. Pierre, Ray Strode, Owen Taylor, Rico Tzschichholz,
 Colin Walters, Dan Winship, Ron Yorston

Translations:
 OKANO Takayoshi [ja], Daniel Mustieles [es], Changwoo Ryu [ko],
 Yaron Shahrabani [he], Fran Diéguez [gl], Jonh Wendell [pt_BR],
 Kjartan Maraas [nb], Luca Ferretti [it], Tom Tryfonidis [el],
 Sandeep Sheshrao Shedmake [mr], Takanori MATSUURA [ja], Dirgita [id],
 Mantas Kriaučiūnas [lt], Matej Urbančič [sl], Jiro Matsuzawa [ja]

3.4.1
=====
* Fix crash that occurred when an icon theme change caused unexpected
  reentrancy in the icon loading code [Jasper; #673512]
* Don't show system and other disabled users in the GDM user list
  [Adel; #673784]
* Make gnome-shell-calendar-server initialize GTK+ so it can display
  password prompts if needed [#673608; Owen, Rico]
* Adapt to Mutter API change for keybinding addition [Florian; #673014]
* Fix crash when an extension was installed as both a user extension
  and a system extension [#673613; Jasper]
* Fix bug where chat entry could end up partially offscreen [Joost, 661944]
* Fix problem where icons weren't updating when theme was changed
  [#672941; Florian]
* Look for Evolution calendar settings in GSettings, not GConf [#673610; Owen]
* Add <super>F10 for the application menu [#672909; Florian]
* Fix %Id format characters to work in translations [#673106; Cosimo]
  (were already used in fa translation)
* Fix error when NetworkManager restarts [#673043; Giovanni]
* Improve efficiency of overview redraws by working around Clutter issue
  [Stefano; #670636]
* Misc bug fixes [Florian, Giovanni, Jasper, Rui, Stefano;
  #672592, #672641, #672719, #673187, #673233, #673656]

Contributors:
 Giovanni Campagna, Cosimo Cecchi, Stefano Facchini, Adel Gadllah, Rui Matos,
 Florian Müllner, Jasper St. Pierre, Owen Taylor, Rico Tzschichholz,
 Joost Verdoorn

Translations:
 Khaled Hosny [ar], Ihar Hrachyshka [be], Alexander Shopov [bg], Gil Forcada,
 Jordi Serratosa [ca], Petr Kovar [cs], Bruce Cowan [en_GB],
 Carles Ferrando [ca@valencia], Wolfgang Stöggl [de], Daniel Mustieles [es],
 Arash Mousavi [fa], Bruno Brouard [fr], Fran Diéguez [gl],
 Sweta Kothari [gu], Yaron Shahrabani [he], Gabor Kelemen [hu],
 Shankar Prasad [kn], Žygimantas Beručka [lt], Rudolfs Mazurs [lv],
 Sandeep Sheshrao Shedmake [mr], Kjartan Maraas [nb], Piotr Drąg [pl],
 Yuri Myasoedov [ru], Daniel Nylander [se], Matej Urbančič [sl],
 Miroslav Nikolić [sr], Sasi Bhushan, Praveen Illa [te], Yinghua Wang [zh_CN]

3.4.0
=====
* Don't crash when taking screenshots [Jasper; #672775]
* Fix dialog-resizing problem [Florian; #672543]

Contributors:
 Florian Müllner, Jasper St. Pierre

Translations:
 Khaled Hosny, Abderrahim Kitouni [ar], Ihar Hrachyshka [be],
 Alexander Shopov [bg], Marek Černocký [cs], Jiri Grönroos, Timo Jyrinki [fi],
 Bruno Brouard [fr], Fran Diéguez [gl], Yaron Shahrabani [he],
 Gabor Kelemen [hu], Jiro Matsuzawa [ja], Kenneth Nielsen [dk],
 Mattias Põldaru [et], Changwoo Ryu [ko], Rudolfs Mazurs [lv],
 Jonh Wendell [pt_BR], Yuri Myasoedov[ru], Daniel Korostil [uk],
 Nguyễn Thái Ngọc Duy [vi], Chao-Hsiung Liao [zh_HK, zh_TW]

3.3.92
======
* Add shell-dialogs for GNOME Keyring prompts [Stef; #652459, #652460, #671034]
* When the user returns from idle, bring up the message tray if there were
  messages while they were away [Marina; #643014]
* https://live.gnome.org/EveryDetailMatters
  - Make the workspace thumbnails clickable all the way to the edge of the
    screen [Stefano; #643319]
  - Don't slide out the workspace thumbnails if the mouse is over them when
    entering the overview [Joost, #651092]
  - Fix placeholder jumps while dragging a dash item [Joost; #651842]
  - Don't favorite apps if they are dropped back at the same position
    [Jean-Philippe; #656333]
  - To avoid confusion, don't allow removing running apps from favorites
    [Florian; #644853]
  - Fix creation of new workspaces by dragging application launchers
    [Stefano; #664202]
  - Make it easier to drag dash items without triggering the menu
    [Florian; #637103]
* Accessibility [Alejandro]
  - Add StWidget API for easily adding accessible states and setting roles,
    names [#668366, #667432, #671378]
  - Set accessibility information on UI elements
    [#644255, #667432, #668361, #672047, #670308, #670312, #670719, #671404]
* Improve key-navigation in the overview [Rui, Florian; #663901]
* Key navigation bug fixes [Rui, Florian; #662493, #663437, #665215, #671998]
* Honor a 'org.gnome.shell.overrides.dynamic-workspaces' setting that
  determines whether the workspace count is dynamic and unsaved in GSettings
  or static and saved. [Florian; #671568]
* Avoid saving user presence to GSettings when not necessary
  [Florian; #665701, #668214]
* Save screencasts in the users Videos/ directory [Adel; #670749]
  Use a "human readable" filename [Florian, Adel, Ray; #670753]
* Allow dragging from the empty part of the top panel to unmaximize a window
  [Florian; #666359]
* Fix hangs that could occur when switching away to a VT [Ray; #653833]
* Fix problems with installing from extensions.gnome.org [Giovanni; #671134]
* Fix locking the screen when suspending via menu [David, Gert; #670820]
* Fix browser plugin with Konqueror and Opera [Jasper]
* Fix shell restart not to bring up failure screen [Giovanni; #648384]
* Reorganize and clean up CSS theming [Allan; #668209]
* Improve appearance of modal dialogs [Allan, Florian; #670227, #668209]
* Update the calendar code to use ECalClient [Giovanni; #671177]
* Update jhbuild script to use the main moduleset [Owen, Will; #668440]
* StTextureCache: code cleanup, evict unused icons, merge together
  simulataneous requests for the same icon [Jasper; #670771, #671656, #672273]
* Clean up St for recent Clutter changes and fix bugs. StContainer and
  StGroup are removed [Jasper, Florian; #670034, #670640, #670904]
* Code cleanup [Adel, Jasper, Rui; #613194, #671086, #671103]
* Misc bug fixes
  [Adel, Colin G, Cosimo, Florian, Giovanni, Jasper, Marius, Rui, Stefano;
  #651130, #658946, #667552, #670076, #671001, #670979, #671410, #671411,
  #671556, #671656, #671657, #672011, #672024, #672240, #672265, #672270,
  #672321, #672326, #672413, #672471]

Contributors:
 Jean-Philippe Braun, Giovanni Campagna, Cosimo Cecchi, Allan Day,
 Stefano Facchini, David Foerster, Adel Gadllah, Marius Gedminas,
 Colin Guthrie, Gert Michael Kulyk, William Lachance, Rui Matos,
 Florian Müllner, Alejandro Piñeiro, Jan Alexander Steffens,
 Jasper St. Pierre, Ray Strode, Owen Taylor, Joost Verdoorn, Stef Walter,
 Marina Zhurakhinskaya

Translations:
 Nilamdyuti Goswami [as], Ihar Hrachyshka, Kasia Bondarava [be],
 Alexander Shopov, Ivaylo Valkov [bg], Gil Forcada [ca], Marek Černocký [cs],
 Mario Blättermann [de], Kris Thomsen [dk], Bruce Cowan [en_GB],
 Kristjan Schmidt [eo], Daniel Mustieles [es], Mattias Põldaru [et],
 Inaki Larranaga Murgoitio [eu], Arash Mousavi [fa], Timo Jyrinki [fi],
 Bruno Brouard [fr], Fran Diéguez [gl], Sweta Kothari [gu],
 Yaron Shahrabani [he], Gabor Kelemen [hu], Jiro Matsuzawa [ja],
 Baurzhan Muftakhidinov [kk], Seong-ho Cho [ko], Žygimantas Beručka [lt],
 Anita Reitere [lv], Anish A, Praveen Arimbrathodiyil, Mohammed Sadiq [ml],
 fKjartan Maraas [nb], Wouter Bolsterlee [nl], A S Alam [pa], Piotr Drąg [pl],
 Duarte Loreto [pt], Jonh Wendell [pt_BR], Yuri Myasoedov [ru],
 Matej Urbančič [sl], Miroslav Nikolić [sr], Tirumurti Vasudevan [ta],
 Sasi Bhushan, Krishnababu Krothapalli [te], Daniel Korostil [uk],
 Nguyễn Thái Ngọc Duy [vi], YunQiang Su, Yinghua Wang [zh_CN],
 Chao-Hsiung Liao [zh_HK, zh_TW]

3.3.90
======

* Allow other applications to implement search providers via D-Bus
  [Florian; #663125, #670148]
* Remove "Recent Items" search, as replaced by Documents search
  [Florian; #663125]
* Allow NetworkManager VPN plugins to use a shell-themed dialog
  [Giovanni; #658484]
* Port away from deprecated Clutter API [Jasper, Florian, Adel; #670034]
  - StTooltip is removed
  - StWidget is now a concrete class and can be instantiated
  - st_container_destroy_children(), st_box_layout_insert_actor(),
    and other functions removed in favor of new replacements in Clutter.
* Use systemd for console/session handling when available [Lennart]
* Visual improvements to contact search, padding, top panel, checkboxes
  [Allan, Florian, Jakub; #669489, #669811, #669993]
* Add a include_cursor parameter to Screenshot and ScreenshotWindow
  D-Bus methods [Adel; #670086]
* Add a "FlashArea" D-Bus method to do the screenshot flash without a
  screenshot [Adel; #669660]
* Build fixes [Adel, Giovanni, Jasper; #658484, #669637]
* Misc bug fixes [Adel, Florian, Giovanni, Guillaume, Jasper, Jeff,
  Marc-Antoine, Stef, Stefano, Will; #642135, #658484, #658908, #667694,
  #669098, #669921, #669662, #669694, #669776, #669887, #669921, #670005,
  #670006, #670319, #670418, #670489]

Contributors:
 Giovanni Campagna, Cosimo Cecchi, Allan Day, Guillaume Desmottes, Jeff Epler,
 Stefano Facchini, Adel Gadllah, Florian Müllner, Marc-Antoine Perennou,
 Jasper St. Pierre, Lennart Poettering, Jakub Steiner, Jasper St. Pierre,
 Will Thompson, Stef Walter

Translations:
 Ihar Hrachyshka [be], Marek Černocký, Adam Matoušek [cs],
 Kenneth Nielsen [dk], Daniel Mustieles [es], Mattias Põldaru [et],
 Fran Diéguez [gl], Yaron Shahrabani [he], Luca Ferretti [it],
 Baurzhan Muftakhidinov [kk], Aurimas Černius [lt], Kjartan Maraas [nb],
 A S Alam [pa], Matej Urbančič [sl], Miroslav Nikolić [sr],
 Praveen Illa [te], Chao-Hsiung Liao [zh_HK, zh_TW]

3.3.5
=====

* Extension system: [Jasper; #668429]
  http://blog.mecheye.net/2012/02/more-extension-api-breaks/
 - Add a 'gnome-shell-extension-prefs' application for displaying extension
   preferences as provided by the extension in a prefs.js file.
 - Allow launching gnome-shell-extension-prefs from extensions.gnome.org
   throuhg the browser plugin.
 - Add ExtensionUtils.getCurrentExtension() for an extension to get a
   handle to an extension object, to get local imports or paths.
 - Add an onshellrestart callback to the browser plugin [Jasper; #668517]
* Screenshots:
  - Move the screenshot "flash" to the shell [Cosimo; #668618]
  - Move saving screenshots to a thread [Adel; #652952]
  - Correctly screenshot rounded decorations [Jasper; #662486]
* Screen recorder:
  - Change the default pipeline to favor speed over quality [Owen; #669066]
  - Drop frames to keep from running the user out of memory [Owen; #669066]
* Work around a slow implementation of glReadPixels() in the Intel drivers,
  improving performance for screenshots and the screen recorder.
  [Owen; #669065]
* Use Keywords: field in desktop files when search for applications
  [Florian; #609702]
* Strip debian- when matching desktop file names [Jasper; #665647]
* Fix up various problems from CSS background size-addition
  [Florian, Jasper; #668430, #633462]
* UI tweaks and behavior fixes
  [Florian, Giovanni, Stefano; #643867, #666197, #664622]
* Some improvements to exported accessibility information  [Alejando; #667376]
* Don't show contacts without IM information as offline [Florian; #662685]
* Don't change status from hidden to extended_away when going idle
  [Florian; #642408]
* Cleanups [Emmanuele, Jasper; #662152, #669239]
* Misc bug fixes [Cosimo, Dan, Florian, Jasper, Rui, Stefano;
  #633462, #643867, #662213, #662386, #662747, #665000, #665017, #665322,
  #667371, #667860, #668020, #668517, #668541, #669236]

Contributors:
 Emmanuele Bassi, Giovanni Campagna, Cosimo Cecchi, Stefano Facchini,
 Adel Gadllah, Rui Matos, Florian Müllner, Alejandro Piñeiro,
 Jasper St. Pierre, Owen Taylor, Dan Winship

Translations:
 Daniel Mustieles [es], Timo Jyrinki [fi], Seán de Búrca [ga],
 Fran Diéguez [gl], Kjartan Maraas [nb], Wouter Bolsterlee [nl],
 Danishka Navin [si], Yaron Shahrabani [he], Matej Urbančič [sl],
 Chao-Hsiung Liao [zh_HK, zh_TW]

3.3.4
=====
* https://live.gnome.org/EveryDetailMatters
  - Add "browse" for labels for dash items - once a tooltip is
    showing, switch to other items without a delay [Seif; #666170]
  - Always scale down windows in the overview at least to 70% [Vit; #646704]
  - Fix the new-workspace drop indicator sometimes getting stuck
    [Stefano; #664201]
  - Delay rearranging windows in the overview as long as the pointer
    is over a window [Vit; #645325]
* Add a GConf => DConf migration file for overriden Mutter settings
  [Florian; #667636]
* When a VPN connection is active, show that as the network icon
  [Giovanni; #665115]
* Handle the "ExtendedAway" IM status as away, not offline [Guillaume; #667813]
* Improve the appearance of the labels in "Applications" [Alex; #642392]
* Adjust for GTK+ and Mutter API changes for application menu [Ryan; #668118]
* Add section label support to the application menu [Giovanni; #666681]
* Fix screenshot methods to work again [Cosimo; #667662]
* Fix several crashers related to updating workspace thumbnails [Owen; #667652]
* Fix memory management error causing gnome-shell-hotplug-sniffer to crash
  [Owen; #667378]
* Build fixes [Emmanuele, Rico; #667864]
* Code cleanups [Adel; #668087]
* Misc bug fixes [Colin, Florian, Giovanni, Owen, Xavier; #633028, #658817,
  #664138, #667881, #668048, #668050]

Contributors:
 Emmanuele Bassi, Giovanni Campagna, Cosimo Cecchi, Xavier Claessens,
 Guillaume Desmottes, Stefano Facchini, Adel Gadllah, Alex Hultman,
 Ryan Lortie, Seif Lotfy, Florian Müllner, Vit Stanislav, Owen Taylor,
 Rico Tzschichholz, Colin Walters

Translations:
 Ihar Hrachyshka [be], Alexander Shopov [bg], Arash Mousavi [fa],
 Jiri Grönroos, Timo Jyrinki [fi], Fran Diéguez [gl], Kjartan Maraas [nb],
 Yuri Myasoedov [ru], Matej Urbančič [sl], Nguyễn Thái Ngọc Duy [vi]

3.3.3
=====
* https://live.gnome.org/EveryDetailMatters
  - Stop flashing the window labels on actions in overview [Zan; #644861]
  - Improve the look of window captions in the overview [Marc; #664487]
  - Move dash tooltips beside the icon [Seif, Stefano; #666166]
* Support application menus exported from applications via new GLib API
   and D-Bus protocol. [Giovanni, Colin, Matthias, Cosimo]
* For removable device prompts, show "Open with Rhythmbox], rather
  than "Open with Rhythmbox Music Player' [Florian; #664561]
* Switch to activating the message tray only with a hot corner rather
  than a full row of pixels, allowing mouse events to apps [Rui; #663366]
* Fully handle the case where the workspaces-only-on-primary
  GSetting is set to false [Florian; #652580]
* Add support for background-size CSS property to St [Quentin; #633462]
* Port to new GJS Lang.Class framework [Giovanni; #664436]
* Finish port to GDBus [Giovanni; #664436]
* Stop using the deprecated Clutter default stage [Florian, Jasper; #664052]
* Fix bugs that kept browser plugin from working in WebKit-based browser
  [Jasper; #666444]
* Fix typo that made uninstalling extensions not work [Jasper]
* Fix crash in browser plugin if shell is not run [Jürg]
* Reintroduce piscine paschal ovum [Giovanni; #666606]
* Network menu bug fixes
  Giovanni; #664124, #665194, #665680, #666429, #666614]
* Misc bug fixes [Florian, Jasper, Jonny, Marina, Ron; #647587, #659272,
  #664138, #665261, #666020, #666243]
* Build fixes [Owen]

Contributors:
 Jürg Billeter, Giovanni Campagna, Stefano Candori, Cosimo Cecchi,
 Matthias Clasen, Zan Dobersek, Quentin Glidic, Jonny Lamb, Ryan Lortie,
 Seif Lotfy, Rui Matos, Florian Müllner, Bastien Nocera, Jasper St. Pierre,
 Marc Plano-Lesay, Owen Taylor, Colin Walters, Ron Yorsten,
 Marina Zhurakhinskaya

Translations:
 Petr Kovar [cs], Kris Thomsen [dk], Daniel Mustieles [es],
 Ville-Pekka Vainio [fi], Yaron Shahrabani [he], Luca Ferretti [it],
 Hideki Yamane [ja], Žygimantas Beručka [lt], Jovan Naumovski [mk],
 Kjartan Maraas [nb], "Andreas N" [nn], Lucian Adrian Grijincu [ro],
 Matej Urbančič [sl], Praveen Illa [te], Muhammet Kara [tr],
 Daniel Korostil [uk], Aron Xu [zh_CN]

3.3.2
=====
* Port D-Bus usage in the shell to GDBus [Giovanni, Marc-Antoine, Florian,
  Jasper, Matthias; #648651, #658078, #663902, #663941]
* Message tray
  - Add right-click option to chats to mute the conversation [Ana; #659962]
  - Don't steal the focus when popping up under the pointer [Rui; #661358]
* Looking Glass
  - Add alt-Tab completion [Jason; #661054]
  - Show errors from extensions in the extensions tab [Jasper; #660546]
  - Allow switching tabs with <Control>PageUp/PageDown
  - Theme consistently with the rest of the shell [Jason; 650900]
* Extension system
  - Don't try to load disabled extensions at all [Jasper; #661815, #662704]
  - Enable and disable plugins in a consistent order [Jasper; #661815, #662704]
  - Add options to enable/disable extensions to gnome-shell-extension-tool
    [Jasper; #661815]
* Adapt to Mutter change to GSettings [Florian, Matthias; #663429]
* Allow creating a new workspace by dragging a window or launcher in the
  middle of two existing ones [Jasper; #646409]
* Allow using Alt-Tab while during drag-and-drop and other operations
  that grab the pointer [Adel; #660457]
* Do a better job of finding the right user to authenticate
  as when showing a PolKit dialog [Matthias; #651547]
* Control the D-Bus Eval() method by the developer-tools GSetting which
  is used for looking glass and screen recorder. [Jasper; #662891]
* Fix browser plugin to work under WebKit-based browser [Jasper; #663823]
* Fix certain stacking issues with alt-Tab [Jasper; #660650]
* Fixes for GLib deprecations [Jasper; #662011]p
* Fixes for GTK+ deprecations [Florian, Rico; #662245]p
* Fixes for Clutter deprecations [Jasper; #662627]
* Visual improvements and UI tweaks [Florian, Jakub, Jasper;
  #662800, #658096, #662226]
* Hard-code "Home" as the name for the home dir, rather than looking
  it up via GSettings; avoids schema dependency [Cosimo; #559895]
* Don't show "Switch User" on single user machines [Florian; #657011]
* Generate documentation for St toolkit [Florian]
* Improve marking of strings for translation [Matthias, Piotr; #658664]
* Networking menu bug fixes [Giovanni; #650007, #651378, #659277, #663278]
* Code cleanups and leak fixes to StTextureCache
  [Jasper, Florian; #660968, #662998]
* Code cleanups [Adel, Florian, Jasper; #662238, #663584]
* Build fixes [Adel, Colin, Florian, Ming Han]
* Misc bug fixes [Adel, Florian, "Fry", Jasper, Giovanni, Ray, Rui, Stefan;
  #660520, #661029, #661231, #661623, #661921, #662235, #662236, #662502,
  #662394, #662799, #662969, #663175, #663277, #663815, #663891, #662967]

Contributors:
 Giovanni Campagna, Cosimo Cecchi, Matthias Clasen, Piotr Drąg, Adel Gadllah,
 Rui Matos, Florian Müllner, Marc-Antoine Perennou, Ana Risteska,
 Jason Siefken, Jakub Steiner, Ray Strode, Jasper St. Pierre, Ming Han Teh,
 Rico Tzschichholz, Colin Walters, Stefan Zwanenburg

Translation:
 Alexander Shopov [bg], Marek Černocký [cs], Mario Blättermann [de],
 Kostas Papadimas [el], Bruce Cowan [en_GB], Kristjan Schmidt [eo],
 Jorge González, Daniel Mustieles, Benjamín Valero Espinosa [es],
 Mattias Põldaru [et], Arash Mousavi [fa], Ville-Pekka Vainio [fi],
 Fran Diéguez [gl], Yaron Shahrabani [he], Hideki Yamane [ja],
 Algimantas Margevičius [lt], Kjartan Maraas [nb], Daniel Nylander [se],
 Matej Urbančič [sl], Praveen Illa [te], Muhammet Kara [tr],
 Nguyễn Thái Ngọc Duy [vi], Cheng-Chia Tseng [zh_HK, zh_TW]

3.2.1
=====
* Restore the IM state on startup - if you were available in when you logged
  out, then you'll be set available again when you log in.
  [Florian; #65902, #661485]
* Improve searching for contacts in the overview: search more fields,
  show a more meaningful name, require that all search terms match.
  [Florian, Matthias; #660580]
* Improve search for applications in the overview: take frequency into
  account and tweak match algorithm [Florian; #623372]
* Remove the "Show Password" switch from network password prompts, and
  move the functionality to a right-click menu [Florian; #658948]
* Add context menus with Cut/Paste options to most entries [Florian; #659275]
* On screen keyboard:
 - Show the keyboard immediately when it's turned enabled [Dan; #659743]
 - Fix problem where keyboard would hide when starting to type
   in the search entry [Nohemi; #661340]
 - Fix problem with keyboard hiding when selected accented characters
   [Nohemi; 661707]
* Login mode:
  - Allow hitting Enter to select the first user [Ray; #657996]
  - Fix flicker of a fingerprint prompt that could show up [Ray; #660492]
  - Fix password bullets vanishing during login [Ray; #657894]
  - Misc bug fixes and visual tweaks [Ray; #659763, #660919, #661479]
* Display a caps-lock warning in password entries [Florian; #660806]
* Show the state of installed extensions in Looking Glass [Jasper; #660494]
* Load user extensions after system ones [Jasper; #661815]
* Fix problem with many applications showing extra-large icons in
  notifications [Marina; #659158]
* Fix a problem where alt-Tab had trouble tracking the current
  application with certain applications such as Emacs. [Dan; #645026]
* Fix confusion between different users avatar images [Florian; #660585]
* Remove behavior where you could switch workspaces by bumping
  a dragged window in the overview against a screen edge; it was
  leftover and just confusing. [Florian; #660838]
* Fix long-standing bug where the Dash in the overview could end up mis-sized
  and run off the screen [Florian; #649248]
* Fix automatic launching of applications when media is inserted
  [Cosimo; #660821]
* Fix handling of vertically stacked monitors with NVIDIA drivers
  [Florian; #661387]
* Translation marking fixes [Jasper, Wouter; #660600]
* Code cleanups and warning fixes [Adel, Dan, Florian, Jasper;
  #659822, #659940, #660122, #660358, #660968, #661231]
* Small memory leak fixes [Florian, Jasper; #661231]
* Misc bug fixes [Adel, Florian, Jasper; #659274, #659861, #660166, #660310,
  #660397, #660608,  #660606, #660674, #660774. #660848, #661151, #661617]

Contributors:
  Wouter Bolsterlee, Cosimo Cecchi, Matthias Clasen, Nohemi Fernandez,
  Adel Gadllah, Florian Müllner, Jasper St. Pierre, Ray Strode, Dan Winship,
  Marina Zhurakhinskaya

Translations:
 Tiffany Antopolski [eo], Xandru Armesto [ast], Alexander Shopov,
 Ivaylo Valkov [bg], Gil Forcada [ca], Carles Ferrando [ca@valencia],
 Mario Blättermann, Paul Seyfert [de], Bruce Cowan [en_GB],
 Jorge González, Daniel Mustieles [es], Arash Mousavi [fa], Bruno Brouard [fr],
 Seán de Búrca [ga], Fran Diéguez [gl], Gabor Kelemen [hu], Luca Ferretti [it],
 Takayuki Kusano [ja], Changwoo Ryu [ko], Erdal Ronahi [ku],
 Algimantas Margevičius [lt], Rudolfs Mazurs [lv], Wouter Bolsterlee [nl],
 Piotr Drąg [pl], Adorilson Bezerra [pt_BR], Yuri Myasoedov [ru],
 Matej Urbančič [sl], Daniel Nylander [sv], Miroslav Nikolić [sr, sr@latin],
 Tirumurti Vasudevan [ta], Krishnababu Krothapalli [te], Daniel Korostil [uk],
 Nguyễn Thái Ngọc Duy [vi], YunQiang Su [zh_CN]

3.2.0
=====
* Prevent the fallback on-screen keyboard from showing up while
  GNOME Shell is running [Dan, #659865]
* Disable code to reposition windows around the on-screen keyboard;
  it wasn't finished or working properly. [Dan; #659643]
* Fix interaction between on-screen keyboard and notifications
  [Dan; #658603]
* Fix menu-sizing problems in right-to-left locales. [Florian; #659827]
* Update chat icons in the message tray when an avatar image changes
  [Marina; #659768]
* Fix problem with empty notification bubbles being left [Marina; #659862]
* Fix problem with chat notifications bouncing when new messages come in.
  [Marina; #659768]
* Fix bug that was causing SIP calls to automatically be accepted in some
  circumstances [Guillaume; #660084]
* Fix string that should have been marked translatable [Frédéric]
* Fix a crash that could happen during CSS transitions [Florian; #659676]
* Build fixes [Colin, Florian]

Contributors:
 Guillaume Desmottes, Florian Müllner, Frédéric Péters, Colin Walters,
 Dan Winship, Marina Zhurakhinskaya

Translations:
 Friedel Wolff [af], Nilamdyuti Goswami [as], Ihar Hrachyshka [be],
 Ivaylo Valkov [bg], Gil Forcada [ca], Carles Ferrando [ca@valencia],
 Petr Kovar [cs], Mario Blättermann [de], Kris Thomsen [dk],
 Tiffany Antopolski, Kristjan Schmidt [eo], Daniel Mustieles [es],
 Inaki Larranaga Murgoitio [eu], Tommi Vainikainen [fi], Bruno Brouard [fr],
 Fran Dieguez [gl], Yaron Shahrabani [he], Gabor Kelemen [hu],
 Andika Triwidada [id], Jiro Matsuzawa [ja], Changwoo Ryu [ko],
 Rudolfs Mazurs [lv], Aurimas Černius [lt], Kjartan Maraas [nb],
 A S Alam [pa], Piotr Drąg [pl], Duarte Loreto [pt], Djavan Fagundes,
 Rodolfo Ribeiro Gomes, Gabriel F. Vilar [pt_BR], Yuri Myasoedov [ru],
 Daniel Nylander [se], Martin Srebotnjak [sl], Michal Štrba [sv],
 Krishnababu Krothapalli, Praveen Illa [te], Cheng-Chia Tseng [zh_KH, zh_TW]

3.1.92
======

* Login screen
  - Add the ability to set a logo at the top of the user list [Ray; #658062]
  - Add fingerprint reader support [Ray; #657823]
  - Add a power button offering the choice of Suspend/Restart/Power off
    [Ray; #657822]
  - Remove the option to view the current keyboad layout [Matthias; #659164]
  - Make Control-Alt-Tab work for full keyboard access [Ray; #659177]
* Frequently initiate a full garbage collection; Spidermonkey isn't very good
  at tracking the amount of resources we have allocated so this hopefully will
  improve memory usage without affecting performance too much [Colin; #659254]
* Stop adding a notification when the network connection is lost
  [Colin; #658954]
* When disabling notifications; display a notification
  "Your chat status will be set to busy" [Florian; #652718]
* Fix keynav in network dialogs [Florian; #659133]
* Improve calendar styling [Sean; #641135, #651299]
* Shrink padding around panel buttons for narrow screens [Dan; #651299]
* Allow enabling the onscreen keyboard through the accessibility menu
  [Dan; #612662]
* Fix problem that was causing VPN secret dialogs to be delayed before showing
  [Florian; #658484]
* Make custom-keybindings for the window switcher that don't use alt
  work correctly [Florian; #645200]
* Fix duplicate application icons in the Activities Overview [Colin; #659351]
* Bug fixes for dimming windows with attached modal dialogs
  [Jasper, Owen; #659302, 659634]
* Add build-time support for BROWSER_PLUGIN_DIR environment variable
  [Vincent; #659123]
* Build fixes [Vincent; #659194]
* Code cleanups and test cases
  [Adel, Dan, Florian, Jasper; #651299, #658092, #658939]
* Misc bug fixes
  [Adel, Colin, Cosimo, Dan, Florian, Giovanni, Jasper, Ray, Xavier;
  #651299, #652837, #657249, #658004, #658150, #658239, #658469, #658598,
  #658605, #659050, #659159, #659210, #659270, #659370, #659633]

Contributors:
 Giovanni Campagna, Cosimo Cecchi, Xavier Claessens, Matthias Clasen,
 Rui Matos, Florian Müllner, Jasper St. Pierre, Owen Taylor,
 Vincent Untz, Colin Walters, Sean Wilson, Dan Winship

Translations:
 Ihar Hrachyshka [be], Alexander Shopov, Ivaylo Valkov [bg],
 Mario Blättermann [de], Jorge González, Daniel Mustieles [es],
 Arash Mousavi [fa], Ville-Pekka Vainio [fi], Fran Dieguez [gl],
 Sweta Kothari [gu], Gabor Kelemen [hu], Jiro Matsuzawa [ja],
 Luca Ferretti [it], Rudolfs Mazurs [lv], Kjartan Maraas [nb], A S Alam [pa],
 Piotr Drąg [pl], Duarte Loreto [pt], Yuri Myasoedov [ru],
 Daniel Nylander [se], Matej Urbančič [sl], Miroslav Nikolić [sr, sr@latin],
 Michal Štrba [sv], Tirumurti Vasudevan [ta], Phương Lê Hoàng [vi],
 Aron Xu [zh_CN], Chao-Hsiung Liao [zh_HK, zh_TW]

3.1.91.1
========

* Add a browser plugin - this plugin, tied to extensions.gnome.org,
  allows users to download and install shell extensions, and enable,
  disable, and uninstall extensions they already have installed.
  [Jasper; #658070, #658612]
* Improve adding links to URLs in notifications [Dan; #636252]
* Remove "connection lost" notifications after reconnecting [Giovanni; #658049]
* Hide the onscreen keyboard when leaving a text entry [Dan; #658591]
* Fixes for translated strings [Florian; #639987, #644097, #645037]
* Bug fixes for network menu [Florian; #658492]
* Code cleanup [Dan; #646934]
* Build fixes [Javier, Rico]
* Misc bug fixes [Emmanuele, Florian, Jasper, Marina, Matthias, Ray;
  #652837, #658423, #658503, #658525, #658562, #658624, #658640, #658983]

Conributors:
 Emmanuele Bassi, Giovanni Campagna, Matthias Clasen, Javier Jardón,
 Florian Muellner, Jasper St. Pierre, Ray Strode, Rico Tzschichholz,
 Dan Winship, Marina Zhurakhinskaya

Translations:
 Ihar Hrachyshka [be], Bruce Cowan [en_GB], Jorge González,
 Daniel Mustieles [es], Timo Jyrinki [fi], Bruno Brouard, Luc Guillemin,
 Claude Paroz, Luc Pionchon [fr], Fran Dieguez [gl], Rajesh Ranjan [hi],
 Andika Triwidada [id], Luca Ferretti [it], Changwoo Ryu [ko],
 Rudolfs Mazurs [lt], Kjartan Maraas [nb], Manoj Kumar Giri [or],
 A S Alam [pa], Piotr Drąg [pl], Duarte Loreto [pt], Henrique P. Machado,
 Gabriel F. Vilar [pt_BR], Daniel Nylander [se], Matej Urbančič [sl],
 Tirumurti Vasudevan [ta], Yinghua Wang [zh_CN],
 Chao-Hsiung Liao [zh_HK, zh_TW]

3.1.91
======

* Fix problem with applications vanishing from alt-Tab when
  desktop files change. [Colin; #657990]
* Fix interaction of on-screen keyboard with run-dialog and
  Looking Glass console [Dan; #657986]
* Add public API for adding and removing search providers
  [Philippe; #657548, #658113]
* Allow changing IM status with scroll wheel [Florian; #657973]
* Limit volume slider to 100% [Bastien; #657607]
* Change "Do Not Disturb" to "Notifications" in user menu [Florian; #652718]
* Switch browser in default favorites to Epiphany [Colin; #650616]
* Misc bug fixes [Dan, Florian, Jasper, Marc-Antoine, Rui;
  #649631, #655069, #656142, #657703, #657759, #658007, #658065, #658176]

Contributors:
 Rui Matos, Florian Müllner, Philippe Normand, Marc-Antoine Perennou,
 Jasper St. Pierre, Colin Walters, Dan Winship

Translations:
 Ihar Hrachyshka [be], Mario Blättermann [de], Kris Thomsen [da],
 Jorge González [es], Arash Mousavi [fa], Fran Dieguez [gl],
 Takayuki Kusano [ja],Aurimas Černius [lt], Kjartan Maraas [nb], A S Alam [pa],
 Stas Solovey [ru], Daniel Nylander [se], Tirumurti Vasudevan [ta],
 Chao-Hsiung Liao [zh_HK, zh_TW]

3.1.90.1
========

* Fix typo that was breaking the "Login Screen" mode [Marc-Antoine]
* Fix build with new gobject-introspection [Dan]
* Use a better icon for removable devices [Cosimo; #657757]
* Add support for asynchronous search provides [Philippe, Jasper, Seif; #655220]
* Misc bug fixes [Alex, Guillaume, Jasper; #657657, #657696]
* Misc build fixes [Adel; #657697]

Contributors:
 Cosimo Cecchi, Guillaume Desmottes, Adel Gadllah, Alexander Larsson, Seif Lotfy,
 Philippe Normand, Marc-Antoine Perennou, Jasper St. Pierre, Dan Winship

Translations:
 Jorge González, Daniel Mustieles [es], Stas Solovey [ru]

3.1.90
======
* Add an on-screen keyboard that uses Caribou as a backend
  [Nohemi, Dan; #612662]
* Allow searching for people in the overview using libfolks
  as the backend [Morten; #643018]
* Add a "Login Screen" mode to be used when GDM is running; this
  mode has a stripped down user interface, and also contains the
  code to display the user list and authentication. [Ray; #657082]
* Rework user menu to separate out "Do Not Disturb" from the IM
  status and to visually match GNOME Contacts. [Florian; #652837]
* Implement displaying images such as cover-art in notifications
  [Neha, Marina; #621009]
* Support default actions for notifications [Florian; #655818]
* Networking
  - Stop using nm-applet for dialogs; do them as proper system modal
    dialogs in the shell code. [Giovanni; #650244]
  - Fix handling of hidden access points [Giovanni; #646454]
* Telepathy integration
  - Support subscription requests [Guillaume, Xavier; #653941]
  - Notify on account connection errors [Alban, Jasper, Xavier; #654159]
  - Allow approving file transfers [Guillaume; #653940]
  - Improve styling of messages [Jasper; #640271]
* Extension system [Jasper; #654770]
  - Support live enabling and disabling of extensions
  - Add the ability to install extensions from HTTP
  - Enhance D-Bus interface for controlling extensions
  - Collect errors separately for each extension
* Add Main.panel.addToStatusArea for extension convenience
  [Giovanni, Jasper, Marc-Antoine; #653205]
* Port to the new gnome-menus API. Clean up and speed up
  application information loading [Colin; #648149, #656546]
* Use the accountsservice library rather than cut-and-pasted GDM code
  [Florian; #650893]
* Add a D-Bus interface to take a screenshot; this will avoid various race
  conditions with the current gnome-screenshot approach [Adel; #652952]
* Show numeric indicators to distinguish duplicate keyboard names
  [Giovanni; #650128]
* Add GNOME Documents to the favorites list [Adel; #657520]
* Update the clock immediately on resume from suspend [Colin; #656403]
* Remove animation support from StAdjustment [Ray; #657082]
* Support configuration of calendar applications via gsettings
  [Tassilo; #651190]
* Don't fade in alt-Tab - wait a bit and show it instantly [Rui; #652346]
* Darken workspace background on all workspaces [Rui; #656433]
* Improve detection of the starting day of the week [Florian; #649078]
* Add StButtonAccessible [Alejandro]
* Visual tweaks to match mockups
  [Allan, Dan, Jasper, Marina; #640271, #655627, #655428, #656732]
* Misc bug fixes [Dan, Florian, Giovanni, Guillaume, Jasper, Jeremy, Rui;
  #645708, #646761, #653119, #654398, #656125, #654707, #654898, #654638,
  #656335, #657111]
* Code cleanups [Colin, Dan, Guillaume, Ray;
  #652718, #654639, #648651, #655813, #657082]
* String tweaks [Jasper, Jeremy; #652984, #640271]
* Build fixes [Jasper, Nohemi; #644275, #655812]

Contributors:
 Jeremy Bicha, Giovanni Campagna, Xavier Claessens, Alban Crequy,
 Guillaume Desmottes, Allan Day, Neha Doijode, Nohemi Fernandez,
 Tassilo Horn, Rui Matos, Morten Mjelva, Florian Müllner, Alejandro Piñeiro,
 Jasper St. Pierre, Ray Strode, Colin Walters, Dan Winship,
 Marina Zhurakhinskaya

Translations:
 Ivaylo Valkov [bg], Mario Blättermann [de], Diego Escalante Urrelo,
 Jorge González, Daniel Mustieles [es], Arash Mousavi [fa], Fran Dieguez [gl],
 Yaron Shahrabani [he], Andika Triwidada, Wibiharto [id],
 Aurimas Černius [lt], Umarzuki Bin Mochlis Moktar [ml], Kjartan Maraas [nb],
 A S Alam [pa], Daniel Nylander [se], Ngô Chin, Nguyễn Thái Ngọc Duy [vi],
 Aron Xu [zh_CN], Chao-Hsiung Liao [zh_HK, zh_TW]

3.1.4
=====
* Take over inserted media handling and autorun from gnome-session [Cosimo]
* Message Tray
  - Display a count of unread notifications on icons
    [Jasper, Guillaume; #649356, #654139]
  - Only remove icons when the sender quits from D-Bus, not when it
    closes its last window [Neha, Marina; #645764]
  - Solve problems switching chats between shell and Empathy
    [Guillaume; #654237]
  - Fix handling of bad GMarkup in messages [Dan; #650298]
  - Never show notifications when the screensaver is active [Dan; #654550]
* Telepathy integrationpp
  - Implement Telepathy Debug interface to enable empathy-debugger
    [Guillaume; #652816]
  - Allow approving room invitations, and audio/video calls
    [Guillaume; #653740 #653939]
  - Send typing notifications [Jonny; #650196]
* Fix selection highlighting for light-on-dark entries [Jasper; #643768]
* Make control-Return in the overview open a new window [Maxim]
* Delay showing the alt-Tab switcher to reduce visual noise when
  flipping betweeen windows [Dan; #652346]
* When we have vertically stacked monitors, put the message tray
  on the bottom one [Dan; #636963]
* Fix various problems with keynav and the Activities button
  [Dan; #641253 #645759]
* Ensure screensaver is locked when switching users [Colin; #654565]
* Improve extension creation tool [Jasper; #653206]
* Fix compatibility with latest GJS [Giovanni; #654349]
* Code cleanups [Adel, Dan, Jasper; #645759 #654577 #654791 #654987]
* Misc bug fixes [Richard, Dan, Florian, Giovanni, Jasper, Marc-Antoine, Rui;
  #647175 #649513 #650452 #651082 #653700 #653989 #654105 #654791 #654267
  #654269 #654527 #655446]
* Build fixes [Florian, Siegfried; #654300]

Contributors:
 Giovanni Campagna, Cosimo Cecchi, Guillaume Desmottes, Neha Doijode,
 Maxim Ermilov, Adel Gadllah, Siegfried-Angel Gevatter Pujals, Richard Hughes,
 Jonny Lamb, Rui Matos, Florian Müllner, Marc-Antoine Perennou, Colin Walters,
 Dan Winship, Marina Zhurakhinskaya

Translations:
 Mario Blättermann, Paul Seyfert [de], Jorge González, Daniel Mustieles [es],
 Fran Dieguez [gl], Yaron Shahrabani [he], Luca Ferretti [it],
 Rudolfs Mazurs [lv], Kjartan Maraas [nb], A S Alam [pa], Yuri Kozlov [ru],
 Michal Štrba, Matej Urbančič [sl]

3.1.3
=====
* Fix problem with "user theme extension" breaking the CSS for other
  extensions [Giovanni; #650971]
* Telepathy IM framework integration
  - Switch to using telepathy-glib rather than talking to
    Telepathy via D-Bus [Guillaume, Jasper; #645585, #649633, #651138, #651227]
  - Acknowledge messages when the user clicks on them [Guillaume, #647893]
  - Fix problem with telepathy icon blinking for incoming messages
    even though the user has been notified of them [Guillaume; #643594]
* Networking
  - keep wirelesss networks in predictable order [Giovanni; #646580, #652313]
  - Show unmanaged devices in the menu [Giovanni; #646946]
  - Fix overflow when too many VPN connections [Giovanni; #651602]
* Bluetooth
  - Show "hardware disabled" when disabled by rfkill [Giovanni; #648048]
  - Fix bug updating status of devices [Giovanni; #647565]
* LookingGlass console:
  - Add a "Memory" tab [Colin; #650692]
  - Make escape work from any page [Dan Winship; #647303]
  - Provide a way to refer to panel items as, e.g.,
    Main.panel._activities [Dan Winship; #646915]
* User menu
  - Fix problem with suspend menu option locking the screen even when the user
    disabled that. [Florian; #652327]
  - Hide "power off..." option if shutdown is disabled via PolicyKit
    [Florian; #652038]
* Track changes to WM_CLASS (fixes problems with LibreOffice tracking)
  [Colin; #649315]
* Remove app tracking workarounds for Firefox and LibreOffice [Colin; #651015]
* Use upstream gettext autoconfigury rather than glib version [Javier; #631576]
* Show messages in the message tray when an application is fullscreen
  [Dan Winship; #608667]
* Don't autohide the workspace pager if there is more than one workspace
  [Florian; #652714, #653078, #653142]
* Don't always slide out the workspace pager at drag begin [Florian; #652730]
* Only offer to remove a favorite app when dragging it's icon [Owen; #642895]
* Allow dropping an icon anywhere on a workspace [Adel; #652079]
* st-scroll-view: Make the fade effect and offset themable [Jasper; #651813]
* Obey the user's preference when running an application in a terminal
  from the run dialog [Florian; #648422]
* Consistently exit overview when launching external applications
  [Colin; #653095]
* Adapt to changes in GJS for how GObject APIs are bound
  [Alex, Colin, Florian, Jasper, Marc-Antoine; #649981, #652597]
* Fix problems with scrolling in overflow for alt-Tab switcher
  [Dan Winship, Adel; #647807]
* Mark relationships between labels and actors for accessibility [Alejandro]
* Add org.gnome.shell.enabled-extensions complementing disabled-extensions
  GSetting [Tassilo; #651088]
* Visual tweaks [Jakub, Jasper; #646261, #652715]
* Switch to building against clutter-1.7 with independent Cogl [Adel; #653397]
* Code cleanups [Colin, Dan Winship, Florian; #633620, #645031, #648755, #648758,
  #648760, #649203, #649517, #650317, #652730]
* Memory leak fixes [Colin, Maxim; #649508, #650934]
* Build Fixes [Colin, Dan Winship, Florian, Ionut, Morten, Owen, Sean; #647395,
  #648006, #650869, #653199, #653275
* Miscellaneous bug fixes [Adam, Adel, Dan Williams, Dan Winship, Florian,
  Ionut, Jasper, Maxim, Ray; #620105, #639459, #641570, #642793, #643513,
  #645848, #646919, #647186, #648305, #648410, #648562, #648894, #649001,
  #645990, #647893, #647907, #651012, #651086, #651606, #651569, #651866,
  #652388,  #653511]

Contributors:
 Ionut Biru, Giovanni Campagna, Guillaume Desmottes, Adam Dingle,
 Maxim Ermilov, Adel Gadllah, Tassilo Horn, Javier Jardón, Jonny Lamb,
 Alexander Larsson, Rui Matos, Morten Mjelva, Florian Müllner,
 Marc-Antoine Perennou, Alejandro Piñeiro, Jasper St. Pierre, Jakub Steiner,
 Ray Strode, Owen Taylor, Colin Walters, Dan Williams, Sean Wilson, Dan Winship

Translations:
 Daniel Martinez Cucalon [ar], Ihar Hrachyshka [be], Carles Ferrando,
 Gil Forcada, Sílvia Miranda [ca], Kristjan Schmidt [eo], Jorge González,
 Daniel Mustieles [es], Seán de Búrca [ga], Fran Diéguez [gl],
 Yaron Shahrabani [he], Kjartan Maraas [nb], Misha Shnurapet,
 Yuri Myasoedov [ru], Daniel Nylander [se], Peter Mráz [sk],
 Matej Urbančič [sl], Krishnababu Krothapalli [te], Daniel Korostil [uk],
 Aron Xu [zh_CN]

3.0.2
=====
* Network Menu [Dan Williams]
  - Fix connecting to WPA2 Enterprise access points
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=648171
  - Show the mobile broadband wizard when selecting 3G network
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=649318
  - Miscellaneous bug fixes
    648648, 650124
* Fix duplicate icons in the application browser [Owen]
  https://bugzilla.gnome.org/show_bug.cgi?id=648739
* Make clicking anywhere on the volume icon slider work [Giovanni]
  https://bugzilla.gnome.org/show_bug.cgi?id=646660
* Fix a case where activating and clicking the hot corner
  at the same time could result in immediately leaving the
  overview [Rui]
  https://bugzilla.gnome.org/show_bug.cgi?id=649427
* Fix a case where applications became misordered in Alt-Tab [Jasper]
  https://bugzilla.gnome.org/show_bug.cgi?id=643302
* Fix a bug where messages you send could show up in
  notifications as if someone else sent them [Jonny]
  https://bugzilla.gnome.org/show_bug.cgi?id=650219
* Memory leak fixes [Colin, Maxim]
  642652, 649508, 649497
* Miscellaneous minor bug fixes [Adel, Christopher, Jasper]
  649596, 648765, 648983, 649632

Contributors:
 Christopher Aillon, Giovanni Campagna, Maxim Ermilov,
 Adel Gadllah, Jonny Lamb, Rui Matos, Jasper St. Pierre,
 Owen Taylor, Colin Walters, Dan Williams

Translations:
 Arash Mousavi [fa], Seán de Búrca [ga], Timo Jyrinki [fi],
 Sigurd Gartmann [nb], Daniel Nylander [se], Peter Mráz [sl],
 Abduxukur Abdurixit [ug], Nguyễn Thái Ngọc Duy [vi]

3.0.1
=====

* Network menu
  - Fix problems updating the menu for mobile broadband devices [Giovanni]
    https://bugzilla.gnome.org/show_bug.cgi?id=646395
  - Fix missing device descriptions with multiple devices of the
    same type [Giovanni]
    https://bugzilla.gnome.org/show_bug.cgi?id=646074
  - Label ad-hoc neworks with an appropriate icon [Dan]
    https://bugzilla.gnome.org/show_bug.cgi?id=646141
  - Fix displaying some devices states as "invalid" [Dan]
    https://bugzilla.gnome.org/show_bug.cgi?id=646946
  - Fix problems with access points that don't report a SSID [Giovanni]
    https://bugzilla.gnome.org/show_bug.cgi?id=647040
  - Miscellaneous minor bug fixes [Dan, Giovanni, Owen]
    645981, 646558, 646443, 646708, 646968
* Application menu and icon
  - Fix bug where application menu icon was missing at GNOME Shell
    startup. [Florian]
    https://bugzilla.gnome.org/show_bug.cgi?id=644122
  - Fix missing application menu for dialog windows [Colin]
    https://bugzilla.gnome.org/show_bug.cgi?id=647082
 -  When launching an application through an alternate launcher
    (like for a System Settings pane), association the windows with
    the application, not the launcher. [Colin]
    https://bugzilla.gnome.org/show_bug.cgi?id=646689
* Activities overview
  - Load the applications view incrementally to avoid potentially freezing
    for multiple seconds [Colin]
    https://bugzilla.gnome.org/show_bug.cgi?id=647778
  - Fix bug where package installation while the overview
    was up could result in a corrupted application display. [Giovanni]
    https://bugzilla.gnome.org/show_bug.cgi?id=645801
  - Fix dragging from the search results to launch apps and docs [Florian]
    https://bugzilla.gnome.org/show_bug.cgi?id=645990
  - Fix flickering of selection when searching in the overview [Florian]
    https://bugzilla.gnome.org/show_bug.cgi?id=646019
  - Fix bug when typing into the search box when text was already
    selected [Nohemi]
    https://bugzilla.gnome.org/show_bug.cgi?id=636341
* Fix layout of notifications for right-to-left languages [Florian]
  https://bugzilla.gnome.org/show_bug.cgi?id=646921
* Remove a confusing special case where Alt-Tab sometimes switched
  to a different window of the same application rather than to
  a different application. [Rui]
  https://bugzilla.gnome.org/show_bug.cgi?id=648132
* Fix a crash that could happen when a window was opened on a
  workspace that was immediately removed [Dan]
  https://bugzilla.gnome.org/show_bug.cgi?id=648132
* Fix keyboard navigation in logout/reboot dialogs [Dan]
  https://bugzilla.gnome.org/show_bug.cgi?id=646740
* Fix missing inspector icon in Looking Glass console [Dan]
* Miscellaneous minor bug fixes [Adel, Colin, Dan, Florian, Nohemi]
  645648, 646205, 646257, 646855, 647098, 646730

Contributors:
 Giovanni Campagna, Nohemi Fernandez, Adel Gadllah, Rui Matos, Florian Müllner,
 Owen Taylor, Colin Walters, Dan Winship

Translations:
 Hendrik Richter [de], Jorge González [es], Arash Mousavi [fa],
 Fran Diéguez [gl], Jiro Matsuzawa [ja], Piotr Drąg [pl], Daniel Nylander [sv],
 Sira Nokyoongtong [th], Muhammet Kara [tr], Nguyễn Thái Ngọc Duy [vi],
 Aron Xu [zh_CN], Chao-Hsiung Liao [zh_HK, zh_TW]

3.0.0.2
=======

* Fix missing import that was preventing extensions from loading.
  [Maxim Ermilov]
  https://bugzilla.gnome.org/show_bug.cgi?id=646333

Translations:
 Timo Jyrinki [fi]

3.0.0.1
=======

* Fix problem with stuck event handling if network menu pops down while
  user is using the scrollbar. [Owen Taylor]
  https://bugzilla.gnome.org/show_bug.cgi?id=646825

Contributors to GNOME Shell 3.0
===============================

Code:

 Josh Adams, Kiyoshi Aman, Nuno Araujo, Emmanuele Bassi, Dirk-Jan C. Binnema,
 Wouter Bolsterlee, Raphael Bosshard, Milan Bouchet-Valat, Christina Boumpouka,
 Mathieu Bridon, Alban Browaeys, Phil Bull, Micro Cai, Giovanni Campagna,
 Cosimo Cecchi, Tor-björn Claesson, Matthias Clasen, Jason D. Clinton,
 Frederic Crozat, Guillaume Desmottes, Sander Dijkhuis, Neha Doijode,
 Maxim Ermilov, Diego Escalante Urrelo, Luca Ferretti, Steve Frécinaux,
 Takao Fujiwara, Adel Gadllah, Vadim Girlin, Nick Glynn, Guido Günther,
 Leon Handreke, Lex Hider, Richard Hughes, Javier Jardón, Abderrahim Kitouni,
 Andre Klapper, Alexander Larsson, Nickolas Lloyd, Ryan Lortie, Kjartan Maraas,
 Koop Mast, Rui Matos, Jonathan Matthew, William Jon McCann, Morten Mjelva,
 Federico Mena Quintero, Florian Müllner, Jon Nettleton, Hellyna Ng,
 Discardi Nicola, Carlos Martín Nieto, Bastien Nocera, Bill Nottingham,
 Matt Novenstern, Marc-Antoine Perennou, Neil Perry, Frédéric Péters,
 Alejandro Piñeiro, Siegfried-Angel Gevatter Pujals, "res", Neil Roberts,
 "Sardem FF7", Florian Scandella, Joseph Scheuhammer, Christian Schramm,
 Gustavo Noronha Silva, Jasper St. Pierre, Eric Springer, Jakub Steiner,
 Jonathan Strander, Ray Strode, Owen Taylor, Rico Tzschichholz,
 Sergey V. Udaltsov, Daiki Ueno, Vincent Untz, Marcelo Jorge Vieira,
 Mads Villadsen, Colin Walters, Dan Winship, William Wolf, Thomas Wood,
 Pierre Yager, David Zeuthen, Marina Zhurakhinskaya

Design:

 Allan Day, William Jon McCann, Jeremy Perry, Jakub Steiner
 2008 Boston GNOME design hackfest participants (especially Neil J. Patel
 for turning the resulting sketches into our first mockups.)
 Everybody on irc.gnome.org:#gnome-design

Translations:

 Friedel Wolff (af), Khaled Hosny (ar), Ivaylo Valkov (bg), Jamil Ahmed (bn)
 Runa Bhattacharjee (bn_IN), Gil Forcada, Siegfried-Angel Gevatter Pujals,
 Jordi Serratosa (ca), Andre Klapper, Petr Kovar (cs), Kenneth Nielsen,
 Kris Thomsen (da), Mario Blättermann, Hendrik Brandt, Christian Kirbach,
 Hendrik Richter, Wolfgang Stöggl (de), Michael Kotsarinis, Kostas Papadimas,
 Jennie Petoumenou, Sterios Prosiniklis, Fotis Tsamis, Simos Xenitellis (el),
 Bruce Cowan, Philip Withnall (en_GB), Jorge Gonzalez, Daniel Mustieles (es),
 Mattias Põldaru, Ivar Smolin (et), Inaki Larranaga Murgoitio (eu),
 Mahyar Moghimi (fa), Timo Jyrinki (fi), Cyril Arnaud, Bruno Brouard,
 Pablo Martin-Gomez, Claude Paroz, Frédéric Peters (fr), Seán de Búrca (ga)
 Francisco Diéguez, Antón Méixome (gl), Sweta Kothari (gu), Liel Fridman,
 Yaron Shahrabani (he), Rajesh Ranjan (hi), Gabor Kelemen (hu), Milo Casagrande,
 Luca Ferretti (it), Dirgita, Andika Triwidada (id), Takayuki KUSANO,
 Takayoshi OKANO, Kiyotaka NISHIBORI, Futoshi NISHIO (ja), Shankar Prasad (kn),
 Young-Ho Cha, Changwoo Ryu (ko), Žygimantas Beručka, Gintautas Miliauskas (lt),
 Rudolfs Mazurs (lv), Sandeep Shedmake (mr), Kjartan Maraas (nb),
 Wouter Bolsterlee, Sander Dijkhuis, Reinout van Schouwen (nl),
 Torstein Winterseth (nn), A S Alam (pa), Tomasz Dominikowski, Piotr Drąg (pl),
 Duarte Loreto (pt), Felipe Borges, Rodrigo Padula de Oliveira,
 Rodrigo L. M. Flores, Amanda Magalhães, Og B. Maciel, Gabriel F. Vilar,
 Jonh Wendell (pt_BR), Lucian Adrian Grijincu, Daniel Șerbănescu (ro),
 Sergey V. Kovylov, Andrey Korzinev, Yuri Myasoedov, Marina Zhurakhinskaya (ru),
 Daniel Nylander (se), Matej Urbančič, Andrej Žnidaršič (sl),
 Miloš Popović (sr, sr@latin), Miroslav Nikolić (sr), Tirumurti Vasudevan (ta),
 Sira Nokyoongtong (th), Baris Cicek (tr), Abduxukur Abdurixit,
 Gheyret T. Kenji (ug), Maxim V. Dziumanenko, Daniel Korostil (uk),
 Nguyễn Thái Ngọc Duy (vi), Jessica Ban, 'jiero', Wei Li, YunQiang Su, Ray Wang,
 Aron Xu (zh_CN), Chao-Hsiung Liao (zh_HK, zh_TW)