-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathNEWS
More file actions
1599 lines (1546 loc) · 49 KB
/
Copy pathNEWS
File metadata and controls
1599 lines (1546 loc) · 49 KB
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
phosh 0.56.0
------------
Released July 2026
* New load meter plugin for the top bar
* Allow to hide applications from the app-grid when GNOME Software is
not in use. This helps on immutable distro variants like
postmarketOS Duranium and Phosh's BengalOS to hide applications that
are shipped in the base image.
* Improvements and bug fixes:
* Allow to enable syncthing plugin via mobile settings
* Show notification when app can't be uninstalled
* Avoid slow startup notification (with e.g. Firefox) by tracking
apps we forked so they get more time during startup
* Unquote app-id's if the app accidentally quotes them fixing
another case of seemingly slow startup
* Avoid Bluetooth quick setting getting disabled on output changes
* Allow to rotate lock screen on tablets
* Apply cutout config changes immediately
* Lockscreen style improvements
* Some crash and leak fixes
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/999
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1238
* https://gitlab.gnome.org/World/Phosh/phosh/-/work_items/1339
* https://gitlab.gnome.org/World/Phosh/phosh/-/work_items/1343
* Contributors:
* Domenico Iezzi
* Gotam Gorabh
* Guido Günther
* johnwa
* nicole mikołajczyk
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Asier Saratsua Garmendia (eu)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Flynn Peck (kw)
* Hugo Carvalho (pt)
* Jürgen Benvenuti (de)
* Luiggi R. Cardoso (pt_BR)
* Martin (sl)
* Rafael Fontenelle
* Ryo Nakano (ja)
* Victoria Niedzielska (pl)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
* Марко Костић (sr)
phosh 0.55.0
------------
Released May 2026
* New syncthing quick setting
* Don't dim screen when there's no ambient sensor
* Various other bug fixes including leak fixes
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1333
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1267
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1303
* Contributors:
* Arun Mani J
* Evangelos Ribeiro Tzaras
* Guido Günther
* nicole mikołajczyk
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Christian Kirbach (de)
* Ekaterine Papava (ka)
* Hugo Carvalho (pt)
* Jiri Grönroos (fi)
* Martin (sl)
* Pierre Michel Augustin (ht)
* Ryo Nakano (ja)
* Yuri Chornoivan (uk)
* nicole mikołajczyk (pl)
* Марко Костић (sr)
phosh 0.54.0
------------
Released April 2026
* Status icons can now be implemented as plugins
* Show notification when app fails to start
* New status page in the location quick setting allows to set accuracy
* Make sure cutouts don't overlap buttons in the settings panel
* Update list of adaptive apps
* Make sure phosh-session always has a DBus session
* Drop gsd-wacom from session, it's gone in gsd
* Leak fixes and internal cleanups
* Contributors:
* Achill Gilgenast
* Andrey Skvortsov
* Arun Mani J
* Evangelos Ribeiro Tzaras
* Gotam Gorabh
* Guido Günther
* UI translations:
* Alexander Alexandrov Shopov (bg)
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Asier Saratsua Garmendia (eu)
* Balázs Úr (hu)
* Baurzhan Muftakhidinov (kk)
* Bruce Cowan (en_GB)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Flynn Peck (kw)
* Hugo Carvalho (pt)
* Juliano de Souza Camargo (pt_BR)
* Martin (sl)
* Ryo Nakano (ja)
* twlvnn kraftwerk (bg)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
* Марко Костић (sr)
phosh 0.53.0
------------
Released February 2026
* Various auto brightness improvements, e.g.
* remember auto brightness offset
* compensate for night light
* overview: Show thumbnails for launching apps
* overview: Style improvements
* polkit-prompt: Show more user data
* Activation fixes for notifications
(Needs https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/9269)
* caffeine: Allow to open plugin prefs from the status page
* Multiple other fixes (Use alias for Bluetooth devices, improve app icon
lookup, …)
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/647
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/813
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1229
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1280
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1287
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1292
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1297
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1300
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1298
* Contributors:
* AJ Dunevent
* Arun Mani J
* Guido Günther
* Rudra Pratap Singh
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Álvaro Burns (pt_BR)
* Danial Behzadi (fa)
* Efstathios Iosifidis (el)
* Ekaterine Papava (ka)
* Flynn Peck (kw)
* Fredrik Fyksen (nb)
* Jürgen Benvenuti (de)
* Martin (sl)
* Quentin PAGÈS (oc)
* Sabri Ünal (tr)
* Yuri Chornoivan (uk)
* twlvnn kraftwerk (bg)
phosh 0.52.1
------------
Released January 2026
* Prevent crash in gvc with newer pipewire 1.5.84 / wireplumber 0.5.13
* Contributors:
* Guido Günther
phosh 0.52.0
------------
Released January 2026
* Add `DebugControl` debug interface to control debug options at runtime
* Add brightness gesture to lockscreen
* Wi-Fi hotspot: Show QR code to ease connecting devices
* Bug fixes and internal cleanups
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/814
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1259
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1285
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1286
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1293
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1294
* Contributors:
* Achill Gilgenast
* Arun Mani J
* Guido Günther
* Rudra Pratap Singh
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Asier Saratsua Garmendia (eu)
* Danial Behzadi (fa)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Jiri Grönroos (fi)
* Juliano de Souza Camargo (pt_BR)
* Jürgen Benvenuti (de)
* Martin (sl)
* Rafael Fontenelle (pt_BR)
* Victor Dargallo (ca)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
phosh 0.51.0
------------
Released November 2025
* Add location quick setting
* caffeine: Allow to select duration and configure durations via mobile
settings
* brightness/auto-brightness improvements:
* Handle auto-brightness via a bucket based algorithm
* Let brightness slider be an offset around the auto-brightness value
* Icon next to brightness slider indicates auto-brightness on/off
* Gradually transition to new auto-brightness value
* Auto-brightness can be enabled/disabled via a status page
* torch: Allow to configure minimal brightness via hwdb/udev
* Fix upcoming-event’s plugin empty state
* Fix “Open settings” button position on devices with rounded corners
* Lots of internal cleanups and fixes
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1255
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1272
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1274
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1276
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1281
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1282
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/783
* Contributors:
* Arun Mani J
* Evangelos Ribeiro Tzaras
* Gotam Gorabh
* Guido Günther
* Robert Eckelmann
* Rudra Pratap Singh
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Efstathios Iosifidis (el)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Juliano de Souza Camargo (pt_BR)
* Martin (sl)
* Nathan Follens (nl)
* Sabri Ünal (tr)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
phosh 0.50.0
------------
Released October 2025
* Allow to open the top-bar settings panel easily
* Move brightness handling to phosh, it got dropped from g-s-d 49.
* Mark demo plugins as `NoDisplay` so they don't show in p-m-s
* Don't crash g-c-c when running nested
* Reset them when auto-HighContrast is turned off
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1261
* Contributors:
* Anna (cybertailor) Vyalkova
* Evangelos Ribeiro Tzaras
* Guido Günther
* UI translations:
* Emin Tufan Çetin (tr)
* Jiri Grönroos (fi)
* Jordi Mas i Hernandez (ca)
* Kristjan SCHMIDT (eo)
* Nathan Follens (nl)
* Philipp Kiemle (de)
* Sabri Ünal (tr)
* twlvnn kraftwerk (bg)
* Yaron Shahrabani (he)
phosh 0.49.0
------------
Released August 2025
* upcoming-events: Allow to exclude days without events
* Use phrosh portal when available
* overview: Don't let search entry take the whole width
* Improve media widget's cover art thumbnails
* Improve keypad and search bar style
* Cellbroadcast related fixes
* Add searchd
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1242
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1245
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/290
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/703
* Contributors:
* Achill Gilgenast
* Arun Mani J
* Evangelos Ribeiro Tzaras
* Gotam Gorabh
* Guido Günther
* hustlerone
* Rudra Pratap Singh
* Zander Brown
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Danial Behzadi (fa)
* Ekaterine Papava (ka)
* Juliano de Souza Camargo (pt_BR)
* Martin (sl)
* Yuri Chornoivan (uk)
* twlvnn kraftwerk (bg)
phosh 0.48.0
------------
Released June 2025
* New lockscreen plugin that allows to interact with all currently
running media players that use the MPRIS protocol.
* Build VAPI files so one can also write plugins in vala (See
https://gitlab.gnome.org/guidog/phosh-vala-plugins) for an example
* Enable Cell Broadcast dialogs by default. Mobile Settings has the
needed UI bits now.
* Update list of adaptive apps
* Various bug fixes and GTK4 preps
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1234
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1237
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1154
* Contributors:
* Arun Mani J
* fossdd
* Guido Günther
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Daniel Rusek (cs)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Martin (sl)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
* Álvaro Burns (pt_BR)
phosh 0.47.0
------------
Released May 2025
* notifications: Handle cellbroacast events from the desktop portal v2
spec
* app-list-model: Track StartupWMClass for better app-id matching
* Avoid flicker when unblanking lock screen with media widget present
* Add status page to feedback quick settings that allows to enable
"Do not disturb" and to go to the feedback settings easily
* Fix showing of active network on Wi-Fi status page when the network
has multiple access points
* Don't let OSD block input on the whole screen when shown
* Disable mobile data quick settings when SIM is locked
* More GTK4 preps
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1222
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1183
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1095
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1180
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1218
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1224
* Contributors:
* Arun Mani J
* fossdd
* Guido Günther
* UI translations:
* Álvaro Burns (pt_BR)
* Anders Jonsson (sv)
* Andi Chandler (en_GB)
* Antonio Marin (ro)
* Artur S0 (ru)
* Baxrom Raxmatov (uz)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Martin (sl)
* twlvnn kraftwerk (bg)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
phosh 0.46.0
------------
Released March 2025
* lockscreen: Allow to set background image. Off by default, can be enabled
via mobile-settings (or `gsettings`).
* Close quick-settings status pages when closing the top panel
* Notifications: Use slide down animation in the message tray and allow to focus
default action
* media-player: Use `can-play` to device whether we should show the widget
* media-player: Download cover-art when possible
* layout-manager: Handle notches/cutouts in the indicator areas. This
helps devices with a e.g. camera in the left display corner (like
the Nothing Phone).
* Use more consistent button press feedback
* wifi-quick-setting: Indicate ongoing Wi-Fi scans in the status page
* Add `phosh.gsettings(5)` manpage.
* Set more wallpaper friendly defaults and improve legibility, reduce
flicker, fix thumbnail scaling and other fixes.
* Simplify UI files and other bits preps for a GTK4 migration
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1138
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1208
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1136
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1152
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1217
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1220
* Contributors:
* Arun Mani J
* Bardia Moshiri
* Evangelos Ribeiro Tzaras
* Gotam Gorabh
* Guido Günther
* Sam Day
* Sebastian Krzyszkowiak
* Sicelo A. Mhlongo
* UI translations:
* Vasil Pupkin (be)
* Bruce Cowan (en_GB)
* Vincent Chatelain (fr)
* Andika Triwidada (id)
* Daniel Șerbănescu (ro)
* Jordi Mas i Hernandez (ca)
* Yaron Shahrabani (he)
phosh 0.45.0
------------
Released February 2025
* Detect captive portals and allow to open browser
* New quick setting plugin to switch display scales
* Create thumbnails for Screenshots
* Allow to uninstall apps from app-grid
* Close quick setting status pages when action was successful
* Add 'sound' capbility to notification server
* WWan enable/disable autoconnect with the connection so e.g.
mobile data doesn't turn on on resume
* Minimize and stabilize libphosh API
* prefs plugins: Remove the last remaining GtkDialog and use
AdwEntryRow
* Respect week number setting in calendar widget
* Avoid crash when fixing between certain combinations of fractional
scales (with e.g. wlr-randr)
* Allow libphosh users to hide the whole overview/bottom bar
* Fade in system modal dialogs
* Several background image related fixes
* Fix crash on unlock with media player widget
* Simplify most UI files
* Issues fixed:
* https://gitlab.gnome.org/guidog/meta-phosh/-/issues/16
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/989
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1139
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1159
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1166
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1169
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1171
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1173
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1176
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1177
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1181
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1184
* Contributors:
* Adam Honse
* Arun Mani J
* Cédric Bellegarde
* Evangelos Ribeiro Tzaras
* Gotam Gorabh
* Guido Günther
* Sam Day
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Jiri Grönroos (fi)
* Jordi Mas i Hernandez (ca)
* Martin (sl)
* Rafael Fontenelle (pt_BR)
* Sabri Ünal (tr)
* twlvnn kraftwerk (bg)
* Yuri Chornoivan (uk)
phosh 0.44.0
------------
Released December 2024
* Set background in overview
* Allow to unfullscreen fullscreen apps from the overview
* Handle Cell broadcast messages. Shown as system modal dialog
(needs yet unreleased ModemManger / libmm-glib)
* Use AdwPreferencesDialog for prefs plugins giving more mobile
friendly dialogs
* Notification style fixes
* Animate hiding notification banners
* Internal cleanups and fixes
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1012
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/901
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/377
* Contributors:
* Gotam Gorabh
* Guido Günther
* UI translations:
* Alexandre Franke (fr)
* Ekaterine Papava (ka)
* Hugo Carvalho (pt)
* Jordi Mas i Hernandez (ca)
* Pierre Michel Augustin (ht)
* Tim Sabsch (de)
* Yaron Shahrabani (he)
* twlvnn kraftwerk (bg)
phosh 0.43.0
------------
Released November 2024
* Improved quick settings
- Do away with long press to open status pages
- Show status pages below quick settings
- Custom quick settings can now have status pages too
* Support accent colors
* New quick setting: Simple Pomodoro timer (can be
configured via Mobile Settings)
* Notification system improvements and fixes, e.g.
- Fix some banners not showing
- Animate hiding applications in the tray and more fixes
- More consistent event feedback for notifications (so that
e.g. there's not only LED feedback when the device is
unused/locked)
- Try harder to find an application item
* Allow to disable lockscreen authentication
* Save screenshots to screenshots folder
* Lots of other fixes, focus and style improvements
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1090
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1118
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1124
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1125
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1127
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1130
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1132
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1133
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1134
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1143
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1144
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/221
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/351
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/728
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/928
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/964
* https://source.puri.sm/Librem5/feedbackd/-/merge_requests/69
* Contributors:
* Anna (cybertailor) Vyalkova
* Arun Mani J
* Eugenio Paolantonio (g7)
* Evangelos Ribeiro Tzaras
* Gotam Gorabh
* Guido Günther
* Kenny Levinsen
* Sam Day
* Teemu Ikonen
* UI translations:
* Anders Jonsson (sv)
* Andi Chandler (en_GB)
* Antonio Marin (ro)
* Artur S0 (ru)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Ekaterine Papava (ka)
* Jordi Mas i Hernandez (ca)
* Juliano de Souza Camargo (pt_BR)
* Martin (sl)
* Nathan Follens (nl)
* Rafael Fontenelle (pt_BR)
* Vincent Chatelain (fr)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
phosh 0.42.0
------------
Released September 2024
* lockscreen: Allow to adjust to smaller screen sizes
* lockscreen: Swap horizontal deck and vertical carousel to not accidentally
trigger swipe when entering PIN
* upcoming-events plugin: Allow to configure number of days
* torch: Hide brightness slider when there's only a single brightness level
* Improve notification appearance when there's multiple notifications from the
same app
* Use parent's icon for toplevels without a proper matching icon
* Handle WWan network types better
* Make Wi-Fi hotspot insensitive on lock screen to be consistent
with Wi-Fi network switching.
* Make compatibility with g-s-d 47
* In preparation of Cell Broadcast support use mm-glib for
ModemManager interaction
* Ease setup and lib versioning for libphosh-rs users
* Fix crashes related to scale changes, Wi-Fi hotspot and other bug
fixes
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1050
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1027
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/901
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1104
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1108
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1115
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/899
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/970
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/858
* Contributors:
* Arun Mani J
* Evangelos Ribeiro Tzaras
* Gotam Gorabh
* Guido Günther
* Jared Toomey
* Sam Day
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Balázs Úr (hu)
* Bruce Cowan (en_GB)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Jiri Grönroos (fi)
* Jordi Mas i Hernandez (ca)
* Juliano de Souza Camargo (pt_BR)
* Jürgen Benvenuti (de)
* Martin (sl)
* Sabri Ünal (tr)
* Vasil Pupkin (be)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
phosh 0.41.0
------------
Released August 2024
* media-player: Add track position, length and progress bar
* Add (optional) Wi-Fi Hotspot Quick Setting
* Add Bluetooth Quick Setting status page allowing to
connect/disconnect known devices
* Allow to (optionally) put the phone in silent mode when pressing Vol-
on incoming calls
* Give Quick Setting status pages (and their individual rows) more
vertical space so selecting from a large list of Wi-Fi networks or
Bluetooth devices becomes less fiddly
* Fix keypad layouts in RTL languages
* Allow lock screen to have an extra page (mostly useful to libphosh
consumers)
* Switch all git submodules to meson subprojects (following what we
did in phoc a while back)
* Fix remaining introspection nits so we can ran gir-scanner and gi-docgen
with --fatal-warnings
* Lots of internal improvements e.g. allowing us to do new status pages
with less boilerplate
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1092
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/922
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/780
* Contributors:
* Arun Mani J
* Cédric Bellegarde
* Evangelos Ribeiro Tzaras
* Guido Günther
* Sam Day
* Teemu Ikonen
* Xiao Pan
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Balázs Úr (hu)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Daniel Șerbănescu (ro)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Jiri Grönroos (fi)
* Jordi Mas i Hernandez (ca)
* Jürgen Benvenuti (de)
* Martin (sl)
* Sabri Ünal (tr)
* Scrambled 777 (hi)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
phosh 0.40.0
------------
Released June 2024
* New quick setting plugins:
* Dark style toggle
* Mobile data toggle
* Other improvements:
* Allow to suspend when device is locked
* Shorten power menu long press delay
* Wire up screenshot keybinding
* Tweak multiple gsetting overrides (default idle-delay, unlock
sim, sound theme, …)
* Fix too large and too small icons in folder buttons
* launcher-box: Properly align count and progress to not look out
of place
* Move launched processes to transient scope
* Split settings enums into separate header so it can be shared with
mobile settings.
* Further speed up build by building a library for the stubs
* session: Drop support for `--builtin` session fallback
* Fix background loading related crash
* Add option to install shared lib for Rust binding generation
* Allow lockscreen and shell classes to be overridable from the
Rust bindings
* Add modem mock mocks test status and mobile data connections
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/691
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1069
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1069
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/990
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/931
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/963
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1071
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1073
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1072
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1036
* Contributors:
* Arun Mani J
* Gotam Gorabh
* Guido Günther
* Sam Day
* Teemu Ikonen
* UI translations:
* Anders Jonsson (sv)
* Antonio Marin (ro)
* Artur S0 (ru)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Daniel Șerbănescu (ro)
* Ekaterine Papava (ka)
* Jiri Grönroos (fi)
* Jordi Mas i Hernandez (ca)
* Martin (sl)
* Scrambled 777 (hi)
* Yosef Or Boczko (he)
* Yuri Chornoivan (uk)
phosh 0.39.0
------------
Released May 2024
* Support folders to organize apps in the overview
* Optional night light quick setting
* Lots of introspection/documentation fixups in preparation for the Rust bindings
* Test suite improvements (stable clock, use shell state instead of
timeouts to track state changes, mpris metadata, …)
* Split generated headers and sources to speed up build and save CI resources
* Improve translatability of timestamp labels
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1042
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1056
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1058
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/785
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/868
* Contributors:
* Arun Mani J
* Guido Günther
* Sam Day
* UI translations:
* Anders Jonsson (sv)
* Andi Chandler (en_GB)
* Andika Triwidada (id)
* Artur S0 (ru)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Daniel Șerbănescu (ro)
* Ekaterine Papava (ka)
* Jordi Mas i Hernandez (ca)
* Martin (sl)
* Quentin PAGÈS (oc)
* Sabri Ünal (tr)
* Scrambled 777 (hi)
* Yaron Shahrabani (he)
* Yuri Chornoivan (uk)
phosh 0.38.0
------------
Released April 2024
* Allow launcher entries to display count and progress
* Better handle devices with rounded corners
* Handle data: URIs in the media-player
* OSD improvements in case there's no level
* Fix some background scaling related issued introdueced in 0.37.0
* Fix session startup with gnome-session 46
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1035
* Contributors:
* Daniel Rusek
* Guido Günther
* Jesús Higueras
* UI translations:
* Anders Jonsson (sv)
* Artur S0 (ru)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Daniel Șerbănescu (ro)
* Ekaterine Papava (ka)
* Jiri Grönroos (fi)
* Jordi Mas i Hernandez (ca)
* Jürgen Benvenuti (de)
* Martin (sl)
* Sabri Ünal (tr)
* Vittorio Monti (it)
* Yuri Chornoivan (uk)
phosh 0.37.0
------------
Released March 2024
* Allow to select Wi-Fi network via quick setting
* Allow plugins to implement quick settings
* Allow plugins to use selected phosh internals
* Load background images async
* Add caffeine quick setting
* More bug, keyboard navigation and style fixes
* Issues fixed:
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1025
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/447
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/910
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/743
* https://gitlab.gnome.org/World/Phosh/phosh/-/issues/829
* Contributors:
* Arun Mani J
* Guido Günther
* Rodney Lorrimar
* Sicelo A. Mhlongo
* UI translations:
* Anders Jonsson (sv)
* Artur S0 (ru)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Ekaterine Papava (ka)
* Florentina Mușat (ro)
* Jiri Grönroos (fi)
* Jordi Mas i Hernandez (ca)
* Jürgen Benvenuti (de)
* Pablo Barciela (es)
* Sabri Ünal (tr)
* Vittorio Monti (it)
* Yosef Or Boczko (he)
* Yuri Chornoivan (uk)
phosh 0.36.0
------------
Released February 2024
* Allow to tweak home bars's osk long press delay
* Drop home bar's animated arrow
* Improve app-id mappings
* Don't hard code Cantarell Font
* Pick up night light on newly plugged screens
* Unbreak service file with newer systemd
* More bug fixes and cleanups
* Issues fixed:
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1016
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1019
* Contributors:
* Anna “CyberTailor”
* Bardia Moshiri
* Guido Günther
* Kai Lüke
* Sertonix
* UI translations:
* Martin (sl)
* Pierre Michel Augustin (ht)
phosh 0.35.0
------------
Released January 2024
* Make home bar smaller. OSK opens via long press on pill.
* Indicate 5G when detected
* Fix suspend-inhibitor when hotspot is on
* Fix swipe back when lockscreen widget box is open
* Issues fixed:
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1010
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/1001
- https:// gitlab.gnome.org/World/Phosh/phosh/-/issues/380
* Contributors:
* Bardia Moshiri
* Guido Günther
* mathew-dennis
* UI translations:
* Artur S0 (ru)
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Yosef Or Boczko (he)
phosh 0.34.0
------------
Released December 2023
* End session dialog improvements
* Bring back night light
* Use ext-idle-notify-v1 Wayland protocol (requires phoc >= 0.33.0)
* Bump dependencies: Switch to gmobile 0.0.4 and libcall-ui 0.1.1
* Small UI improvements
* CI improvements: Check coding style, improve ci-fairy checks
* Issues fixed:
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/994
- https://gitlab.gnome.org/World/Phosh/phosh/-/issues/875
- https://source.puri.sm/Librem5/OS-issues/-/issues/343
* Contributors:
* Arun Mani J
* Guido Günther
* UI translations:
* Artur S0 (ru)
* Jordi Mas i Hernandez (ca)
* Juliano de Souza Camargo (pt_BR)
* Vittorio Monti (it)
phosh 0.33.0
------------
Released November 2023
* Add launcher lock screen plugin
* Allow to show password in all system modal prompts
* Issues fixed:
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/848
* Contributors:
* Guido Günther
* pseudorandom-x
* UI translations:
* Anders Jonsson (sv)
* Emin Tufan Çetin (tr)
* Florentina Mușat (ro)
* Sabri Ünal (tr)
* Yuri Chornoivan (uk)
phosh 0.32.0
------------
Released October 2023
* Allow apps to suppress notification feedback
* Hide separator when there are no favorites
* Feedback robustness
* Doc updates
* Officially deprecate reading `rootston.ini`
* Issues fixed:
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/730
* Contributors:
* Guido Günther
* Keegan Sabo
* UI translations:
* Tjipke van der Heide (fy)
* Vasil Pupkin (be)
phosh 0.31.1
------------
Released September 2023
* Fix version in meson file
* Contributors:
* Guido Günther
phosh 0.31.0
------------
Released September 2023
* Ship portal configuration for xdg-desktop-portal
* Handle tablet-mode-switch of convertibles
* Contributors:
* Guido Günther
* Simon McVittie
* UI translations:
* Artur S0 (ru)
* Asier Sarasua Garmendia (eu)
* Boyuan Yang (zh_CN)
* Efstathios Iosifidis (el)
* Fran Dieguez (gl)
* Jürgen Benvenuti (de)
* Martin (sl)
* Nathan Follens (nl)
* Sabri Ünal (tr)
phosh 0.30.0
------------
Released August 2023
* Save screenshots at full resolution
* Fix missing icon when e.g. connecting to a car's audio unit via BT
* Improve ongoing call notification.
* Update gvc submodule fixing a crash when restart pw-pulse
* Don't require gsd-xsettings in the session. No need to spawn
XWayland for that.
* Update gmobile to support more notches (Poco F1 and FF4)
* Issues fixed:
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/968
* Contributors:
* anteater
* Guido Günther
* UI translations:
* Balázs Úr (hu)
* Daniel Rusek (cs)
* Daniel Șerbănescu (ro)
* Jürgen Benvenuti (de)