-
Notifications
You must be signed in to change notification settings - Fork 3
/
NEWS
1079 lines (1040 loc) · 31.7 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
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)
* Martin (sl)
* Piotr Drąg (pl)
* Yosef Or Boczko (he)
phosh 0.29.0
------------
Released July 2023
* Add audio device details and selection to settings
* Use animation with automatic HighContrast to indicate what is
happening
* Automatically avoid notches when device information is available
* Add lockscreen notification about ongoing calls
* Allow lockscreen notifications to take more vertical space
* Allow to suspend from system menu
([when enabled](https://gitlab.gnome.org/World/Phosh/phosh/-/wikis/Configuration))
* Fade out system modal dialogs
* Emergency info preferences plugin robustness
* Robustness fixes around notifications and feedback
* Make ASAN tests more useful again
* Issues fixed:
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/591
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/593
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/890
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/922
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/951
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/955
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/957
* Contributors:
* Guido Günther
* Sam Hewitt
* undef
* UI translations:
* Anders Jonsson (sv)
* Danial Behzadi (fa)
* Daniel Șerbănescu (ro)
* Ekaterine Papava (ka)
* Jiri Grönroos (fi)
* Jordi Mas i Hernandez (ca)
* Martin (sl)
* Piotr Drąg (pl)
* Prasanta Hembram (sat)
* Yosef Or Boczko (he)
* Yuri Chornoivan (uk)
phosh 0.28.0
------------
Released May 2023
* Allow notifications to wake up the screen. Can be configured by
category and urgency.
* Allow lockscreen to work on smaller displays
* Allow to reboot / log out from the settings power menu
* Styling improvements in several places
* Smoothen transition from splash to application
* Handle super key to open overview
* Handle auto repeat on grabbed keys (e.g. volume keys)
* Update to libcall-ui 0.1.0
* Bump minimal supported GNOME versions to 42 and glib to 2.72
* Issues fixed:
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/525
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/934
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/563
* Contributors:
* Alistair Francis
* Eugenio Paolantonio (g7)
* Evangelos Ribeiro Tzaras
* Guido Günther
* Sam Hewitt
* Suraj Kumar Mahto
* Thomas Booker
* UI translations:
* Danial Behzadi (fa)
* Daniel Rusek (cs)
* Daniel Șerbănescu (ro)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Jordi Mas i Hernandez (ca)
* Michael Oppliger (de)
* Pablo Correa Gómez (es)
* Piotr Drąg (pl)
* Vittorio Monti (it)
* Yosef Or Boczko (he)
* Yuri Chornoivan (uk)
phosh 0.27.0
------------
Released May 2023
* Initial emergency call support (needs to be enabled via GSetting)
* New menu on power button long press
* Allow to take fullscreen screenshots without external tools
* Honor applications feedback level for notifications
* Styling and layout improvements for system modal dialog
* Issues Fixed:
https://gitlab.gnome.org/GNOME/calls/-/issues/30
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/671
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/914
* Contributors:
* CoderThomasB
* Guido Günther
* Sam Hewitt
* UI translations:
* Aleksandr Melman (ru)
* Anders Jonsson (sv)
* Danial Behzadi (fa)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Fran Dieguez (gl)
* Jiri Grönroos (fi)
* Martin (sl)
* Piotr Drąg (pl)
* Yosef Or Boczko (he)
* Yuri Chornoivan (uk)
* Мирослав Николић (sr)
phosh 0.26.0
------------
Released April 2023
* Inhibit suspend when WiFi hotspot is active
* Test suite improvements
* Power button handling improvements
* Avoid deprecations with GTK 4.10 in preferences plugins
* Make sure quick settings take enough vertical
space on the lock screen to avoid a needless scrollbar
* Issues Fixed:
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/903
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/907
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/909
https://gitlab.gnome.org/World/Phosh/phosh/-/issues/911
* Contributors:
* Guido Günther
* Sam Hewitt
* Newbyte
* UI translations:
* Aleksandr Melman (ru)
* Anders Jonsson (sv)
* Asier Sarasua Garmendia (eu)
* Balázs Úr (hu)
* Danial Behzadi (fa)
* Daniel Șerbănescu (ro)
* Hugo Carvalho (pt)
* Jiri Grönroos (fi)
* Jürgen Benvenuti (de)
* Martin (sl)
* Piotr Drąg (pl)
* Sabri Ünal (tr)
* Yosef Or Boczko (he)
* Yuri Chornoivan (uk)
* Nathan Follens (nl)
phosh 0.25.1
------------
Released March 2023
* Avoid race that might end up with two overlaying lock screens
e.g. after suspend (#838)
* Limit slider width in settings (#898)
* Contributors:
* Guido Günther
* Newbyte
* Sam Hewitt
phosh 0.25.0
------------
Released March 2023
* New plugin to configure emergency contact preferences
* Quick Settings menu style refresh
* Separate locking from blanking
* Animate status icon transitions
* Improve settings menu usability in landscape
* Lots of internal cleanups
* Contributors:
* Cédric Bellegarde
* Chris Talbot
* Guido Günther
* Sam Hewitt
* UI translations:
* Anders Jonsson (sv)
* Danial Behzadi (fa)
* Daniel Șerbănescu (ro)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Hemish (hi)
* Jürgen Benvenuti (de)
* Martin (sl)
* Yosef Or Boczko (he)
* Yuri Chornoivan (uk)
phosh 0.24.0
------------
Released January 2023
* Add manpages
* Various stability fixes
* Better detect logind session (to unbreak `loginctl (un)lock-session`)
* Testsuite improvements
* Update to gmobile 0.0.1
* Honor stricter protocol implementation in wlroots 0.16.0
* Contributors:
* Andrey Skvortsov
* Guido Günther
* UI translations:
* Aleksandr Melman (ru)
* Anders Jonsson (sv)
* Daniel Șerbănescu (ro)
* Ekaterine Papava (ka)
* Emin Tufan Çetin (tr)
* Goran Vidović (hr)
* Hemish (hi)
* Hugo Carvalho (pt)
* Jürgen Benvenuti (de)
* Martin (sl)
* Yuri Chornoivan (uk)
phosh 0.23.0
------------
Released December 2022
* New lockscreen plugin for personal/emergency information
* Allow plugins to have UI to set preferences
* Ease creating plugin by better examples, improved helpers
and less duplication.
* Switch docs to gi-docgen
* Contributors:
Chris Talbot
Evangelos Ribeiro Tzaras
Guido Günther
* UI translations:
Aleksandr Melman (ru)
Hugo Carvalho (pt)
Martin (sl)
Yosef Or Boczko (he)
Zurab Kargareteli (ka)
phosh 0.22.0
------------
Released October 2022
* Use 10% steps for battery info icon
* Honor suspend time in upcoming events refresh
* Allow notifications to have actions on the lock screen
* Activity close-button style refresh
* Contributors:
codewood
Guido Günther
Sam Hewitt
* UI translations:
Anders Jonsson (sv)
Balázs Úr (hu)
Daniel Șerbănescu (ro)
Hugo Carvalho (pt)
Nathan Follens (nl)
Vittorio Monti (it)
Vojtěch Vengrin (cs)
Yuri Chornoivan (uk)
Zurab Kargareteli (ka)
Danial Behzadi
Balázs Úr
phosh 0.21.1
------------
Released September 2022
* Bug fixes and cleanups (also to catch up with glib 2.74)
* Update to libcall-ui 0.0.5
* Lots of translation updates
* Contributors:
Evangelos Ribeiro Tzaras
Fiona Klute
Guido Günther
Sam Hewitt
* UI translations:
Aleksandr Melman (ru)
Anders Jonsson (sv)
Danial Behzadi (fa)
Daniel Șerbănescu (ro)
Emin Tufan Çetin (tr)
Goran Vidović (hr)
Jiri Grönroos (fi)
Jürgen Benvenuti (de)
Martin (sl)
Piotr Drąg (pl)
Rūdolfs Mazurs (lv)
Vittorio Monti (it)
Yosef Or Boczko (he)
Yuri Chornoivan (uk)
Zurab Kargareteli (ka)
Марко Костић (sr)
phosh 0.21.0
------------
Released September 2022
* Add (experimental) upcoming-events lock screen
widget
* Allow to disable GTK animations again
* Improve screenshot support
* Report a version via DBus
* Update libcall-ui to 0.0.4
* More bug fixes
* Contributors:
Evangelos Ribeiro Tzaras
Guido Günther
Sebastian Krzyszkowiak
* UI translations:
Balázs Úr (hu)
Emin Tufan Çetin (tr)
Goran Vidović (hr)
Jiri Grönroos (fi)
Yuri Chornoivan (uk)
phosh 0.20.0
------------
Released August 2022
* more bug fixes related to lockscreen,
drag surfaces and high contrast.
* Allow to switch to high contrast theme based on
ambient sensor
* Contributors:
Guido Günther
Sam Hewitt
Sebastian Krzyszkowiak
phosh 0.20.0~beta3
------------------
Released July 2022
* This is a beta release
* Many bug fixes related to the overview, lockscreen, osk handling,
screen rotation, tests and drag_surfaces.
* Support plugins on the lock screen
* Add a symbolic icon for phosh
* Contributors:
Alexander Mikhaylenko
Guido Günther
Sam Hewitt
Sebastian Krzyszkowiak
* UI translations:
Efstathios Iosifidis (el)
Vittorio Monti (it)
Zurab Kargareteli (ka)
Мирослав Николић (sr)
phosh 0.20.0~beta2
-------------------
Released June 2022
* This is a beta release
* Fix top-bar's layer depending on state (locked, etc.)
* Fix multiple visual glitches related to overview and settings
* Improve OSK handling
* Switch to libcall-ui 0.0.3
* Fix rotation manager not getting an output for some
display types
* Style improvements for notifications
* Contributors:
Evangelos Ribeiro Tzaras
Gerben Jan Dijkman
Guido Günther
Linus Walleij
Pablo Barciela
Sam Hewitt
Sebastian Krzyszkowiak
* UI translations:
Aleksandr Melman (ru)
Anders Jonsson (sv)
Danial Behzadi (fa)
Daniel Șerbănescu (ro)
Jiri Grönroos (fi)
Jürgen Benvenuti (de)
Nathan Follens (nl)
Piotr Drąg (pl)
Yosef Or Boczko (he)
Yuri Chornoivan (uk)
phosh 0.20.0~beta1
-------------------
Released May 2022
* This is a beta release
* Home- and top-bar swipe gesture support
* Make settings and top-bar available on lock screen
* Move settings menu closer to designs
* Feedback indicator in top-bar
* Allow to view app details
* New DisplayConfig properties like
ApplyMonitorsConfigAllowed and NightLightSupported.
* Another large round of cleanups and fixes
including a fix for the HKS indicator
* Contributors:
Arnaud Ferraris
Guido Günther
InsanePrawn
Nathan Sherwood
Pablo Correa Gómez
Sam Hewitt
Sebastian Krzyszkowiak
Thomas
* UI translations:
Balázs Úr (hu)
Danial Behzadi (fa)
Daniel Șerbănescu (ro)
Emin Tufan Çetin (tr)
Hugo Carvalho (pt)
Jiri Grönroos (fi)
Luna Jernberg (sv)
Nathan Follens (nl)
Pablo Barciela (es)
Piotr Drąg (pl)
Quentin PAGÈS (oc)
Vittorio Monti (it)
Yosef Or Boczko (he)
Yuri Chornoivan (uk)
Zurab Kargareteli (ka)
phosh 0.17.0
------------
Released: March 2022
* Access Portal support
* Mobile data indicator
* Suspend after resume fixes
* Contributors:
Florian Loers
Guido Günther
Kai Lüke
Pablo Barciela
Sam Hewitt
ZenWalker
* UI translations:
Emin Tufan Çetin (tr)
free software (es)
Hugo Carvalho (pt)
Jiri Grönroos (fi)
Martin (sl)
Pablo Barciela (es)
Piotr Drąg (pl)
Prasanta Hembram (sat)
Мирослав Николић (sr)
phosh 0.16.0
------------
Released: February 2022
* Fading labels in the overview
* Keypad can shuffle buttons
* More style refresh
* Better ASAN coverage in tests
* Update to libcall-ui 0.0.2
* Plenty of fixes and cleanups
* Contributors:
Adrien Plazas
Evangelos Ribeiro Tzaras
Guido Günther
Pablo Barciela
Sam Hewitt
* UI translations:
Danial Behzadi (fa)
Daniel Șerbănescu (ro)
Fran Dieguez (gl)
Marc Riera (ca)
Matheus Barbosa (pt_BR)
Yosef Or Boczko (he)
phosh 0.15.0
------------
Released: January 2022
* Swipeable notification frames
* VPN quicksettings, authentication and status icon
* "Run command" prompt improvement
* First parts of style refresh
* Make osk-stub more useful for debugging
* Hide some quick settings when hardware is not present
* Bring back gamma control protocol support
* Allow arbitrary passwords
* Rather large number of fixes
* Contributors:
Alexander Mikhaylenko
Evangelos Ribeiro Tzaras
Guido Günther
Pablo Barciela
PanzerSajt
Sam Hewitt
Sebastian Krzyszkowiak
* UI translations:
Anders Jonsson (sv)
Danial Behzadi (fa)
Daniel Șerbănescu (ro)
Fabio Tomat (fur)
Hugo Carvalho (pt)
Nathan Follens (nl)
Rafael Fontenelle (pt_BR)
Vittorio Monti (it)
Yuri Chornoivan (uk)
Matej Urbančič (sl)
phosh 0.14.1
------------
Released: December 2021
* Show avatars during phone calls on lockscreen
* Allow for DTMF during phone calls on lockscreen
* Improve docked mode when phone screen is off
* Improve thumbnails in overview
* Add initial "Run command" prompt (Alt-F2)
* Plenty of bug fixes and cleanups
* Contributors: Evangelos Ribeiro Tzaras, Sebastian Krzyszkowiak, Florian Loers,
Dorota Czaplejewicz, Hunman, Pablo Barciela, Guido Günther
* UI translations:
Anders Jonsson (sv)
Luna Jernberg (sv)
Yuri Chornoivan (uk)
phosh 0.14.0
------------
Released: October 2021
* Launch splash support (Guido Günther)
* Move "Show all apps" toggle to the bottom (Guido Günther)
* Media player widget enhancements (Oliver Smith, Guido Günther)
* Fade in shell on startup to avoid flicker (Guido Günther)
* App icons on activities are now centered (Florian Loers)
* Test suite generates screenshots (Guido Günther)
* Wifi hotspot mode indicated in the top bar (Mohammed Sadiq)
* Music player is paused when headphones get unplugged (Guido Günther)
* Better app_id handling (Sebastian Krzyszkowiak)
* Some activity rendering improvements (Guido Günther)
* Some leak fixes
* UI translations:
Danial Behzadi (fa)
Goran Vidović (hr)
Hugo Carvalho (pt)
Jiri Groenroos (fi)
Matej Urbančič (sl)
Nathan Follens (nl)