~ubuntu-branches/ubuntu/trusty/gnome-shell/trusty-proposed

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
3.6.3.1
=======
* Fix regression in reentrancy fix for 3.6.3 [Giovanni; #689295]

Contributors:
  Giovanni Campagna

Translations:
  Rafael Ferreira [pt_BR]

3.6.3
=====
* recorder: Set frame duration to fix broken video headers [Adel; #688487]
* Block cancellation of unlock dialog during drags [Giovanni; #686800]
* Honor lock-delay GSettings key [Giovanni, Matthias; #690766, #691170]
* Fix reentrancy problem causing the tray to disappear [Giovanni; #683986]

Contributors:
  Giovanni Campagna, Matthias Clasen, Adel Gadllah,

Translations:
  Mattias Põldaru [et], Sandeep Sheshrao Shedmake [mr], Wouter Bolsterlee [nl],
  Rajesh Ranjan [hi], Nilamdyuti Goswami [as], Ani Peter [ml],
  Andika Triwidada [id], Krishnababu Krothapalli [te], Shankar Prasad [kn],
  Dr.T.Vasudevan [ta], Runa Bhattacharjee [bn_IN], Rafael Ferreira [pt_BR],
  Balázs Úr [hu], Gheyret Kenji [ug], Yasumichi Akahoshi [ja], Yoji TOYODA [ja],
  Alexandre Franke [fr]

3.6.2
=====
* Implement org.gnome.ScreenSaver.GetActiveTime [Giovanni; #686064]
* Explicitly load gnome-screensaver when not running GDM [Tim; #683060]
* Set Empathy as preferred handler when delegating channels [Xavier; #686296]
* Tweak screenShield animations [Rui; #686745]
* Restore Fittsability of summary items in message tray [Florian; #686474]
* App search: Match GenericName too [Matthias; #687121]
* Add setting to force log out menuitem [Matthias; #686057]
* Fix auto-scroll to bottom in chat notifications [Sjoerd; #686571]
* Update man page [Matthias; #680601]
* Hide notifications when closed button is clicked [Jasper, Florian; #682237]
* Fix screenshots on Big Endian [Owen; #685915]
* Implement 'disable-user-list' in login screen [Ray; #660660]
* Misc bugfixes [Jasper, Florian, Giovanni, Matthew, Matthias, Alejandro,
  Sebastian; #686233, #686484, #686487, #686630, #686728, #686574, #686574,
  #686574, #686879, #686763, #685239, #687189, #686736, #686583, #687132,
  #687958, #687020, #687708, #686888, #686530, #684810, #688181]

Contributors:
  Matthew Barnes, Giovanni Campagna, Xavier Claessens, Matthias Clasen,
  Sebastian Keller, Tim Lunn, Rui Matos, Florian Müllner, Alejandro Piñeiro,
  Sjoerd Simons, Jasper St. Pierre, Ray Strode, Owen Taylor

Translations:
  Takayuki KUSANO [ja], Dušan Kazik [sk], Mattias Põldaru [et],
  Tom Tryfonidis [el], Sweta Kothari [gu], Matej Urbančič [sl], Piotr Drąg [pl],
  Fran Diéguez [gl], Aurimas Černius [lt], Kjartan Maraas [nb],
  Ihar Hrachyshka [be], Мирослав Николић [sr, sr@latin], Gil Forcada [ca],
  A S Alam [pa], Yuri Myasoedov [ru], Marek Černocký [cs], Sweta Kothari [gu],
  Wolfgang Stöggl [de], Daniel Mustieles [es]

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)