-
Notifications
You must be signed in to change notification settings - Fork 182
/
NEWS
6149 lines (5528 loc) · 299 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
47.0
====
* Fix new wifi connections for restricted users [Thore; !3462]
* Do not disable required animations [Alessandro; !2986]
* Fix showing pending PAM messages on login screen [Marco; !3466]
* Misc. bug fixes and cleanups [Alessandro, Balló, Sundeep, Martin, Peter,
Florian; !3446, !3374, !3439, !3464, !3465]
Contributors:
Alessandro Bono, Balló György, Peter Hutterer, Martin Abente Lahaye,
Sundeep Mediratta, Florian Müllner, Thore Sommer, Marco Trevisan (Treviño)
Translators:
Aefgh Threenine [th], Irénée THIRION [fr], twlvnn kraftwerk [bg],
Alexander Shopov [bg], Daniel Mustieles [es], Aurimas Černius [lt],
Fran Dieguez [gl], Anders Jonsson [sv], Andi Chandler [en_GB],
Ask Hjorth Larsen [da], Rūdolfs Mazurs [lv], Balázs Úr [hu]
47.rc
=====
* Fix smartcard logins [Alessandro; !3448]
* Mark drag to dash as move operation [Daniel; !3453]
* Use rst2man to generate man pages [Florian; !3454]
* Fix glitch when quick settings menu animation is interrupted [Dylan; !2481]
* Plugged leak [Jonas; !3421]
* Misc. bug fixes and cleanups [Bilal, Florian, Sophie, Jonas; Martin; !3433,
!3441, !3443, !3447, !3450, !3451, !3449, !3455, !3456, !3452, !3458, !3459]
Contributors:
Jonas Ådahl, Alessandro Bono, Bilal Elmoussaoui, Sophie Herold,
Martin Abente Lahaye, Dylan McCall, Florian Müllner, Daniel Sheeler
Translators:
Balázs Úr [hu], Yosef Or Boczko [he], Giannis Antypas [el],
Daniel Șerbănescu [ro], Jordi Mas [ca], Ekaterine Papava [ka],
Asier Sarasua Garmendia [eu], Artur S0 [ru], Vasil Pupkin [be],
Rafael Fontenelle [pt_BR], Jordi Mas i Hernandez [ca], Yuri Chornoivan [uk],
Luming Zh [zh_CN], Jose Riha [sk], Jiri Grönroos [fi], Jürgen Benvenuti [de],
Brage Fuglseth [nb], Daniel Rusek [cs], Danial Behzadi [fa],
Quentin PAGÈS [oc], Changwoo Ryu [ko], Hugo Carvalho [pt], Piotr Drąg [pl],
Andika Triwidada [id], Baurzhan Muftakhidinov [kk], Sabri Ünal [tr]
47.beta
=======
* Use hardware encoding for screen recordings if possible [Jonas D.; !2080]
* Allow notification portal to always use GTK protocol [Julian; !3382]
* Improve Persian on-screen keyboard layout [Sohrab; !3409]
* Build and publish GNOME OS systemd-sysext extensions [Martin; !3390]
* Make overview startup notification more reliable [Will; !3422, !3428]
* Fix keyboard navigation in app folders [sorelz; !3338]
* Support exporting DebugControl service from looking glass [Sebastian; !3425]
* Use low-power pipeline in screen recorder if possible [José; !3416]
* Show notification when detecting captive portal [Florian; !3408]
* Fix connecting to WPA2 enterprise networks [Tuomas; !3426]
* Use unlinked rounded buttons in notifications and dialogs [Sam; !3383, !3427]
* Misc. bug fixes and cleanups [Jonas Å., Florian, Sam, Bilal, kramo, Julian,
sorelz, Sebastian; !3363, !3411, !3413, !3414, !3412, !3402, !3423, !3420,
!3415, !3410, !3168, !3387, !3424, !3432, !3431, !3430]
Contributors:
Jonas Ådahl, Sohrab Behdani, Jonas Dreßler, Bilal Elmoussaoui, Sam Hewitt,
kramo, Martin Abente Lahaye, Florian Müllner, Tuomas Nurmi, José Relvas,
sorelz, Julian Sparber, Will Thompson, Sebastian Wick
Translators:
Ekaterine Papava [ka], Scrambled 777 [hi], Sabri Ünal [tr], Martin [sl],
Chao-Hsiung Liao [zh_TW], Daniel Rusek [cs], Emin Tufan Çetin [tr]
47.alpha
========
* Fix size of workspace switcher OSD [Jakub; !3282]
* Fix handling of invalid TLS certs in portal handler [Sebastian K.; !3284]
* Exclude override-redirect windows from workspace animation [Marco; !3285]
* Also center time on lock screen when using 12h format [pesader; !3290]
* Use absolute tray icon position in root event coordinates [Marco; !3283]
* Fix displaying info messages on login screen [Ray; !3298]
* Correct expected bus name for streams [Simon; !3303]
* Fix notifications on lock screen [Florian; !3308]
* notifications: Only apply special styling to symbolic icons [Florian; !3296]
* Use three or more fingers for touchpad gestures [Gregor; !3275]
* Fix number of search results with Large Text option [Sam H.; !3312]
* Make overview spacings dynamic [Jonas D.; !3278]
* Fix showing keyboard layouts with variants [Sebastian K.; !3324]
* Tweak font sizes in calendar [Sam H.; !3313]
* automountManager: Fix re-asking password for TCRYPT devices [segfault; !3300]
* Port unit tests to jasmine [Sam S., Florian; !3164]
* Fix stuck unlock prompt when animations are disabled [Florian; !3317]
* Add extended on-screen keyboard layout for 'za' [Michael; !3309]
* Fix possible hang on startup during ibus-daemon launch [Marco; !3293]
* Allow fillPreferencesWindow() to be asyn [Leleat; !3348]
* Fix on-screen keyboard when windows are unredirected [Carlos; !3356]
* Switch to paint nodes [Georges; !1538]
* Stop using SVG assets for checks and switches [Alice, Daniel; !2717]
* Support accent color [Alice; !2715]
* Fix rendering artifacts of some rounded borders [Jonas D.; !3354]
* Fix overview animation glitch when windows overlap workspaces [Keyu; !3378]
* Support building with X11-less mutter [Bilal; !3362]
* Misc. bug fixes and cleanups [Monster, Sebastian W., Jamie, Florian, Gabriel,
pesader, Sebastian K., Automeris, Jonas Å., Sam H., Jonas D., Ray, Bilal,
Georges, Mister, Philip, Marco, Jakub, Jordan, Balló, Alessandro, Sundeep;
!3224, !3267, !3254, !3280, !3248, !3281, !3289, !3288, !3270, !3295, !3299,
!3310, !3315, !3322, !3326, !3321, !3319, !3329, !3327, !3314, !3320, !3331,
!3337, !3245, !3332, !3340, !3344, !3347, !3350, !3349, !3351, !3352, !3353,
!3355, !3358, !3357, !3359, !3307, !3323, !3365, !3366, !3367, !3369, !3370,
!3361, !3142, !3368, !3291, !3371, !3375, !3311, !3376, !3377, !3380, !3373,
!3385, !3386, !3396, !3398, !3403]
Contributors:
Jonas Ådahl, Daniel Ruiz de Alegría, Alessandro Bono, Jonas Dreßler,
Bilal Elmoussaoui, Michael Evans, Carlos Garnacho, Jamie Gravendeel,
Balló György, Sam Hewitt, Sebastian Keller, Leleat, Simon McVittie,
Sundeep Mediratta, Alice Mikhaylenko, Monster, Florian Müllner, Gabriel Nagy,
Automeris naranja, Georges Basile Stavracas Neto, Gregor Niehl, pesader,
Jordan Petridis, segfault, Mister Smör, Sam Spilsbury, Jakub Steiner,
Ray Strode, Keyu Tao, Marco Trevisan (Treviño), Sebastian Wick,
Philip Withnall
Translators:
Martin [sl], Andika Triwidada [id], Yuri Chornoivan [uk], Hugo Carvalho [pt],
Scrambled 777 [hi], Jose Riha [sk], Balázs Úr [hu], Quentin PAGÈS [oc],
Artur S0 [ru], Yosef Or Boczko [he]
46.1
====
* Improve notification of conflicting session [Joan; !3235]
* Add shift level to Korean OSK layout [Carlos; !3222]
* Fix markup support in notifications [Sebastian; !3247]
* extensions-app: Fix empty rows with '&' in extension name [Florian; !3266]
* extensions-app: Improve HIG compliance [Automeris; !3269, !3271]
* Omit expand buttons in notification banners [Julian; !3249]
* Misc. bug fixes and cleanups [dcz, Totto16, Sebastian, Florian;
!3262, !3253, !3260, !3234]
Contributors:
dcz, Carlos Garnacho, Sebastian Keller, Robert Mader, Florian Müllner,
Automeris naranja, Julian Sparber, Joan Torres, Totto16, Sebastian Wick
Translators:
Danial Behzadi [fa], Baurzhan Muftakhidinov [kk], Anders Jonsson [sv],
Aurimas Černius [lt], Yuri Chornoivan [uk], Daniel Rusek [cs],
Ekaterine Papava [ka], Asier Sarasua Garmendia [eu], Jiri Grönroos [fi],
Piotr Drąg [pl], Yaron Shahrabani [he], Brage Fuglseth [nb], A S Alam [pa],
Christian Kirbach [de], Milo Casagrande [it], Fran Dieguez [gl],
Jordi Mas i Hernandez [ca], Jordi Mas [ca], Sabri Ünal [tr],
Boyuan Yang [zh_CN], Athmane MOKRAOUI [kab], Vincent Chatelain [fr],
Милош Поповић [sr, sr@latin], Martin [sl], Nathan Follens [nl], Artur S0 [ru],
Juliano de Souza Camargo [pt_BR], Changwoo Ryu [ko], Jose Riha [sk],
Fabio Tomat [fur], Peter Vágner [sk], Andi Chandler [en_GB]
46.0
====
* Fix model selection in on-screen keyboard [Jonas; !3230]
* Fix key getting stuck when raising screen shield [Jonas; !3231]
* Fix notifications sometimes being empty [Julian; !3229]
* Fix cursor visibilty when magnified [Sebastian; !3237]
* Fixed crashes [Jonas, Sebastian; !3233, !3239]
* Misc. bug fixes and cleanups [Carlos, Yotam, Aleksandr, Florian, Joan, Sam;
!3225, !3161, !3232, !3226, !3236, !3203, !3238]
Contributors:
Yotam Bar-On, Jonas Dreßler, Carlos Garnacho, Sam Hewitt, Sebastian Keller,
Aleksandr Mezin, Florian Müllner, Julian Sparber, Joan Torres
Translators:
Sabri Ünal [tr], Yuri Chornoivan [uk], Piotr Drąg [pl], Jiri Grönroos [fi],
Ekaterine Papava [ka], Aurimas Černius [lt], Yaron Shahrabani [he],
Daniel Mustieles [es], Asier Sarasua Garmendia [eu], Guillaume Bernard [fr],
Jordi Mas i Hernandez [ca], Matej Urbančič [sl], Bruce Cowan [en_GB],
Baurzhan Muftakhidinov [kk], Brage Fuglseth [nb], Andika Triwidada [id],
Quentin PAGÈS [oc], Rūdolfs Mazurs [lv], Anders Jonsson [sv],
Fran Dieguez [gl], Milo Casagrande [it], Balázs Úr [hu], Philipp Kiemle [de],
Artur S0 [ru], Changwoo Ryu [ko], Ask Hjorth Larsen [da],
Athmane MOKRAOUI [kab]
46.rc
=====
* Fix repainting drawing area [Florian; !3190]
* Support locking down extension installation [Florian; !3180]
* Fix auto-closing FDO notifications [Florian; !3204]
* Ensure remote actions are activated with correct platform data [Julian; !3198]
* FDO notifications: Support ActivationToken signal [Julian; !3199]
* Delete selected text on backspace from on-screen keyboard [Sebastian; !2746]
* Various on-screen keyboard improvements [Carlos; !3162]
* Inform users of conflicting local/remote sessions on login [Joan; !3134]
* screencasts: Use h264 encoding if available [Jonas; !3211]
* Work around issue in NetworkManager's wireguard support [Jonas; !3219]
* Allow expanding notifications in message list [Julian; !3173]
* Fixed crash [Marco; !2267]
* Misc. bug fixes and cleanups [Paul, Florian, Carlos, Julian, Bilal, Automeris,
Ray, Sam, Daniel, Sophie; !3186, !3187, !3028, !3188, !3189, !3191, !3192,
!3147, !3195, !3197, !3196, !2765, !3200, !3202, !3201, !3206, !3208, !3213,
!3207, !3214, !3215, !3216, !3209, !3217, !3221]
Contributors:
Jonas Dreßler, Bilal Elmoussaoui, Carlos Garnacho, Sophie Herold, Sam Hewitt,
Paul Hollinsky, Sebastian Keller, Florian Müllner, Automeris naranja,
Julian Sparber, Ray Strode, Joan Torres, Marco Trevisan (Treviño),
Daniel van Vugt
Translators:
Ekaterine Papava [ka], Danial Behzadi [fa], Marek Černocký [cs],
Sabri Ünal [tr], Artur S0 [ru], Yuri Chornoivan [uk], Fran Dieguez [gl],
Vasil Pupkin [be], Asier Sarasua Garmendia [eu], Yaron Shahrabani [he],
Daniel Rusek [cs], Brage Fuglseth [nb], Emin Tufan Çetin [tr],
Nathan Follens [nl], Aurimas Černius [lt], Matej Urbančič [sl],
Daniel Mustieles [es], Quique Serrano [ca], Irénée THIRION [fr],
Kukuh Syafaat [id], Luming Zh [zh_CN], Jordi Mas i Hernandez [ca],
Bruce Cowan [en_GB], Quentin PAGÈS [oc], Baurzhan Muftakhidinov [kk],
Rūdolfs Mazurs [lv], Chao-Hsiung Liao [zh_TW], Guillaume Bernard [fr],
Jürgen Benvenuti [de], Philipp Kiemle [de], Jiri Grönroos [fi]
46.beta
=======
* Improve High Contrast styling
[Sam; !3063, !3075, !3076, !3097, !3143, !3120, !3154]
* Improve default styling [Sam; !3044, !3084, !3102, !3140, !3167]
* Close mount notification when drive gets disconnected [Florian; !3089]
* extensions-app: Remember window state [Florian; !3115]
* Fix feedback look in keyboard backlight slider [Barnabás; !3086]
* Follow "switch-shapes" accessibility setting [Florian; !3107]
* Fix effects of transient wayland windows [Florian; !3125]
* Add keyboard model configuration support [Leorize; !2583]
* Add Text Editor to the dash by default [Allan; !3135]
* Fix icon size regression in dash [Sam; !3119]
* Improve project and development documentation [Florian; !3122]
* overview: Keep dimming effect for modal dialogs [Florian; !3151]
* Do not use markup in button labels [Carlos; !3149]
* Fix menu alignment in RTL locales [Florian; !3150]
* Overhaul assets in monitor layout switcher [Sam; !3128]
* Fix overview transition from search results to session [Suryashankar; !3152]
* Add header to notifications [Julian; !3103]
* extensions-app: Use adaptive dialogs [Florian; !3148]
* Register custom D-Bus errors [Florian; !3159, !3160]
* Improve appearance of symbolic icons in notifications [Julian; !3066]
* Improve minimize animation [Keyu; !2968]
* Use a single source for all system notifications [Julian; !3156]
* Add missing shift level to Georgian OSK layout [Carlos; !3145]
* Tweak switch appearance [kramo; !3077]
* Improve handling of screencast failures [Jonas; !2976]
* Fixed crash [Florian; !3117]
* Misc. bug fixes and cleanups [Julian, Robert, Bilal, Florian, Georges, Sam,
Shmuel, Jonas, Andy, Evan, Óscar, Bilal; !3059, !2982, !3026, !3105, !3104,
!3106, !3109, !3110, !3112, !3111, !3113, !3114, !3118, !3121, !3098, !3123,
!3126, !3129, !3136, !3138, !3139, !3137, !3133, !3132, !3130, !3131, !3141,
!3146, !786, !2475, !2901, !2037, !3153, !3158, !3155, !3165, !3171, !3169,
!3127, !3172, !3157, !3170, !3175, !3176, !3178, !3177, !3181]
Contributors:
Suryashankar Das, Allan Day, Jonas Dreßler, Bilal Elmoussaoui,
Óscar Fernández Diaz, Carlos Garnacho, Sam Hewitt, Andy Holmes, kramo,
Leorize, Robert Mader, Shmuel Melamud, Florian Müllner,
Georges Basile Stavracas Neto, Barnabás Pőcze, Julian Sparber, Keyu Tao,
Evan Welsh
Translators:
Ekaterine Papava [ka], Artur S0 [ru], Sabri Ünal [tr], Balázs Meskó [hu],
Danial Behzadi [fa], A S Alam [pa], Daniel Rusek [cs], Fran Dieguez [gl],
Vasil Pupkin [be], Yosef Or Boczko [he]
46.alpha
========
* Fix scroll handling on sliders [Carlos; !2967]
* overview: Handle unredirection as part of the state transition [Robert; !2970]
* Handle DESKTOP windows during workspace animations [Sundeep; !2865]
* Improve wording in welcome dialog [Automeris, Florian; !2963, !2962]
* Improve recording indicator in light style [Georges; !2983]
* Fix calendar popup shrinking on date changes [Sebastian K.; !2989]
* app: Make all windows on target workspace recent when activated
[Sebastian W.; !2991]
* Fix performance degradation due to repeated signal leak [Sebastian K.; !3001]
* Optimize application search [Sebastian K.; !3004]
* Fix on-screen keyboard backspace getting stuck [Sebastian K.; !3009]
* Adapt to ClutterContainer removal [Zander; !3010, !3014]
* Fix arrow navigation in search results [Sebastian K.; !3015]
* Improve monitor OSD labels [Sam; !3016]
* Support async code in Eval() D-Bus method [Florian; !3021]
* Fix sliders not requesting any size [Florian; !2994]
* Only show prefs dialog after the extension has been loaded [Florian; !3025]
* Use dedicated assets in ctrl-alt-tab popup [Sam; !3019]
* Improve high-contrast styling [Sam; !3030]
* Fix mapping of tablet rings/strips [Peter; !3029]
* Add support for "version-name" field in extension metainfo
[Aryan, Florian; !2995, !3034]
* Add more toolbox developer tooling [Florian; !2935, !3040]
* Use less ambiguous symbols for radio menu items [Sam; !3027]
* Improve icon- and text scaling [Sam; !3033]
* Modernize Extensions app [Florian; !3048, !3051, !3067]
* Use gi-docgen for API documentation [Zander; !1873]
* Improve high-contrast styling [Sam; !3017]
* Allow any enter key to be used to screenshot [Scott; !2777]
* Remove X11-specific icon fallback [Florian; !3056]
* Replace StBin's custom layout code [Florian; !3046]
* Minimize need to rebase when loading extensions [Sundeep; !2851]
* Add D-Bus method to take interactive screenshots [Georges; !2999]
* Add shortcuts to open new window of pinned apps [Florian, Leleat; !1829]
* Fix spinner in light style variant [Florian; !3080]
* Improve handling of enabled-but-inactive extensions [Florian; !3073]
* Improve formatting of extension errors [Philip; !3041]
* Fixed crashes [Daniel, Sebastian K., Carlos, Florian; !2975, !2974, !2993,
!3018, !3011, !3006]
* Misc. bug fixes and cleanups [Florian, Martin, Alessandro, Bilal,
Sebastian K., Barnabás, Jonas, Julian, Charles, Daniel, Automeris, Cassidy,
Carlos, Sam, Sabri, Jonian, Sebastian W.; !2966, !2978, !2987, !2988, !2808,
!2964, !3000, !3005, !3008, !3013, !2190, !3020, !3023, !2997, !3031, !3042,
!3043, !3045, !3047, !3049, !2653, !3052, !3050, !3054, !3055, !1905, !3060,
!3061, !2950, !3062, !3068, !3058, !3064, !3072, !3071, !3079, !2998, !3085,
!3083, !3088, !3087, !3091, !3057, !3090]
Contributors:
Cassidy James Blaede, Alessandro Bono, Zander Brown, Scott Buchanan,
Philip Chimento, Jonas Dreßler, Bilal Elmoussaoui, Carlos Garnacho,
Jonian Guveli, Sam Hewitt, Peter Hutterer, Aryan Kaushik, Sebastian Keller,
Leleat, Robert Mader, Sundeep Mediratta, Florian Müllner, Automeris naranja,
Georges Basile Stavracas Neto, Barnabás Pőcze, Julian Sparber, Sabri Ünal,
Daniel van Vugt, Sebastian Wick, Charles Wong, Martin Zurowietz
Translators:
Jordi Mas [ca], Fabio Tomat [fur], Ekaterine Papava [ka], Sabri Ünal [tr],
Cheng-Chia Tseng [zh_TW], Changwoo Ryu [ko], Florentina Mușat [ro],
Brage Fuglseth [nb], Evangelos Skarmoutsos [el], Efstathios Iosifidis [el],
Quentin PAGÈS [oc], Jürgen Benvenuti [de], Daniel Șerbănescu [ro],
Artur S0 [ru], Марко Костић [sr], Hugo Carvalho [pt], Ngọc Quân Trần [vi],
Dušan Kazik [sk], Aefgh Threenine [th]
45.0
====
* Fix exposing window previews on lock screen via keyboard shortcuts
[Florian; !2944]
* Improve handling of latched vs. locked modes in OSK [Carlos; !2945]
* Fix regression in workspace state tracking [Florian; !2949]
* Update extensions immediately on startup after major upgrades [Florian; !2951]
* Reverse slider direction in RTL locales [Khalid; !2943]
* Misc. bug fixes and cleanups [Hollow, xiaofan, Florian; !2946, !2947, !2952,
!2956]
Contributors:
Carlos Garnacho, Hollow Man, Florian Müllner, Khalid Abu Shawarib, xiaofan
Translators:
Anders Jonsson [sv], Jordi Mas [ca], Rafael Fontenelle [pt_BR],
Matej Urbančič [sl], Irénée THIRION [fr], Carmen Bianca BAKKER [eo],
Rūdolfs Mazurs [lv], Artur S0 [ru]
45.rc
=====
* Allow notification dismissal with backspace [Chris; !2435]
* Add workspace indicators in activities button [Georges; !2902]
* Add extension hook to add quick settings items [Florian; !2894]
* Fix legibility issue in calendar [Jakub; !2857]
* Fix three-finger swipes on touchscreens [Carlos; !2910]
* Add more options to `gnome-extensions create` [Florian; !2889]
* Fix scrolling regression in ScrollView [Andrew; !2920]
* Fix broken workspace animation with swipe gesture [Carlos; !2918]
* Restore focus indication in system entries [Florian; !2922]
* Use UUID as fallback extension gettext domain [Florian; !2888]
* Reflect core app change in default "Utilities" folder [kramo; !2916]
* Support OWE networks in status menu [Florian; !2927]
* Show immediate feedback when toggling bluetooth [Florian; !2815]
* Switch workspaces when scrolling over activities button [Florian; !2933]
* Wrap around when navigating menus with arrow keys [Lukáš; !2525]
* Fix background apps menu showing up empty [Florian; !2938]
* Misc. bug fixes and cleanups [Florian, Dallas, Georges, Sebastian, Brendan,
Simon, Marco, Daniel, Stuart, Bilal, Carlos, aliriza, Bryan; !2884, !2885,
!2881, !2887, !2893, !2891, !2729, !2892, !2897, !2898, !2899, !2900, !2828,
!2903, !2904, !2859, !2911, !2912, !2917, !2919, !2873, !2928, !2924, !2926,
!2930, !2932, !2934, !2936, !2875, !2938, !2940, !2939]
Contributors:
aliriza, Bilal Elmoussaoui, Carlos Garnacho, Stuart Hayhurst, Chris Heywood,
Sebastian Keller, kramo, Florian Müllner, Georges Basile Stavracas Neto,
Bryan Ricker, Simon Schneegans, Jakub Steiner, Dallas Strouse,
Marco Trevisan (Treviño), Lukáš Tyrychtr, Daniel van Vugt, Brendan William,
Andrew Zaech
Translators:
Fran Dieguez [gl], Asier Sarasua Garmendia [eu], Quentin PAGÈS [oc],
Sabri Ünal [tr], Baurzhan Muftakhidinov [kk], Ekaterine Papava [ka],
Jordi Mas [ca], Yuri Chornoivan [uk], Piotr Drąg [pl], Vasil Pupkin [be],
Philipp Kiemle [de], Daniel Rusek [cs], Daniel Mustieles [es],
Danial Behzadi [fa], Amn Alam [pa], Artur S0 [ru], Yosef Or Boczko [he],
Jiri Grönroos [fi], Nathan Follens [nl], Luming Zh [zh_CN],
Kukuh Syafaat [id], Milo Casagrande [it], Aurimas Černius [lt],
Changwoo Ryu [ko], A S Alam [pa], Alan Mortensen [da], Balázs Úr [hu],
Bruce Cowan [en_GB]
45.beta.1
=========
* Fix input handling in alt-tab and several other components [Carlos; !2872]
* Fix screenshot tool [Florian; 2877]
* Export notification source classes for extensions [Andy; 2869]
* Finishing ESM porting touches [Florian; 2880]
* Misc. bug fixes and cleanups [Andrew, Carlos, Florian; !2866, !2871,
!2876, !2878, !2879]
Contributors:
Carlos Garnacho, Florian Müllner, Andy Holmes, Andrew Zaech
Translators:
Piotr Drąg [pl], Kukuh Syafaat [id]
45.beta
=======
* Load extensions as modules [Florian; !2795]
* Run "perf" tests as external scripts [Florian; !2812]
* Remove toLocaleFormat() from date [Evan; !2827]
* Use Tecla for keyboard layout previews [Carlos; !2834]
* Fix accessibility of quick settings sliders [Lukáš; !2762]
* Port to EcmaScript modules [Evan, Florian; !2842, !2822, !1499, !2868]
* Overhaul ExtensionUtils API for modules [Florian; !2832, !2837, !2838]
* Add a camera indicator [Robert]
* Add keyboard backlight quick toggle [Florian; !2820]
* Hide popup menu ornaments by default [Florian, Sebastian; !2843]
* Improve light style variant [Sam; !2823]
* Add InjectionManager convenience API for extensions [Florian; !2809]
* Use per-direction labels on ring/strip tablet actions [Carlos; !2766]
* Misc. bug fixes and cleanups [Florian, Robert, Carlos, Daniel, Sebastian,
Takao; !2807, !2814, !2831, !2830, !2829, !2835, !2836, !2824, !2841, !2845,
!2846, !2850, !2849, !2844, !2854, !2852, !2855, !2856, !2860, !2718, !2861,
!2862, !2864, !2668, !2666]
Contributors:
Takao Fujiwara, Carlos Garnacho, Sam Hewitt, Sebastian Keller, Robert Mader,
Florian Müllner, Lukáš Tyrychtr, Daniel van Vugt, Evan Welsh
Translators:
Vasil Pupkin [be], Fabio Tomat [fur], Balázs Úr [hu], Ekaterine Papava [ka],
Yuri Chornoivan [uk], Artur So [ru], Danial Behzadi [fa], Ngọc Quân Trần [vi],
Yosef Or Boczko [he], Boyuan Yang [zh_CN], Hugo Carvalho [pt],
Daniel Rusek [cs], Jiri Grönroos [fi], Florentina Musat [ro],
Fran Dieguez [gl], Daniel Mustieles [es]
45.alpha
========
* Improve background apps menu [Florian; !2732, !2790]
* Complete GTK4 port [Florian; !2690, !2733]
* Use user-defined names in bluetooth menu [Florian; !2751]
* Improve the built-in screen recorder
[Jonas, Robert; !2197, !2609, !2752, !2597, !2754, !2782]
* Remove the app menu [Jonas; !2610]
* Fix stuck authentication dialog in remote sessions [Joan; !2761]
* Provide generated toolbox images for development [Florian; !2713]
* Fix glitches in calendar when using large-text option [Sebastian; !2759]
* Use icons for ornaments in popup menus [maniacx; !2767]
* Improve calendar styling [Sam; !2769]
* Fix IM popup getting stuck on engine changes [Daniel D.; !2774]
* Support color-scheme setting for default stylesheet [Florian; !2324]
* Remove Soup2 support [Florian; !2776]
* Expose public functions for search provider registration [Andy; !2783]
* Fix cursor offset when using magnifier [Андрей; !2780]
* Modernize Extensions app UI [Christopher; !2802]
* Fix missing workspace borders after wallpaper changes [Florian; !2801]
* Port auxiliary services and apps to ESM [Florian; !2786]
* Add shortcut for toggling quick settings [Florian; !2716]
* Fixed crashes [Carlos, Evan; !2756, !2781]
* Misc. bug fixes and cleanups [Florian, Automeris, Daniel v. V., Jonas, Sam,
Zacharie, Joan, Evan, Martin; !2741, !2742, !2743, !2683, !2650, !2753, !2757,
!2755, !2768, !2772, !2770, !2665, !2775, !2791, !2792, !2563, !2796, !2799,
!2778, !2805, !2806, !2804, !2794, !2813, !2811, !2800, !2816, !2798, !2821]
Contributors:
Christopher Davis, Daniel Drake, Jonas Dreßler, Zacharie DUBRULLE,
Carlos Garnacho, Sam Hewitt, Andy Holmes, Sebastian Keller, maniacx,
Florian Müllner, Automeris naranja, robert.mader@collabora.com, Joan Torres,
Daniel van Vugt, Evan Welsh, Martin Zurowietz, Андрей Гриценко
Translators:
Fabio Tomat [fur], Jiri Grönroos [fi], Sabri Ünal [tr],
Gianvito Cavasoli [it], Guillaume Bernard [fr], Jordi Mas [ca],
Yosef Or Boczko [he], Daniel Rusek [cs], Rafael Fontenelle [pt_BR],
Jordi Mas i Hernandez [ca], Hugo Carvalho [pt], Julia Dronova [ru],
Dušan Kazik [sk], Bruce Cowan [en_GB]
44.1
====
* Add section title in background apps menu [Florian; !2681]
* Fix visibility of xembed icons [Marco; !2684]
* Fix placeholder alignment in bluetooth menu [Sebastian; !2687]
* Fix recording screenshots in recent items [Carlos, Adam; !2692, !2725]
* Fix reloading extensions on version-validation changes [Florian; !2694]
* Fix force-enabling animations at runtime [Florian; !2698]
* Fix stuck session after logout dialog timeout [Florian; !2696]
* Fix window screenshots with pointer [Ivan; !2710, !2702]
* Only show network subtitles if they don't match the title [Georges; !2682]
* Fix constructing QuickMenuToggles with icon-name [Florian; !2726]
* Fix accessible names in VPN menu [Lukáš; !2720]
* Don't fail extracting extensions without schemas [Andy; !2727]
* Fixes and improvements to the light theme variant [Sam; !2515]
* Improve accessible name of wireless menu items [Lukáš; !2724]
* Use consistent naming for "Power Mode" toggle [Automeris; !2697]
* Fix support for transparent colors in symbolic SVGs [Florian; !2731]
* Fix notifications getting stuck indefinitely [msizanoen1; !2736]
* Fix keynav of menu-less buttons [Florian; !2734]
* Fix corner cases when matching apps on StartupWmClass [Marco; !2721]
* Fix occasional misalignment of search results [Sebastian; !2744]
* Fix regression in content-type sniffing on autorun [Balló; !2745]
* Fix building API documentation [Bobby; !2749]
* Fixed crash [Jonas Å.; !2722]
* Plugged leak [Sebastian; !2737]
* Misc. bug fixes and cleanups [Florian, Will, Daniel, Marco, Sebastian,
Jordan, Jonas D.; !2679, !2689, !2693, !2639, !2661, !2685, !2709, !2699,
!2711, !2723, !2728, !2730, !2739, !2738, !2740, !2712, !2695, !2193]
Contributors:
Jonas Ådahl, Jonas Dreßler, Carlos Garnacho, Balló György, Sam Hewitt,
Andy Holmes, Sebastian Keller, Ivan Molodetskikh, msizanoen1, Florian Müllner,
Automeris naranja, Georges Basile Stavracas Neto, Jordan Petridis, Bobby Rong,
Will Thompson, Marco Trevisan (Treviño), Lukáš Tyrychtr, Daniel van Vugt,
Adam Williamson
Translators:
Fran Dieguez [gl], Balázs Úr [hu], Andika Triwidada [id], Anders Jonsson [sv],
Martin [sl], Danial Behzadi [fa], Bruce Cowan [en_GB], Rūdolfs Mazurs [lv],
Asier Sarasua Garmendia [eu], Nathan Follens [nl], Sabri Ünal [tr],
Boyuan Yang [zh_CN], Guillaume Bernard [fr], Alexander Shopov [bg],
Aleksandr Melman [ru], MohammadSaleh Kamyab [fa], Yuri Chornoivan [uk],
Hugo Carvalho [pt], Fabio Tomat [fur], Kukuh Syafaat [id], Piotr Drąg [pl],
Марко Костић [sr], Aurimas Černius [lt], Yaron Shahrabani [he],
Philipp Kiemle [de]
44.0
====
* Bump version
Translators:
Piotr Drąg [pl], Martin [sl], Fran Dieguez [gl], Chao-Hsiung Liao [zh_TW],
Vasil Pupkin [be], Alexandre Franke [fr], Kukuh Syafaat [id],
Fabio Tomat [fur], Sabri Ünal [tr], Anders Jonsson [sv], Boyuan Yang [zh_CN],
Marek Černocký [cs], Alan Mortensen [da], Asier Sarasua Garmendia [eu],
Daniel [es], Aleksandr Melman [ru], MohammadSaleh Kamyab [fa]
44.rc
=====
* Unmute to default volume when slider was at 0 [Florian; !2644]
* Fix missing battery percentage in the top bar [DaPigGuy; !2657]
* Fix unexpected focus order after activating apps [Florian; !2659]
* Stop using GTK for systray support [Carlos; !2590]
* Expose GtkIconTheme replacement to extensions [Florian; !2671]
* Disallow using (most of) GTK in the compositor process [Florian; !2680]
* Plugged leak [Sebastian; !2652]
* Misc. bug fixes and cleanups [Jonas, Florian, Andy, Carlos, Sebastian, Sam,
Automeris, Ray; !2318, !2658, !2663, !2642, !2656, !2664, !2667, !2648,
!2654, !2655, !2670, !2669, !2673, !2675, !2674, !2677, !2676]
Contributors:
DaPigGuy, Jonas Dreßler, Carlos Garnacho, Sam Hewitt, Andy Holmes,
Sebastian Keller, Florian Müllner, Ray Strode, Automeris naranja
Translators:
Daniel Mustieles [es], Jürgen Benvenuti [de], Piotr Drąg [pl],
Danial Behzadi [fa], Fabio Tomat [fur], Jordi Mas [ca], Hemish [hi],
Asier Sarasua Garmendia [eu], Matej Urbančič [sl], Alan Mortensen [da],
Мирослав Николић [sr], Jean-Marc Tissières [fr], Jiri Grönroos [fi],
Sabri Ünal [tr], Balázs Úr [hu], Yuri Chornoivan [uk], Changwoo Ryu [ko],
Aleksandr Melman [ru], Yosef Or Boczko [he], Aurimas Černius [lt],
Alexander Shopov [bg], Hugo Carvalho [pt]
44.beta
=======
* Fix screencast UI being erroneously disabled [Florian; !2533]
* Fix unresponsive screen area when quick settings are opened [Carlos; !2535]
* Ensure completions are disabled when hiding on-screen keyboard [Carlos; !2543]
* Fix missing name in wired network quick settings button [Florian; !2529]
* Properly apply saved shortcuts inhibition permissions [Florian; !2548]
* Don't let wayland popovers block overview [Florian; !2549]
* Improve high contrast styling [Sam; !2527]
* Open correct Settings panel from on-screen keyboard menu [Roshan-R; !2554]
* Test running gnome-shell in CI [Jonas Å.; !1349]
* Do not use symbolic app icons for High Contrast [Jakub; !2555]
* Prepare extension loading for ESM [Evan; !2364]
* Fix input source switching with focus on password entry [Carlos; !2534]
* Ensure quick settings toggles align with the pixel grid [Sebastian K.; !2577]
* Lower OOM score of gnome-shell process [Jian-Hong; !2582]
* Polish page switching behavior during DND in app grid [Jonas D.; !2581]
* Tweak lock- and login screen styling [Sam; !2564]
* Consistently link to Settings from menus
[sunflowerskater; !2600, !2559, !2615]
* Make it easier for extensions to add a credential manager [Alessandro; !2399]
* Fix mount operation dialog when Disks is not available [Balló; !2621]
* Refine quick settings [Georges, two, Florian; !2619, !2627, !2553, !2631, !2505, !2632]
* Mute/unmute volume when clicking slider icon [Florian; !2630]
* Add device menu to Bluetooth quick settings [Florian; !2501]
* Expose list of background apps in quick settings [Georges; !2624]
* Compile extension GSettings after install [Andy; !2638]
* Fixed crash [Florian; !2622]
* Plugged memory leak [Sebastian K.; !2637]
* Misc. bug fixes and cleanups [Alessandro, Cassidy, Colin, Florian, Jonas Å.,
Sam, Michel, Felipe, Sebastian K., sunflowerskater, Robert, Bilal, Jonas D.,
Jakub, Philip, Heiko, Carlos, Takao, Sebastian W., Kolja; !2528, !2499, !2523,
!2540, !2536, !2545, !2546, !2517, !2547, !2544, !2532, !2558, !2560, !2561,
!2562, !2572, !2578, !2579, !2584, !2576, !2571, !2585, !2557, !2588, !2575,
!2594, !2602, !2606, !2596, !2607, !2604, !2611, !2613, !2612, !2616, !2617,
!2526, !2618, !2348, !2496, !2620, !2625, !2552, !2626, !2623, !2614, !2628,
!2629, !2573, !2633, !2634, !2636, !2514, !2479]
Contributors:
Cassidy James Blaede, Alessandro Bono, Felipe Borges, Jonas Dreßler,
Michel Dänzer, Bilal Elmoussaoui, Takao Fujiwara, Carlos Garnacho,
Balló György, Sam Hewitt, Andy Holmes, Heiko Hösch, Sebastian Keller,
Colin Kinloch, Kolja Lampe, Robert Mader, Florian Müllner,
Georges Basile Stavracas Neto, Jian-Hong Pan, Roshan-R, Olga Smirnova,
Jakub Steiner, Evan Welsh, Sebastian Wick, Philip Withnall, sunflowerskater,
two, Jonas Ådahl
Translators:
Yuri Chornoivan [uk], Balázs Úr [hu], Aleksandr Melman [ru], Dušan Kazik [sk],
Vasil Pupkin [be], Sveinn í Felli [is], Olga Smirnova [ie], Sabri Ünal [tr],
Yosef Or Boczko [he], Bruce Cowan [en_GB], Fabio Tomat [fur],
Ekaterine Papava [ka], Emin Tufan Çetin [tr], Hugo Carvalho [pt],
Jordi Mas [ca], Quentin PAGÈS [oc], Kukuh Syafaat [id], Fran Dieguez [gl],
Tim Sabsch [de], Danial Behzadi [fa], Yaron Shahrabani [he],
Asier Sarasua Garmendia [eu], Aurimas Černius [lt], Anders Jonsson [sv],
Jiri Grönroos [fi], Kjartan Maraas [nb]
43.1
====
* Fix default keyboard layout during initial setup [Carlos; !2487, !2495]
* Show Bluetooth switch in more cases [Bastien; !2488]
* Include origin in sound device switcher [Florian; !2502]
* Fix remembering inhibit-shortcut permission for multiple apps [Florian; !2504]
* Forward TERMINAL input purpose to ibus [Jonas; !2511]
* Fix style glitches [Sam; !2513, !2510]
* Fix tracking of newly installed apps [Florian; !2480]
* Fix space key getting stuck in on-screen keyboard [Carlos; !2508]
* Fix showing passwords as on-screen keyboard suggestions [Carlos; !2512]
* Fix network portal regression [Marco; !2524]
* Fix possible freeze during initialization [Florian; !2519]
* Misc. bug fixes and cleanups [Andy, Jonas, Alessandro, Florian, Sebastian;
!2470, !2476, !2471, !2483, !2518, !2503]
Contributors:
Marco Trevisan (Treviño), Alessandro Bono, Carlos Garnacho, Sam Hewitt,
Andy Holmes, Sebastian Keller, Florian Müllner, Bastien Nocera, Jonas Ådahl
Translators:
Baurzhan Muftakhidinov [kk], Марко Костић [sr], Yosef Or Boczko [he],
Guillaume Bernard [fr], Hugo Carvalho [pt], Kukuh Syafaat [id],
Pawan Chitrakar [ne], Aleksandr Melman [ru], Aurimas Černius [lt],
Anders Jonsson [sv], Jordi Mas [ca], Danial Behzadi [fa], Dušan Kazik [sk],
Fabio Tomat [fur], Olexander [uk], Nart Tlisha [ab], Cheng-Chia Tseng [zh_TW],
Alexander Shopov [bg], Zurab Kargareteli [ka], A S Alam [pa],
Kosmas Martakidis [el], Nathan Follens [nl]
43.0
====
* Fix rebooting into boot loader menu [Florian; !2472]
* Improve entry legibility in GNOME Classic [Jakub; !2477]
* Fixed crash [Jonas; !2478]
* Misc. bug fixes and cleanups [sabriunal, Florian; !2467, !2484, !2485]
Contributors:
Florian Müllner, Jakub Steiner, sabriunal, Jonas Ådahl
Translators:
Jürgen Benvenuti [de], Quentin PAGÈS [oc], Aurimas Černius [lt],
Anders Jonsson [sv], Pawan Chitrakar [ne], Jordi Mas [ca],
Daniel Mustieles [es], Alexander Shopov [bg], Asier Sarasua Garmendia [eu],
Aleksandr Melman [ru], Alexandre Franke [fr], Goran Vidović [hr],
Emin Tufan Çetin [tr], Balázs Úr [hu], Marek Černocký [cs],
Yuri Chornoivan [uk], Jiri Grönroos [fi], Yosef Or Boczko [he],
Piotr Drąg [pl], Luming Zh [zh_CN], Fran Dieguez [gl],
Enrico Nicoletto [pt_BR], Alan Mortensen [da], Matej Urbančič [sl]
43.rc
=====
* Tweak quick settings appearance [Sam; !2427, !2441, !2463]
* Use NM connectivity check URI for portal helper [Clerie; !2228]
* Only show "Night Light" toggle when supported [Florian; !2425]
* Fix accessibility of quick settings sliders [Florian; !2431]
* Use more unambiguous icons in on-screen keyboard [Carlos; !2433]
* Add screenshot item to quick settings [Florian; !2439]
* Fix entering extended characters from on-screen keyboard [Carlos; !2445]
* Prevent SignalTracker from leaking objects [Sebastian; !2450, !2466]
* Fix turning off VPN in quick settings [Florian; !2426]
* Fix initial selection in switch-monitor popup on desktop [Yao; !2451]
* Improve handling of recurring events [Milan; !2328]
* Indicate transitional states in bluetooth quick toggle [Florian; !2444]
* Work around pipewire regression for screencasts [Sebastian; !2436]
* Plugged memory leak [Florian; !2461]
* Misc. bug fixes and cleanups [Daniel, Jonas Å., Florian, Georges, Carlos;
!2429, !2434, !2430, !2442, !2455, !2462, !2456, !2464, !2465, !2288]
Contributors:
Yao Wei (魏銘廷), Milan Crha, Carlos Garnacho, Sam Hewitt, Sebastian Keller,
Florian Müllner, Dmitrii Naidolinskii, Georges Basile Stavracas Neto,
Clerie Riese, Daniel van Vugt, msizanoen1, Jonas Ådahl
Translators:
Danial Behzadi [fa], Kukuh Syafaat [id], Марко Костић [sr],
Zurab Kargareteli [ka], Hugo Carvalho [pt], Goran Vidović [hr],
Aleksandr Melman [ru], Jordi Mas [ca], Piotr Drąg [pl],
Asier Sarasua Garmendia [eu], Luming Zh [zh_CN], Yosef Or Boczko [he],
Fran Dieguez [gl], Emin Tufan Çetin [tr], Daniel Mustieles [es],
Nart Tlisha [ab], Marek Černocký [cs], Leônidas Araújo [pt_BR],
Matej Urbančič [sl], Balázs Úr [hu], Nathan Follens [nl],
Baurzhan Muftakhidinov [kk], Rūdolfs Mazurs [lv], Alan Mortensen [da],
Changwoo Ryu [ko]
43.beta
=======
* Allow extension updates with only Extension Manager installed [Matthew; !2358]
* Use new About window in Extensions app [Christopher; !2373]
* Stop auto-dismissing notifications on focus changes [Florian; !2332]
* Tweak access portal dialog [Georges; !2377]
* Add device switcher to volume sliders [Florian; !2380]
* Replace combined system menu with quick settings [Florian; !2385, !2389,
!2391, !2392, !2393, !2406, !2407, !2408]
* Use the same format in screencast and screenshot file names [Emmanuele; !2300]
* Only load extensions that support the current session mode [Alessandro; !2378]
* Improve overview animation performance [Ivan; !2395, !2394]
* Port to gcr4 [Milan; !2386]
* Fix logging in with realmd [Alessandro; !2404]
* Optimize workspace background shadow [Daniel; !1915]
* Improve app grid navigation [Georges; !2335]
* Improve on-screen keyboard
- delete multiple characters and words when holding backspace
- provide word suggestions when using plan keyboard layouts
- use extended layout when TERMINAL hint is set
[Carlos; !2278]
* Fix remembering set up bluetooth devices [Florian; !2409]
* Misc. bug fixes and cleanups [Florian, Carlos, Sam, Sebastian, Alessandro,
Robert; !2374, !2369, !2350, !2381, !2375, !2384, !2388, !2371, !2344, !2370,
!2396, !2397, !2403, !2402, !2326, !2405, !2401, !2398, !2414, !2412, !2411,
!2415, !2416, !2419, !2413]
Contributors:
Robert Ancell, Emmanuele Bassi, Alessandro Bono, Milan Crha,
Christopher Davis, Carlos Garnacho, Sam Hewitt, Matthew Jakeman,
Sebastian Keller, Andre Klapper, Ivan Molodetskikh, Florian Müllner,
Georges Basile Stavracas Neto, Nart Tlisha, Daniel van Vugt
Translators:
Kukuh Syafaat [id], Emin Tufan Çetin [tr], Jordi Mas [ca],
Zurab Kargareteli [ka], Nart Tlisha [ab], Asier Sarasua Garmendia [eu],
Fran Dieguez [gl], Aleksandr Melman [ru], Hugo Carvalho [pt],
Yuri Chornoivan [uk], Alexander Shopov [bg], Yosef Or Boczko [he],
Quentin PAGÈS [oc], Danial Behzadi [fa], Daniel Mustieles [es],
Luming Zh [zh_CN], Jiri Grönroos [fi]
43.alpha
========
* Add convenience property for icon-only buttons [Florian; !2254]
* Align space-padded times in world clocks [Maksym; !2294, !2340]
* Fix top bar menus on lock screen [Florian; !2298]
* Show wireguard connects in VPN list [Christian; !1995]
* Fix on-screen keyboard gestures [Carlos; !2304]
* Fix focus tracking in magnifier on wayland [Sebastian; !2301]
* Fix OSD colors with light stylesheet [Jakub; !2315]
* Only close messages via delete key if they can be closed [PhilProg; !2323]
* Fix screenshots when XDG directories are disabled [Sam U.; !2327]
* Do not create systemd scope for D-Bus activated apps [msizanoen1; !2305]
* Improve high-contrast stylesheet [Sam H.; !2284]
* Hide overview after 'Show Details' from app context menu [PhilProg; !2329]
* Fix feedback when turning on a11y features by keyboard [Olivier; !2334]
* Fix stylesheet papercuts [Sam H.; !2309]
* Use libsoup 3.0 by default [Florian; !2338]
* Indicate selected language in on-screen keyboard menu [Carlos; !2346]
* Respect IM hint for candidates list in on-screen keyboard
[Carlos, Florian; !2347, !2359]
* Fix edge case where windows stay dimmed after a modal is closed
[Jonas D.; !2349]
* Improve Belgian on-screen keyboard layout [Evert; !2336]
* Fix fallback ibus-daemon launching [oreo639; !2345]
* Make sure screenshot UI opens above dialogs [Alynx; !2331]
* Use EventEmitter class instead of injecting Signal methods [Evan; !2043]
* Plugged leak [Sebastian; !2367]
* Misc. bug fixes and cleanups [Florian, Jonas D., Jonas Å., Sebastian, Evan,
Marco; !2295, !2296, !2297, !2306, !2317, !2316, !2319, !2325, !2337, !2355,
!2351, !2293, !2365, !2366, !697, !2363, !2362, !2372]
Contributors:
Marco Trevisan (Treviño), Jonas Dreßler, Olivier Fourdan, Carlos Garnacho,
Christian Glombek, Maksym Hazevych, Sam Hewitt, Sebastian Keller,
Florian Müllner, PhilProg, Evert Provoost, Jakub Steiner, Sam Uong,
Evan Welsh, Alynx Zhou, msizanoen1, oreo639, Jonas Ådahl
Translators:
Jordi Mas [ca], Cheng-Chia Tseng [zh_TW], Charles Monzat [fr],
Changwoo Ryu [ko], Daniel Rusek [cs], Aleksandr Melman [ru],
Christian Kirbach [de], Yuri Chornoivan [uk], Emin Tufan Çetin [tr],
Danial Behzadi [fa], Hugo Carvalho [pt], Luming Zh [zh_CN],
Quentin PAGÈS [oc], Yosef Or Boczko [he], Fabio Tomat [fur],
Irénée THIRION [fr], Jürgen Benvenuti [de], Milo Casagrande [it],
Aurimas Černius [lt], Daniel Mustieles [es], Vojtěch Perník [cs]
42.1
====
* Limit unfullscreen gesture to not interfere with overview [Ivan; !2227]
* Properly hide the second (real) cursor when magnified [Jonas; !2234]
* Fix various style glitches [Sam; !2215, !2277]
* Fix creating default application folders [Adam; !2242]
* Fix switching monitor configuration [Florian; !2245]
* Add Home/End keynav in app grid [Anupam; !2241]
* Handle monitor changes during startup animation [13r0ck; !2144]
* Fix fractional timezone offsets in world clock [Raghuveer; !2255]
* Default to right text-align in RTL locales [Florian; !2247]
* calendar: Fix alignment of world clocks header in RTL [Yosef; !2240]
* Rely on symbolic icons instead of 'HighContrast' icon theme [Jakub; !2243]
* Fix moving windows from secondary monitor to non-active workspace
[Florian; !2259]
* Make sure startup animation completes [Florian; !2269]
* Fix Swiss on-screen keyboard layouts [Florian; !2273]
* Add Austrian-German on-screen keyboard layout [Florian; !2274]
* Fix on-screen keyboard in modal dialogs and lock screen [Jonas; !2263]
* Fix menus in pad OSD [Carlos; !2279]
* Sync default colors with libadwaita [Jakub; !2280]
* Fix grab regressions when entering overview [Carlos, Sebastian; !2281, !2287]
* Scale calendar with text size [Jonas; !2282]
* Allow more intermediate icon sizes in app grid [Sebastian; !2289]
* Fixed crash [Jonas D.; !2231]
* Plugged memory leak [Sebastian; !2256]
* Misc. bug fixes and cleanups [Jonas, Florian, Sebastian, Daniel, Marco, Simon;
!2283, !2285, !2286, !2233, !2236, !2244, !2246, !2258, !2257, !2252, !2261,
!2268, !2272, !2271, !2275]
Contributors:
Marco Trevisan (Treviño), 13r0ck, Yosef Or Boczko, Jonas Dreßler,
Carlos Garnacho, Sam Hewitt, Zurab Kargareteli, Raghuveer Kasaraneni,
Sebastian Keller, Anupam Kumar, Simon McVittie, Ivan Molodetskikh,
Florian Müllner, Jakub Steiner, Daniel van Vugt, Adam Williamson
Translators:
Balázs Úr [hu], Goran Vidović [hr], Charles Monzat [fr], Jiri Grönroos [fi],
Milo Casagrande [it], Jordi Mas [ca], Yuri Chornoivan [uk], Fran Dieguez [gl],
Marek Černocký [cs], Emin Tufan Çetin [tr], Alexander Shopov [bg],
Hugo Carvalho [pt], Piotr Drąg [pl], Anders Jonsson [sv], Matej Urbančič [sl],
Aurimas Černius [lt], Dušan Kazik [sk], Matheus Barbosa [pt_BR],
Bruce Cowan [en_GB], Rūdolfs Mazurs [lv], Nathan Follens [nl],
Марко Костић [sr], Aleksandr Melman [ru], Quentin PAGÈS [oc],
Andika Triwidada [id], Danial Behzadi [fa], Ngọc Quân Trần [vi],
Yaron Shahrabani [he], Daniel Mustieles [es], Gun Chleoc [gd],
Changwoo Ryu [ko], Fabio Tomat [fur], Ask Hjorth Larsen [da],
Yosef Or Boczko [he], Sveinn í Felli [is], Zurab Kargareteli [ka],
Olexander [uk]
42.0
====
* introspect: Add WindowsChanged signal [Cenk; !2229]
* Fix on-screen keyboard during grabs [Carlos; !2237]
* Fixed crash [Adam; !2238]
Contributors:
Carlos Garnacho, Cenk Uluisik, Adam Williamson
Translators:
Fabio Tomat [fur], Tim Sabsch [de], Ivan Molodetskikh [ru],
Yosef Or Boczko [he], Марко Костић [sr], Baurzhan Muftakhidinov [kk],
純 小山田 [ja], sicklylife [ja]
42.rc
=====
* Fix programatically set scrollview fade [Jonas D.; !2189]
* Fix overview DND during screencasts [Ivan; !2192]
* Fix taking screenshots with shift+PrntScrn [Ivan; !2202]
* Disable workspace switching while in search [Sebastian; !2204]
* Fix opening device settings for enterprise WPA networks [Xiaoguang; !2194]
* Switch workspaces with Home and End keys in overview [kyte; !2201]
* Fix regressions from style refresh [Sam; !2206, !2185, !2212]
* Show disabled icons in system menu when devices are disabled [Jonas D.; !2198]
* Fix inserting items from object inspector in looking glass [Florian; !2218]
* Fix drag placeholder position in dash in RTL locales [Florian; !2219]
* Simplify signal handling with (dis)connectObject() convenience methods
[Florian; !1953, !2221, !2226]
* Ensure remote access indicator is shown for a minimum time [Jonas Å.; !2132]
* Improve CSS shadow appearance [Daniel; !1918]
* Ignore work area in overview layout [Florian; !2223]
* Fix glitches in overview transition [Jonas D., Sebastian; !2203, !1980]
* Fixed crash [Florian; !2207]
* Misc. bug fixes and cleanups [Jonas D., Björn, Florian, Carlos, Jonas Å.;
!2191, !2188, !2195, !2196, !2184, !2183, !2200, !2209, !2211, !2214, !2216,
!2110, !2222, !2220, !2225]
Contributors:
Björn Daase, Jonas Dreßler, Carlos Garnacho, Sam Hewitt, Sebastian Keller,
Ivan Molodetskikh, Florian Müllner, Daniel van Vugt, Xiaoguang Wang, kyte,
Jonas Ådahl
Translators:
Jordi Mas [ca], Quentin PAGÈS [oc], Asier Sarasua Garmendia [eu],
Kukuh Syafaat [id], Emin Tufan Çetin [tr], Changwoo Ryu [ko],
Danial Behzadi [fa], Aurimas Černius [lt], Daniel Mustieles [es],
Dušan Kazik [sk], Alan Mortensen [da], Goran Vidović [hr], Jiri Grönroos [fi],
Luna Jernberg [sv], Piotr Drąg [pl]
42.beta
=======
* Add Swiss French and Swiss German OSK layouts [Jürg; !2096]
* Add switches for debug flags to looking glass [Sebastian; !1994]
* Support auth lists on the login screen [Ray; !1978]
* Overhaul shell stylesheet [Sam; !2104, !2111, !2150, !2161, !2172]
* Fix timing issue on login screen [Naïm; !2116]
* Fix activating apps with tracked OR windows [Florian; !2131]
* Fix banding issues with the vignette lightbox shader [Jonas; !2133]
* Implement in-shell screenshot and screencast UI
[Ivan; !1954, !2103, !2149, !2147, !2106, !2105, !2107, !2163]
* Fix keyboard navigation to windows/apps in overview [Florian; !2124]
* Adjust to Clutter grab API changes [Carlos; !2045, !2046, !2140]
* Fix stuck transition when using super-scroll gesture [kyte; !2135]
* Support the new 'high-contrast' setting [Alexander, Florian; !2069]
* Remove rounded top bar corners [Florian; !2151]
* Fix calendar events with custom timezone [Milan; !2145]
* Support dark wallpapers [Alexander; !2137]
* Improve terminology for pinning icons to dash [Rachit; !2136]
* Use libadwaita for extension preferences [Florian; !2012]
* Fix out-of-sync location indicator [Florian; !2170]
* Fade screen when switching between dark/light mode [Alexander; !2070]
* Improve presentation of multi-day events in calendar [Björn; !2108]
* Implement Extensions redesign [Romain; !2114]
* Implement OSD redesign [Florian; !2127]
* Misc. bug fixes and cleanups [Florian, Evan, Jonas, Aleksandr, Ivan, Georges,
Leleat, Daniel, Carlos, Sam, Olivier, Bastien, Mohammed, Sebastian, Razze,
Alexander, Marek; !2089, !2040, !2097, !2047, !2102, !2118, !2123, !2121,
!2115, !2113, !2125, !337, !2098, !2126, !2139, !2138, !2143, !2146, !2155,
!2141, !2157, !2158, !2153, !2156, !2152, !2117, !2101, !2162, !2164, !2055,
!2165, !2166, !2168, !2169, !1972, !2174, !2175, !2171, !2173, !2160, !2167,
!2176, !2177, !2178, !1744, !2179, !2099]
Contributors:
Milan Crha, Björn Daase, Rachit Keerti Das, Jonas Dreßler, Naïm Favier,
Olivier Fourdan, Carlos Garnacho, Sam Hewitt, Sebastian Keller, Leleat,
Jürg Lempen, Aleksandr Mezin, Alexander Mikhaylenko, Ivan Molodetskikh,
Florian Müllner, Georges Basile Stavracas Neto, Bastien Nocera, Razze,
Mohammed Sadiq, Ray Strode, Romain Vigier, Daniel van Vugt, Evan Welsh,
Sebastian Wick, kyte, Marek Černocký
Translators:
Tao Liu [zh_CN], Yosef Or Boczko [he], Matej Urbančič [sl],
Yuri Chornoivan [uk], Daniel Mustieles [es], Aleksandr Melman [ru],
Rafael Fontenelle [pt_BR], Sveinn í Felli [is], Matheus Barbosa [pt_BR],
Luming Zh [zh_CN], Fran Dieguez [gl], sicklylife [ja], Hugo Carvalho [pt],
Quentin PAGÈS [oc], Yaron Shahrabani [he], Asier Sarasua Garmendia [eu],
Aurimas Černius [lt], Kukuh Syafaat [id], Marek Černocký [cs],
Leônidas Araújo [pt_BR], Alexander Shopov [bg]
42.alpha
========
* Fix icon updates while hidden [Marco; !1983]
* Fix erratic scrolling in GTK apps [Christian, Carlos; !1993, !2011]
* Fix GTK color picker support [Florian; !1990]
* Fix sound-file support in notifications [Florian; !1991]
* Fix high-contrast switches [Florian; !2000]
* Allow extensions to opt-in to running on lock/login screen [Ray; !1967]
* magnifier: Avoid offscreen rendering if possible [Sebastian; !2026]
* Warn when unsafe-mode is toggled [Florian; !2050]
* Improve handling of all-day/zero-length events in calendar [Sebastian; !2023]
* Keep keyboard focus in notification list after deleting message [Dylan; !2053]
* switchMonitor: Don't include builtin/external modes on desktops [Jonas; !2056]
* Fix wrongly rejected D-Bus calls after gnome-shell restarts [Sebastian; !2048]
* Improve window tracking [Florian; [Florian; !2029]
* Simplify scroll fade shader to work with old hardware [Sebastian; !2072]
* Tweak (un)minimize animations [Daniel; !2066]
* Properly handle markup when highlighting search terms [Sebastian; !2033]
* Don't wake up screen in DND mode [kyte; !2051]
* Port to GWeather 4.0 [Florian; !2083]
* extensions-app: Use libadwaita [Romain, Florian; !1997]
* Fix immediately withdrawn notifications getting stuck [Sebastian; !2079]
* Honor XDG SingleMainWindow key in .desktop files [Nate; !2084]
* Opt-in to unique GType names in extension prefs [Florian; !2024]
* Don't terminate remote sessions in headless mode [Joan; !2057]
* Fixed crashes [Ray, Sebastian, Benjamin, Florian; !2004, !2014, !2025,
!2065, !2073]
* Misc. bug fixes and cleanups [Jonas, Florian, Jakub, Ray, Carlos, Sebastian,
Georges, Evan, Sergio, Emily, Robert; !1985, !1998, !1996, !1999, !1979,
!2007, !2010, !2013, !2021, !2027, !2015, !2030, !2039, !2036, !2038, !2041,
!2034, !1992, !2059, !2054, !2068, !2076, !2077, !2078, !2081, !2082, !2031,
!2042, !2086, !2087, !2085, !2088]
Contributors:
Marco Trevisan (Treviño), Benjamin Berg, Sergio Costas, Carlos Garnacho,
Emily Gonyer, Nate Graham, Christian Hergert, Sebastian Keller, Robert Mader,
Dylan McCall, Florian Müllner, Georges Basile Stavracas Neto, Jakub Steiner,
Ray Strode, Joan Torres, Romain Vigier, Daniel van Vugt, Evan Welsh, kyte,
Jonas Ådahl
Translators:
Марко Костић [sr], Ngọc Quân Trần [vi], Emin Tufan Çetin [tr],
Yaron Shahrabani [he], Sveinn í Felli [is], Goran Vidović [hr],
Marek Černocký [cs], Selyan Slimane AMIRI [kab], Rūdolfs Mazurs [lv],
eshagh shahidani [fa], Yuri Chornoivan [uk], Anders Jonsson [sv],
Rafael Fontenelle [pt_BR], Kukuh Syafaat [id], Christian Kirbach [de],
Piotr Drąg [pl], Dušan Kazik [sk], Charles Monzat [fr], Fabio Tomat [fur],
Quentin PAGÈS [oc], Hugo Carvalho [pt], Milo Casagrande [it],
Daniel Mustieles [es], MohammadSaleh Kamyab [fa], Aurimas Černius [lt],
Aleksandr Melman [ru], Fran Dieguez [gl], Мирослав Николић [sr],
Danial Behzadi [fa]
41.0
====
Translators:
Goran Vidović [hr], Jordi Mas [ca], Aman Alam [pa], Balázs Úr [hu],
Piotr Drąg [pl], Nathan Follens [nl], Quentin PAGÈS [oc], Jiri Grönroos [fi],
Alexander Shopov [bg], Alan Mortensen [da], Efstathios Iosifidis [el]
41.rc.1
=======
* Make tests optional [Florian; !1975]
* Misc. bug fixes [Florian; !1974]
Contributors:
Florian Müllner