-
Notifications
You must be signed in to change notification settings - Fork 25
/
changelog_guacamoleb.txt
1227 lines (1178 loc) · 84.2 KB
/
changelog_guacamoleb.txt
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
====================
01-10-2024
====================
* device/oneplus/sm8150-common
a07a0b2 sm8150-common: Enable config_vibrateOnIconAnimation [Dan Pasanen]
93a2fdf sm8150-common: Build CLO Telephony packages [Cyber Knight]
ea7c5ef sm8150-common: Build libprotobuf-cpp-full-3.9.1-vendorcompat [basamaryan]
aa33963 sm8150-common: Build libprotobuf-cpp-lite-3.9.1-vendorcompat [LuK1337]
1d727d2 sm8150-common: Build telephony packages [Harish]
c5b3ee7 sm8150-common: overlay: Correct SystemUI apk name and path for pinner service [Ruchit Marathe]
c4cd69e sm8150-common: overlay: Pin SystemUIGoogle [NurKeinNeid]
6170d5d sm8150-common: Disable continuous transaction tracing on all build types [SamarV-121]
fe98ab6 sm8150-common: Move FaceUnlock indication above UDFPS icon [Fabian Leutenegger]
a2c4adb system: enable adb on boot [Matheus]
484aefe sm8150-common: ViPER4Android FX support *Prerequisite: git clone https://github.com/swiitch-OFF-Lab/packages_apps_ViPER4AndroidFX packages/apps/ViPER4AndroidFX [Master]
5612ce6 sm8150-common: overlay: Allow more cached apps in the background * Google has provisioned this on the Pixel 5 (RQ1A.201205.010) to utilize the 8 GB of RAM better, and I have also observed that a lightweight selection of apps was hitting the cached app limit before exhausting RAM on another device with 8 GB of RAM [kdrag0n]
1bc9962 sm8150-common: overlay: Compact cached app heaps in the background * Background ART heap compaction for cached apps has been recommended for Android Go devices for a while, and Google has enabled it for the Pixel 5 on RQ1A.201205.010. This feature should help fit more cached apps in memory [kdrag0n]
edb6272 sm8150-common: Append build time to zip name [Harish]
388ad76 sm8150-common: Inherit device/qcom/common - Also include QCOM core-utils and exclude QCOM SEPolicy. [Cyber Knight]
b4f2c88 sm8150-common: Build Lineage Health HAL [Michael Bestas]
9cfc20b sm8150-common: Nuke duplicate genfscon entries [Harish]
4d0ee59 Revert "sm8150-common: Add support for AutoDCDimService" [Harish]
b6b3d37 Revert "Support doze tap sensor" [Harish]
b05dfa2 sm8150-common: Switch to Neptune [Harish]
9e06754 Derpify [Harish]
c754acc Revert "KeyHandler: Support platform side pocket mode" [Harish]
dd09155 DeviceSettings: Auto resize text in alert slider dialog [Ido Ben-Hur]
* kernel/oneplus/sm8150
52e9f6a5 neptune: Update to V5.5 [Codecity001]
b469a5c Merge branch 'android-4.14-stable' of https://android.googlesource.com/kernel/common into neptune-g [Codecity001]
====================
01-09-2024
====================
====================
01-08-2024
====================
* device/oneplus/guacamoleb
cf6a40e overlay: set alert slider ui location [John Galt]
* vendor/google/gms
9186bd6 track pixel preinstalled packages xmls [John Galt]
====================
01-07-2024
====================
* frameworks/base
abddc2c Rename removeAllProcessGroups() into removeAllEmptyProcessGroups() [Bart Van Assche]
* kernel/oneplus/sm8150
f5776a79 fork: do not app boost within 200ms [John Galt]
552ac17 cgroup: move ta attach devfreq boost to always [John Galt]
3de758c sbalance: balance on fork [John Galt]
* packages/apps/DerpLauncher
32a2fb0 DerpLauncher: Prevent NPE when using custom themed icons [minaripenguin]
* packages/apps/DerpSpace
f2fabbf Revert "Revert "DerpSpace: General tweaks: User toggle for unlimited g00gle ph0t0s st0rage [2/2]"" [NurKeinNeid]
* packages/apps/Settings
8451e0e Let "Other options" get injected [Chirayu Desai]
c39636f Copy Wi-Fi non-persistent MAC randomization to other options [Aayush Gupta]
15f3c97 Add standalone preference for SensorsOff tile [Aayush Gupta]
69d72c1 Copy Restrict cleartext network traffic to other options [Aayush Gupta]
cfa7352 Settings: Add a new fragment for other options [Aayush Gupta]
* vendor/derp
383bdca config: allow overriding ro.control_privapp_permissions [Tobias Merkel]
a23a843 prebuilt: init: derp-system: hide Magisk better [Simao Gomes Viana]
====================
01-06-2024
====================
* build/make
b1f6318 Merge tag 'android-14.0.0_r20' of https://android.googlesource.com/platform/build into HEAD [NurKeinNeid]
* frameworks/av
5b6b477 Merge tag 'android-14.0.0_r20' of https://android.googlesource.com/platform/frameworks/av into HEAD [NurKeinNeid]
* frameworks/base
9014238 Add other options to settings injectable mappings [Chirayu Desai]
e6652af BatteryStatsViewer: Fix theme [Michael Bestas]
bb55e6a BatteryStatsViewer: Fix initial activity after launch [Michael Bestas]
b1fbcb7 BatteryStatsViewer: Add summary for IA preference [Michael Bestas]
881dd91 BatteryStatsViewer: Remove some hardcoded strings [Michael Bestas]
6028759 Create IA entry for BatteryStatsViewer [Oliver Scott]
88d7d2d SystemUI: biometrics: Follow user setting to confirm face unlock [Pranav Vashi]
881792f AppLock: Allow using face unlock for biometric authentication [Pranav Vashi]
0d2d374 LockPatternUtils: Decrease minimum pin length for auto confirmation [Mesquita]
6af805a core: Enable freeform windows assets preloading [minaripenguin]
64fdf04 SystemUI: flags: Enable new privacy dialogue [aswin7469]
7d3ce62 Remove READ_DEVICE_CONFIG checks. [Ted Bauer]
ec94782 Do not assistant delay for media notifications [WoongKi Min]
078752b FaceSense: Vibrate on successful authentication [Adithya R]
dcd7f2d fixup! base: Initial SenseProvider for FaceSense service [Chris Crump]
24a1edf derpUtils: Add isPackageAvailable method [shivatejapeddi]
8170ac7 core: Enable freeform/multiple windows feature by default [minaripenguin]
2872837 base: Avoid hiding development status to system apps [minaripenguin]
fc742fc base: Hide ADB and developer setting enable status [someone5678]
b7826d6 SystemUI: Improve ripple animation color [minaripenguin]
bd44a28 SystemUI: WifiStandard: Avoid usage of Resources#getIdentifier() [Dhina17]
81e183f SystemUI: Introduce wifi standard icon feature [1/2] [minaripenguin]
cfdf7ec Revert "Show charging notification when device is being charged via USB, with USB data disabled." [Pranav Vashi]
a7133fa9 SystemUI: Workaround for systemui crash caused by gboard [minaripenguin]
ed1a4a5 QS Tile: Make QS Ripple animation more prominent [StarkDroid]
aefdc53 QS Tile: Set ripple color to accent by default [StarkDroid]
792cad9 QSTile: More slower & Gradual QS Fade-in/out animation [StarkDroid]
9032ffb SettingsLib: Handle WifiService being null [Sebastiano Barezzi]
16ef2ae UI: Adjust default navbar layouts [Andy CrossGate Yan]
1ffec90 SystemUI: unify keyguard font style [maxwen]
55fb1e6 AOD: Sleep when proximity is covered for 3 secs [PMS22]
06cef13 Fix action bar font family on material themes [Henrique Silva]
ef80c76 SystemUI: Fix toggling lockscreen rotation [1/3] [Dan Pasanen]
e54ae1c Check ACCELEROMETER_ROTATION_ANGLES for current user [Tom Pratt]
1b09404 Configurable 0, 90, 180 and 270 degree rotation [Ricardo Cerqueira]
1e385b6 development: Address NPE when removing preferences out of developer options [Alex Cruz]
ab73ec8 Add support for global cleartext penalties [Oliver Scott]
d464e4e SystemUI: RecordingService: Fix non dismissing notifications [Ido Ben-Hur]
9751aae SystemUI: screenshot: Group the post action notifications [Ido Ben-Hur]
bfb8efe Keystore: Spoof locked bootloader on local attestations [minaripenguin]
e96be15 SystemUI: QS Header Image extended settings [1/2] [elpaablo]
a7a575d SystemUI: QS Header Image [1/2] [minaripenguin]
1484949 Revert "Flip the lockscreen live wallpaper flag" [NurKeinNeid]
6ba1a2e Add required priv-app permissions for SystemUIGoogle [Pranav Vashi]
6b69385 Integrate Pixel framework hooks and wrappers [minaripenguin]
8500f19 SystemUI: OOS style notification clear all button [1/2] [00day0]
52a1f65 SystemUI: Cleanup face unlock icon animation [minaripenguin]
09fd2a8 SystemUI: Avoid showing face unlock animation on AOD and ambient screen [someone5678]
ee9b37a SystemUI: Avoid NullPointerException in setKeyguardMessage for face unlock message [someone5678]
02b6fa2 SystemUI: Fix face unlock icon visibility when auth fails [minaripenguin]
aa574b9 SystemUI: Implement bouncer face unlock animation [minaripenguin]
97b1f00 RingtoneManager: Set an default ringtone for the SIM 2 [micky387]
04370fc base: Phone ringtone setting for Multi SIM device [1/3] [Ting Yu]
ca669b87 SystemUI: Filter out duplicate notification icons on statusbar [Adithya R]
fc4677a Back button/gesture is not working with Android 14 easter egg activity. [Aditya Jadhav]
d3459dd Pulse: Fix orientation checks [minaripenguin]
b87c35f Pulse: Prevent systemui-related crashes [minaripenguin]
f152f77 Pulse: Vertical mirror [1/2] [TikkiTikki]
f8cc413 Pulse: Custom gravity and Center mirrored [1/2] [TikkiTikki]
57cd947 Pulse: ColorContoller: Fix getting default accent color [varund7726]
e5db544 Pulse: Simplify checks and prevent issues [Pranav Vashi]
e988bff Pulse: Implement pulse color based album art [1/2] [Pranav Vashi]
05f0fa1 Pulse: Detach pulse view only when attached [Pranav Vashi]
7592a3b Pulse: Solid renderer round lines [1/2] [TikkiTikki]
88a73ed7 Pulse: Set current Refresh rate as FPS animation value [Stallix]
8dc1d77 Pulse: Extend to Ambient Screen [spezi77]
43b60b2 Pulse initial checkin for Android 13 [1/2] [bigrushdog]
1be974a base: add API for disabling gestural navigation [ezio84]
921bc77 SystemUI: Update charger plug-in statusbar chip color [Adithya R]
ceb7de86 BiometricScheduler: Cancel operation if not idle [SagarMakhar]
e6dbd8b SystemUI: Use proper tint for face unlock icon [Pranav Vashi]
d41a2cc base: fix wake on unplug also for wireless charging [maxwen]
0baea92 fixup! SystemUI: Add double tap to sleep gesture [someone5678]
784d690 base: Don't use AOSP QS fling animation boost impl when CLO boost is enabled [someone5678]
684f438 SystemUI: QS fling animation boost [minaripenguin]
de9bb52 SystemUI: Port statusbar brightness control [Alberto97]
1bb52be SystemUI: screenshot: Add delete and share notification actions [Ido Ben-Hur]
0ba7ce9 SystemUI: screenshot: Also post a notification with a preview [Ido Ben-Hur]
3740a1a base: Add a notification for percentage based battery saver [Ido Ben-Hur]
a5ca772 fw/b: Squash import NetworkTraffic [Jon Haus]
7174cd5 base: BluetoothDialog: Don't ever show non paired devices [Ido Ben-Hur]
4eda8ea SystemUI: BluetoothDialog: Sort devices by last connection time [Ido Ben-Hur]
1778c4f Fix UDFPS icon and progress while enrolling [Tobias Merkel]
7cbd3b9 PackageInstaller: fix crash when handling STATUS_PENDING_USER_ACTION [Dmitry Muhomor]
40bb0a7 PackageInstaller: limit max AppSnippet icon size [Dmitry Muhomor]
d5e5075 Replace ":strings" with "strings" [Jonathan Scott]
3db1321 ParanoidSense: Adapt to Android 14 QPR1 [someone5678]
f5bf2e8 MeizuPropsUtils: Spoof Hihonor Cloudmusic [QKIvan]
0b246b5 base: Reset props for status bar lyric [1/2] [cjybyjk]
c93dc3d SystemUI: Fix status bar lyric overlapping with the center clock [LibXZR]
a51bf04 [SQUASHED] base: Add status bar lyric for Android 14 [cjybyjk]
3ffad16 Allow lid to send a generic COVER_CHANGED broadcast [jrior001]
5f99486 Settings: Add back option to pass swipe-up-to-unlock [Sam Mortimer]
909d292 base: Add support for window ignore secure [LibXZR]
0fd6a10 TwilightService: Save and use last fetched location [Ido Ben-Hur]
aa3bbfc TwilightService: Use temporary TwilightState when location is not available [rituj]
bfcb14d SystemUI: Make roaming indicator optional [1/2] [Pranav Vashi]
4f645350 SystemUI: Allow using 4G icon instead of LTE [1/2] [Pranav Vashi]
3f31a36 SystemUI: Option to disable Data Disabled Indicator icon [1/2] [varund7726]
07037d9 Add Launcher3 permissions [xyyx]
c17c071 SystemUI: Make isLargeScreen() use correct API for getting window metrics [LuK1337]
609730c SystemUI: Add API for runtime taskbar config [Danny Lin]
f2dbed7 base: Don't allow setting 0 to volume dialog timeout [1/2] [Ido Ben-Hur]
8d80232 QuickStatusBarHeader: Add date & battery click actions [Ido Ben-Hur]
be064fd CutoutFullScreenController: force full screen important apps [hydrangea07]
a6d5501 base: Force fullscreen for Google Dialer [cjh1249131356]
7f6f141 base: Implement cutout force full screen [1/2] [jhenrique09]
12cc35d SystemUI: FaceUnlock: Allow to overlay FaceUnlockImageView bottom margin [Fabian Leutenegger]
c57f2f3 SystemUI: FaceUnlock: Add margin based on lock icon [someone5678]
7bcf1b0 SystemUI: Implement face unlock recognition animation and text [minaripenguin]
6f47e4a KeyguardBouncer: Don't delay showing if face auth running [jhenrique09]
1b709a6 WalletActivity: Don't explicity request face auth [jhenrique09]
5fb0a08 SystemUI: Reset face auth on occluding app when authenticated [jhenrique09]
c8ba05f SystemUI: use simple check for isFaceDisabled [Ali B]
261b6d2 base: Initial SenseProvider for FaceSense service [Chris Crump]
cc75d8f SystemUI: Transparent QS customization [1/2] [spkal01]
cd09323e SystemUI: Make QS footer background transparent [NurKeinNeid]
ac0f26b SystemUI: Match footer actions background with notifications background [str-br]
0d7b6d7 SystemUI: Apply surface color to brightness icons [Harsh Pal]
fbef1a7 Follow Dark/Light theme for Safe Mode dialog [Pulkit077]
05a87f0 UI: Follow Monet and light/dark theme in user 1 icon [Andy CrossGate Yan]
00fb12e base: Set ic_avatar_user and ic_avatar_guest_user to follow system accent [elpaablo]
96d693b fwb: Fix navigation bar button hit testing [SahilSonar]
b4320bc SystemUI: use default dialogCornerRadius for qs customize title [maxwen]
5d22512 cmds: bootanimation: -O3 [Simao Gomes Viana]
a913212 Follow Day/Night in statusbar avatar chip [Trishiraj]
5753054 SystemUI: Switch notification background to monet on heads up [DillerOFire]
3c2ea0e AudioService: Guard against OOB in ringer mode cycle [Ido Ben-Hur]
0739118 base: Choose which ringer modes to cycle with the gesture [1/2] [Ido Ben-Hur]
1e973ce AudioService: Cancel old toasts when switching ringer mode [Ido Ben-Hur]
434c260 base: Add option to cycle through ringer modes [1/2] [rituj]
ab5f8d7 base: Allow customizing volume dialog timeout [1/2] [Ido Ben-Hur]
d20def8 BatteryService: Add support for oem fast charger detection [Alexander Martinz]
0a08d84 BatteryService: Add support for battery Moto Mods [Vachounet]
33e3d06 services: Whitelist Nfc Service from clipboard toasts [AshutoshSundresh]
272e95d DerpSpaceTile: make us secure [Ali B]
de5923a DerpSpaceTile: Make default state active [NurKeinNeid]
f8b3333 DerpSpaceTile: Don't support long press if Updater is not bundled [George Zacharia]
da82204 SystemUI: Add DerpSpace Tile [Ali B]
8978f4c SystemUI: Use secondary label for language QS tile [Anushek Prasal]
2170b56 QS: Locale Tile [SpiritCroc]
995dc93 SystemUI: Add Sound search tile [ezio84]
ab0031d SystemUI: Add Screenshot tile [ShevT]
10dd5eb View: Prevent NPEs when initiating surface drag [minaripenguin]
e55235dc Fix NPE when pip onAnimationEnd [wangdongdong6]
cccac58 QSPanel: Fix NPE in updateViewPositions() [Pranav Vashi]
62ee60f Fix getRootTask may be null led to client NPE [Roc Penny Young]
2cabbd5 Fix NullPointerException in GestureDetector [Arnab Sen]
920820d Check for null ferr [Pawan Wagh]
067e90b hwui: Prevent a null pointer on renderthread [minaripenguin]
90b0548 hwui: Add NULL pointer check in AnimatorManager::pushStaging [Phạm Tiên Sinh]
3cd7fba Fix task info null crash [ot903107]
52e3f8c ConfigurationController: Prevent app crash on orientation change [minaripenguin]
cd6f086 display: Handle zero auto brightness adjustment [Adithya R]
3ce4487 QRCodeScannerController: Use Lens as fallback activity [Nauval Rizky]
359cbd0 Make sensor block package list configurable [1/2] [Hikari-no-Tenshi]
6a80d72 base: Add Accelerometer and Linear Acceleration sensors in blocking list [HolyAngel]
a7816cd Settings: make SensorBlock readable by non-system apps [Ali B]
400e400 FWB: Sensor block per-package switch (1/2) [LorDClockaN]
8bfaf67 SystemSensorManager: sensor block per-package [Simao Gomes Viana]
5de2722 SystemUI: Fix Biometric dialog corner radius [Anushek Prasal]
dbf837f SystemUI: Introduce Adaptive Playback [1/2] [Jyotiraditya]
1a42936 PowerUI: Mute logcat spam. [spezi77]
e988a01 EnhancedEstimates: Get estimates from Device Health Services [Jason Edson]
6305596 SystemUI: Optional bouncer user switcher [1/2] [minaripenguin]
bb809da base: Allow toggling floating rotation button [1/2] [Ido Ben-Hur]
319574b SystemUI: add FloatingRotationButton for hw-key devices [Michal Pražák]
69c3d00 Ambient music: pulse on new music tracks and Now Playing info [1/2] [ezio84]
28b72ab SystemUI: Integrate Google Lens into Screenshot UI [AshutoshSundresh]
8e70db0 SystemUI: Allow disabling clipboard overlay [1/2] [Adithya R]
d154ffe Add kill button to notification guts [1/2] [Daniel Koman]
ad036fd SystemUI: Optional haptic feedback on back gesture [1/2] [DennySPb]
4072cb1 Allow to hide arrow for back gesture [1/2] [Ali B]
f187bcb EdgeBackGestureHandler: Change back gesture height intervals [Anushek Prasal]
d0eabb4 Allow changing back gesture height [1/2] [maxwen]
c793bf5 Allow disabling qs on secure lockscreen [1/2] [jhonboy121]
2f815f7 SystemUI: Add support for timeout-reboot [Luca Stefani]
ea00925 Global VPN feature [Oliver Scott]
2358d4f SystemUI: Add Compass tile [Roman Birg]
1b0762b SoundTile: Open settings on long click [Adithya R]
a582111 SystemUI: Add Sound tile to Quick Settings [Yoshinori Hirano]
51c743e Add deep sleep info to uptime preference [maxwen]
e0d5e20 SystemUI: Introduce Data Switch QS Tile [Christian Oder]
a7806b0 SystemUI: Add VPNTethering tile [Mohammad Hasan Keramat J]
029cdbf base: Allow customizing default notification vibration pattern [1/2] [Ido Ben-Hur]
c8ef0d3 base: Custom vibration pattern per notification channel [1/2] [Ido Ben-Hur]
2c1afaa base: Have a proper validator for custom ringtone vibration pattern [Ido Ben-Hur]
c133909 base: Allow choosing a custom vibration pattern [1/3] [Ido Ben-Hur]
359d0e0 base: Add vibration patterns from OOS [1/3] [rituj]
e8f3bc5 Volume Dialog: Recolor inactive icons/slider [strwbrry143]
e326857 VolumeDialogImpl: Dismiss dialog on config change [Pranav Vashi]
46ea46a VolumeDialog: Ensure proper resource release [minaripenguin]
8448140 Revert "VolumeDialog: Ensure proper resource release" [Pranav Vashi]
d4c129a VolumeDialogControllerImpl: Do not use broadcast for volume change event [minaripenguin]
651ecda VolumeDialog: Ensure proper resource release [minaripenguin]
a2838c9 base: make per-app work with multi audio focus [El Dainosor]
0c24832 SystemUI: Update App volume icon [yukiscape]
2e4e181 base: support per-app volume [2/3] [cjybyjk]
853b6ec QS: Open WifiPanel on LongClick [sb6596]
bb62450 QS: Add and use Mobile Data panel [Joe Maples]
cb87f4e SystemUI: Redraw display cutout on overlay changes [Adithya R]
f7f9ab7 fixup! SystemUI: Add quick settings pull down with one finger [nift4]
0e9477d base: use a double click effect for charging if there is no amplitude control support [jhonboy121]
fbfe8e4 SystemUI: add back BluetoothController::getDevices [Tobias Merkel]
988454d SystemUI: Move bluetooth dialog creation to LongClick method [minaripenguin]
7548eaf SystemUI: Implement Bluetooth dialog [Adithya R]
3bad3cc Dismiss recording notification on stop [Lostark13]
094edda Screenrecord: Remember last used blinking dot position [Ido Ben-Hur]
9860470 Screenrecord: Save preferences for permission dialog [Pranav Vashi]
3aadf13 Screenrecord: Add an option to use HEVC [Ido Ben-Hur]
25d48d9 Screenrecord: Slightly optimize loading/saving preferences [Pranav Vashi]
c1353ae Screenrecord: Allow to reduce 3 second screen record timer [maitreya29]
db52a75 Screenrecord: Add an option to record for longer [Ido Ben-Hur]
deb4562 Screenrecord: Make low quality bitrate scalable per device [Ido Ben-Hur]
f15f417 Screenrecord: Save and load set preferences [Ido Ben-Hur]
a9edf51 Screenrecord: add blinking stop dot and low quality options [ezio84]
c93b899 Screenrecord: Allow to select AVC codec profile level [iusmac]
21b19ee SystemUI: allow to limit the max framerate of built-in screen recorder [Kuba Wojciechowski]
13017b0 SystemUI: Add delete action to screen recorder notification [Sourajit Karmakar]
cc9120c SystemUI: Fix QS customizer corner radius [Pranav Vashi]
c242d6d SidefpsController: Apply ScaleFactor to sensorLocationY [Luofan Chen]
26053f4 DisplayUtils: Introduce getScaleFactor [AnierinB]
88ad246 GameManagerService: Set device_config property on behalf of GameSpace [Dhina17]
a369615 fixup! GameSpace for 14 QPR1 [aswin7469]
0798413 SystemUI: Add support for GameSpace [Nauval Rizky]
77fcb9e SystemUI: Export RecordingService for External Usage [cjybyjk]
31583c9 SystemUI: Reload theme only if black theme is enabled [Adithya R]
c8ab3cc SystemUI: Add monet customization [1/2] [Ido Ben-Hur]
fd35fe6 SystemUI: Introduce dynamic lockscreen clock spacing [minaripenguin]
84b0061 SystemUI: Ignore font padding for large ls clock [minaripenguin]
3fab84a base: Add support for Lockscreen clock fonts [El Dainosor]
bf0c849 Reload navbar icons on changing style [1/2] [Pranav Vashi]
b1e174e ThemeOverlayApplier: Add support for navbar styles [NurKeinNeid]
7f46f81 Add reticker notifications feature [SQUASHED] [Dil3mm4]
bd89960 Statusbar Clock background chip [1/2] [StarkDroid]
f3169b4 base: Add a toggle for secure tiles on keyguard [1/2] [Ido Ben-Hur]
25e3328 base: Add support for app lock [jhonboy121]
33f57bd SettingsProvider: grant device config permissions [Ali B]
eb94ade base: add missing device config permissions for settings [Ali B]
a9f075c SystemUI: Prevent InternetDialog crashing system [Pranav Vashi]
bcbbf11 InternetDialog: Launch mobile network settings on long press [Adithya R]
386aa47 SystemUI: Fix summary of hotspot toggle dialog [lindwurm]
8db3529 SystemUI: Add hotspot toggle in QS internet dialog [Adithya R]
6c7f8df Add DerpSpace CategoryKey [XlxFoXxlX]
a3bf738 base: Data icon style [1/3] [rezaadi0105]
8d652d6 SystemUI: Add brightness slider styles [1/3] [SamarV-121]
727e83e ThemeOverlayApplier: Apply wifi and signal icon styles last [Pranav Vashi]
35aa388 ThemeOverlayApplier: Catch a potential NPE [spezi77]
7ecf3d8 ThemeUtils: Make it compatible for all targets [Pranav Vashi]
eca4d8d Bring back ThemeUtils for Theming [sb6596]
d6dde35 SystemUI: Allow disabling ripple effect on unlock [1/2] [Rishawn]
b8535be Fingerprint authentication vibration [1/2] [beanstown106]
38e13a9 Fix disabling power menu completely on secured locscreen [Pranav Vashi]
79a72b1 base: Make wired charging animation follow settings too [cjh1249131356]
358e48e base: Add toggle to disable charging animation [1/2] [Anushek Prasal]
73fbc5b charging: Allow using vibration without sounds [xyyx]
c90f458 SystemUI: Disable all-caps for smart reply button text [Adithya R]
c01f618 Add interpolators to qs tiles animation [1/2] [Nico60]
e0c6776 Add animations to quick settings tiles [1/2] [Nico60]
43ed00b SystemUI: Use click effect instead of duration for haptic feedback for QSTile [Krishnakant Shedge]
88db265 QuickSettings: Add Haptic Feedback to tiles [1/2] [Evisceration]
900a11b SystemUI: Launch power menu from QS only if enabled [DarkJoker360]
a832b6d Hide power menu on secure lockscreen [1/2] [Altaf-Mahdi]
6d7f619 VolumePanel: Change bg tint for inactive rows [Arian]
0988337 ColorUtils: Prevent crash if alpha component is translucent [Pranav Vashi]
2cfd14c Ship semi-similar blur without patching HWUI [nift4]
ff25d1f SystemUI: Blurs: allow blur even when GFX acceleration is disabled [Pulkit077]
9fe40f5 blur: Bump SystemUI blur radius to 175 px [Danny Lin]
eea0b56 SystemUI: Enable power menu blur via window flags [Dhina17]
5a5a201 SystemUI: Blur the power menu [Elluzion]
47fd949 base: Use wireless charging animation for wired charging too [Anushek Prasal]
19357fa SystemUI: Use lighter material you shades for charging animation [minarypenguin]
a4c24ae SystemUI: Use color accent for charging animation [Genkzsz11]
0df06f5 keyguard: Actually kill Fancy Colon [Joe Maples]
1061507 SystemUI: Fix keyguard user avatar margins [strwbrry143]
5a06f03 SystemUI: refresh system icons on theme change [Tobias Merkel]
e01a7a8 MobileSignalController: Do not duplicate SPN and PLMN [Adithya R]
93819fc Fix VPN icon failed reloading after disabling [Pranav Vashi]
bf45c8d SystemUI: Introduce dynamic VoLTE & VoWiFi icons [SagarMakhar]
1b88fc3 SystemUI: Add VPN to the icon blacklist in tuner [maxwen]
532f3fa Custom statusbar logo customizations [1/2] [Pranav Vashi]
bf038e1 SystemUI: Add missing init for isDeviceProvisioned in PhoneStatusBarPolicy [maxwen]
8c3b39c SystemUI: Add ability to toggle bluetooth battery level [1/2] [Pranav Vashi]
51c6ba8 SystemUI: Update notification count overlay [Fran Palmero]
ffb88c1 SystemUI: Refactor colored statusbar icons [Pranav Vashi]
73541f1 SystemUI: Refactor notification counter [jhonboy121]
6c4a1ca SystemUI: Show infinity for large notification counts [d34d]
f44420e SystemUI: Forward-port notification counters [1/2] [Steve Kondik]
149a66f SystemUI: Make app icons in statusbar optional [1/2] [spkal01]
c1b886a SystemUI: Use app icons for notifications in statusbar [Dil3mm4]
ceaacfce SystemUI: Don't force small clock when media isn't allowed on keyguard [Ido Ben-Hur]
95f98f9 base: change background activity start mode to allow for widget configure [maxwen]
71eb922 fixup! SystemUI: Make round QS toggleable [1/3] [NurKeinNeid]
91d68ca SystemUI: Define colorPrimary/colorSecondary colors for dual tone QS [minaripenguin]
d8464fd SystemUI: Use proper Resolver background color [elluzion]
ac9b24d SystemUI: Remove visibility check in setting QSCarrier color [Adithya R]
36b1be0 SystemUI: Use themewrapper for QSCustomizer and tune colorUnavailable [Pranav Vashi]
5600fe9 SystemUI: Add dual-tone light and dark themes for QS [Danny Lin]
193ccaa SystemUI: Always refresh power menu on UI mode change [Danny Lin]
7c83374 SystemUI: Follow monet theme on privacy indicators [minaripenguin]
d112d25 SystemUI: Allow hiding QS footer data usage [1/2] [Adithya R]
c30da69 SystemUI: QS footer data usage improvements and cleanup [Adithya R]
4cda766 SystemUI: Show QS data usage suffix only when necessary [Adithya R]
4bf5486 [SQUASH] SystemUI: Show daily data usage in QS footer [Adithya]
d09ddde SystemUI: Remove Android build number from QS footer [Danny Lin]
0bf6336f Squashed import of adb root patches [LuK1337]
7cfa043 GnssLocationProvider: Implement xtra-daemon toggle [Michael Bestas]
bf84ca4 GnssLocationProvider: Implement PSDS periodic download toggle [Michael Bestas]
3298a56 GnssLocationProvider: Disable AGPS by default, it'll be enabled in SetupWizard [Chirayu Desai]
f1efbbe Ignore AGPS toggle during user-initiated emergency calls [Chirayu Desai]
73cf509 SystemUI: Fix uneven DND icon padding in status bar [Ido Ben-Hur]
0f0d42d SettingsProvider: Set device name to marketname if available [Adithya R]
81101ae SystemUI: Remove excess margin in few statusbar icons [Adithya R]
aef9d24 PowerMenu: Hide emergency affordance if not selected [Pranav Vashi]
6667ff1 Link dialog radius to config_dialogCornerRadius [Lucchetto]
afe0e68 SystemUI: Make popup menus more rounded [Lucchetto]
4533061 KernelCpuUidActiveTimeReader: Do not spam log with negative active time [cjh1249131356]
a405e07 SystemUI: Let screenshot window ignore screen decorations [LuK1337]
43a12ca SystemUI: Dismiss screenshot window on touch outside [LibXZR]
3974bc1 core: Remove old app target SDK dialog [Danny Lin]
d77fcf3 ListView: Disable dividers by default [Pranav Vashi]
b1dc3a1 core: legacy toasts deserve rounded corners too [nift4]
6e7b52b base: Update some icons to MD2 [Anushek Prasal]
9adce0f SettingsLib: Use framework resource for headline font [Adithya R]
dba4e7d fonts: Add more sans-serif aliases [minaripenguin]
a1d1370 TypeFace: Don't override monospace [minaripenguin]
55af6ea styles: Use user fonts for Material UI themes [Danny Lin]
6193798 SystemUI: Remove more hardcoded fonts [Pranav Vashi]
2dcc3ed graphics: Override system fonts with user-selected overlays [Danny Lin]
1f3429d base: styles: Use user fonts for Material UI themes [Danny Lin]
c06c283 Fonts: Add regular / light font config [Pranav Vashi]
7184725 base: Use font configs instead hardcoded fonts [Pranav Vashi]
07f1e95 Wire up default fonts with config [Pranav Vashi]
410db33 base: Export bodyFontFamily and bodyFontFamilyMedium symbols [Pranav Vashi]
5bfc758 SystemUI: Add a top margin for the battery bar [spezi77]
52896a2 SystemUI: Color the battery bar red when the level drops to 15%. [spezi77]
9313c04 SystemUI: Introduce keyguard battery bar settings [1/3]. [maxwen]
303bfa8 BrightnessUtils: Conditionally use low gamma implementation for brightness curve [SagarMakhar]
21f54e9 Move Bluetooth timeout back to AOSP settings [t-m-w]
b814d09 Wi-Fi timeout feature [Oliver Scott]
d883d4b base: incall vibration options [1/3] [beanstown106]
6994e91 SystemUI: Hide call strength icons [SagarMakhar]
bef7a1d SystemUI: Add settings to change QS column count [1/2] [Tim Zimmermann]
ba35055 SystemUI: Make round QS toggleable [1/3] [minaripenguin]
f53b847 base: Add settings to change QS tile shape [1/2] [SamarV-121]
e8bbd974 SystemUI: Redesign Quick settings [IacobIonut01]
1ba2b71 BrightnessController: Do not update slider from DisplayManager callback [jhonboy121]
aa297f9 Port brightness slider changes [1/2] [Alberto97]
1b1d059 core: pm: Allow wildcard in RRO system property value checks [Luca Stefani]
f0b13c2 Allow "Panic" to silently uninstall packages. [Chirayu Desai]
b528407 Avoid Settings app NPE on broken packages [t-m-w]
34e33be Allow to suppress notifications sound if screen is ON [1/2] [ezio84]
74efda7 SystemUI: Less boring heads up option [1/2] [ezio84]
b54aaf1 SystemUI: Hide notifications when quickly expanding QS [Adithya R]
d422af2 GlobalActionsDialogLite: Dismiss the dialog when restarting SystemUI [ezio84]
6d13101 frameworks: Add restart systemui shortcut to power menu [1/2] [ezio84]
c873547 Add a panic trigger to Global actions [Chirayu Desai]
4ae0568 SystemUI: Add SCREEN_GESTURE as a CameraLaunchSourceModel [resist15]
c3ed36f SystemUI: Disable clock auto hide feature for QS [LuK1337]
dc0cd2c frameworks: Add support for clock auto-hiding [Cédric Bellegarde]
9b45e33 ChargingControl: Additional log lines for deadline [Tommy Webb]
790bd06 ChargingControl: Retry setting deadline if it fails [Tommy Webb]
f63c674 ChargingControl: Drop default values for initially zero variables [Luofan Chen]
861d941 ChargingControl: Return early if lineage health HAL is not found [Luofan Chen]
b50d035 ChargingControl: Don't set deadline if charging control is not enabled [Luofan Chen]
d1d1c06 ChargingControl: Use ServiceManager.waitForDeclaredService() [LuK1337]
09c7743 ChargingControl: No need to log a crash when not supported [Michael W]
9e03e41 ChargingControl: Handle cancel toggle correctly if bypass is not supported [Luofan Chen]
d67c7fc ChargingControl: Add cancel toggle for limit done notification [Luofan Chen]
5f12391 ChargingControl: Reset internal states on settings change [Luofan Chen]
4145333 ChargingControl: Set a small margin for devices with bypass support [Luofan Chen]
5369053 base: Add static isChargingControlSupported(ctx) method [LuK1337]
9664b1b base: Implement Lineage health service [Luofan Chen]
0e565e6f base: Extract base class for lineage base feature [Luofan Chen]
674131d base: Settings: Add settings for charging control [Danny Trunk]
bc3856b SystemUI: Respect the old good "Show passwords" preference [alk3pInjection]
fd2c5f3 base: Add support for hiding navigation bar under screen keyboard [1/3] [LibXZR]
c7b5494 Don't skip theme application if it's already current [Michael Bestas]
eb137b9 SystemUI: support black theme for dark mode [1/4] [althafvly]
e9274f1 Add product board in the log [Dil3mm4]
0930bb0 More infos uploaded to Memochō [Dil3mm4]
50b391a core: Switch to ``Memochō``. [Jyotiraditya Panda]
8fe080c Add button to AppErrorDialog to upload crash information to dogbin [Till Kottmann]
f9e074f SystemUI: Check if primitive vibrations are supported in new quick affordances [Fabian Leutenegger]
624ad4b SystemUI: Use new privacy indicators for location [Danny Lin]
24b537b SystemUI: Require unlocking to use sensitive QS tiles [Danny Lin]
edfab7f SystemUI: Enable production-ready feature flags - Conversations: enabled by default on Pixel - Charging ripple: enabled by default on Pixel Taken from https://github.com/ProtonAOSP/android_vendor_proton/commit/a32d8c4c9e731e609b16b37da191669f5c607aad [Danny Lin]
e42723f appop: Save discrete app op history for more permissions [Danny Lin]
802a87c SystemUI: Add VPN tile [Danny Baumann]
7945629 overlays: don't allow backup [elpaablo]
586fa1f overlays: {acherus,outline}: Add launcher and themepicker overlay [Pranav]
11d689c Update notchbarkiller overlays [minaripenguin]
514efec add missing display cutout overlays [Daniel Micay]
dbd5599 overlays: Add notchbar killer for left-notch devices [Jaida Wu]
2f39fb5 overlays: Add notch bar killer [Josh Fox]
e235acd overlays: Import Plumpy, Aurora, Gradicon & Lorn iconpacks from Iconify [rdx420]
651611e overlays: IconPack: Rename config_signalXPath [Adithya R]
8770ad3 base: overlays: Add Xperia overlays [AndroBuddy]
2178725 overlays: Introduce Outline iconpack [Niklas Schnettler]
ce0aff9 acherus: Add settings overlay [Genkzsz11]
66be3bd acherus: Wrap a few icons with inset [Pranav]
4b82ffd overlays: Add acherus icon pack [Pranav]
32d8d74 PUI overlay: Do not theme seekbars [StarkDroid]
829371a overlays: Introduce PUI iconpack [spkal01]
7f5131a0 overlays: oos: Import stock oos settings icons [RedSkulHYDRA]
05ea04c overlays: declare the right overlay category [jhonboy121]
4f9cb9c overlays: oos: Add dummy icons to fix preview [Pranav Vashi]
cc7660b overlays: oos: Adjust width and height for dnd and vibrate icons [jhonboy121]
8ea3d2e overlays: oos: Add statusbar bluetooth icons [imjyotiraditya]
1bb6a22 overlays: oos: Fix edit icon color in Settings [AshutoshSundresh]
33d45ec overlays: Add an OxygenOS icon pack [AshutoshSundresh]
4e5d8e9 overlays: fixup themepicker package name for IconPacks [Omkar Chandorkar]
c4e0e42 overlays: fixup launcher package name for P20 icons [Omkar Chandorkar]
0d33d15 IconPackKaiAndroidOverlay: fix for carriers using 5 bars of signal [Anay Wadhera]
d5d735c IconPackRounded: Use correct icon for notification and ring volume [Arian]
56390a0 overlays: Add unlinked ringtone and notification volume icons [Adnan Begovic]
4e1da52 IconPack{Kai,Victor}: Fix clock icon [DarkJoker360]
b1a0567 IconPack{Sam,Victor}: Inverse vol collapse/expand anim path data [Dhina17]
8eddf17 SystemUI: Fix size of icon of vibrate ringer mode for additional icon packs [Volodymyr Zhdanov]
b778adc overlays: Unify icon packs category name [Adithya R]
5f3cf99 overlays: bring back icon packs [jhonboy121]
1a2c010 SystemUI: screenshot: Always show screenshot dismiss button [NurKeinNeid]
783aacd0 SystemUI: Add NFC tile to default [Adithya R]
b7b1589 SystemUI: Update NFC icon [Adithya R]
74c593b SystemUI: Add statusbar NFC icon [xyyx]
4cf1d42 SystemUI: Enable NFC tile [Tim Schumacher]
714c37f SystemUI: Forward port QS fling animation boost to NotificationPanelViewController [Jake Weinstein]
72c1406 udfps: Forward port Boost framework hook. [Vishal Cj]
d643ef4 BoostFramework: Guard it with overlay [jhenrique09]
232a6c6 [SQUASH] core: Port CLO's Framework Boost for Android U [AmeChanRain]
318d191 SystemUI: Expose legacy Wi-Fi and cellular data QS tiles [Danny Lin]
16bebe7 SystemUI: Allow Wi-Fi/cell tiles to co-exist with provider model [Danny Lin]
9754ff2 Revert "[DO NOT MERGE] Make sure WiFi and Cell tiles are not created in Provider Model" [Danny Lin]
a5650bb SystemUI: Restore wifi and cellular QS tiles [Michael Bestas]
d3cfde9 SystemUI: Add reading mode tile [Joey]
4468f0d Report success on every fingerprint removal [Kishan Dudhatra]
8c0ccfd AutofillManager: Make userdebug default to NO_LOGGING [LuK1337]
142d53a SystemUI: show ime switcher + cursor keys if we have space [nift4]
738399f SystemUI: Improve bouncer layout [Anushek Prasal]
f33b78e PhoneWindowManager: only handle long press on back key if using it [nift4]
6811def VolumeDialogImpl: Add STREAM_NOTIFICATION row [LuK1337]
0f55de9 Fix multi-user silent notifications on lockscreen [Tommy Webb]
ed352c9 InputDevices: Fix Hungarian language overlay [Sean McCreary]
b52047e MetaKeyKeyListener: Disable locking of toggled modifier keys [Sean McCreary]
b087a1d JobScheduler: Respect allow-in-power-save perm [Tommy Webb]
81edf98 Increase maximum password length to 64 [Oliver Scott]
5a88365 SystemUI: Respect single-touch wakeup setting on rear & front fps devices [Michael Bestas]
83fdd5d SystemUI: DreamTile: Enable for everyone [Ido Ben-Hur]
1545d82 SystemUI: Avoid using null Context in onTuningChanged() [kxxt]
515a8db SystemUI: SideFpsEventHandler: Don't crash without FingerprintManager [Michael W]
ea56347 SystemUI: Prevent NPE when checking for powerbutton FPS [Michael W]
e5c81fa base: Add isPackageInstalled boolean [Roman Birg]
f6b6846 Fallback ESC to BACK [Aaron Kling]
607da07 base: Lower protection level of lineageos permissions [Erfan Abdi]
f27fcfa Keyguard: Add option to scramble pin layout when unlocking (2/2). [Adnan]
93155f6 services: fix quickswitch with gesture pill disabled [nift4]
adcc8b8 base: Disable LiveDisplay low power consumption by default [Anushek Prasal]
3cfe242 core: Disable LiveDisplay display mode by default [Adarsh Grewal]
956e667 base: Introduce LiveDisplay from Lineage [Erfan Abdi]
6259fe8 SettingsProvider: Setup default resources [Erfan Abdi]
b2c2ae4 LineageHardwareManager: Introduce keys swap feature support [Arian]
c1aeee4 derp: preference: Import SettingsHelper [Erfan Abdi]
9eade3f Add support for runtime toggle of navbar [Bruno Martins]
e88356a Implement edge long swipe gesture to new back gesture affordance [someone5678]
91bb275 util: Import PackageManagerUtils from sdk [Erfan Abdi]
f5a7445 Camera button support [HazouPH]
dbb0994 PhoneWindowManager: Add support for back key long press customization [LuK1337]
c7ace60 fw/b: Allow customisation of navbar app switch long press action [Sam Mortimer]
8b941c2 PhoneWindowManager: Implement press home to answer call [Oleksandr Byelkin]
9e82ffa PhoneWindowManager: Tap volume buttons to answer call [martincz]
8788105 PhoneWindowManager: Forward port long press back to kill app [Danesh Mondegarian]
ef2ccd9 ActionUtils: Kill app: Actually kill app [Michael W]
c5d5653 Import ActionUtils from lineage sdk [Erfan Abdi]
9be07c3 VolumeKeyHandler: Adapt for 12 [Erfan Abdi]
62ca964 VolumeKeyHandler: Add support for skipping tracks with remote control [ezio84]
110ecfe PhoneWindowManager: add VolumeKeyHandler [Simon Shields]
6e0bcd9 Reimplement device hardware wake keys support [LuK1337]
d3b2f73 Reimplement hardware keys custom rebinding [Phil Tunstall]
c564692 fwb: Re-introduce keyboard backlight brightness control [Bruno Martins]
56902fc PowerManager: Allow to distinguish different keypresses [Corinna Vinschen]
098a38f PowerManagerService: Allow to light up buttons only when pressed [Anas Karbila]
444c700 fw/b: Button backlight brightness [Ricardo Cerqueira]
50e1604 VolumeDialogImpl: Attempt fixing initial dialog position [Pranav Vashi]
5f60edb VolumeDialogImpl: Properly set initial dialog gravity [Pranav Vashi]
181edd4 VolumeDialogImpl: Add STREAM_NOTIFICATION row [LuK1337]
31a5a7d SystemUI: Make the volume dialog expandable [Arian]
a7997b2 SystemUI: runtime configurable audio panel location [a.derendyaev]
cb11850 SystemUI: volume dialog: Align padding/margin for left and right [Arian]
9a8da79 VolumeDialogImpl: Handle the outmost row with respect to left gravity [Arian]
3a19ad7 VolumeDialogImpl: Respect left gravity in ringer drawer [Arian]
8fe2b1f VolumeDialogImpl: Set touchable region properly for left gravity [Arian]
47aa2ce VolumeDialogImpl: Drop unnecessary layout gravity defines and handle left [Arian]
42350af VolumeDialogImpl: Fix cut layout when on setup or lock task mode [jhenrique09]
9c2b7509 VolumeDialogImpl: Don't hide the default stream when adjusting the music stream [Arian]
1a25400 VolumeDialogImpl: Don't vibrate when volume dialog is not visible [LuK1337]
09bcbdd VolumeDialog: Display default row when active row is notification [Jesse Chan]
120893d Forward port 'Swap volume buttons' (1/3) [nadlabak]
f10fae3 frameworks/base: Lights notifications brightness support [Adrian DC]
1bc97ca frameworks/base: Battery and Notification Lights [Sam Mortimer]
ede16c6 Import LineageNotification from lineage sdk [Erfan Abdi]
d113d5c SystemUI: Fix position and orientation of arrow keys in navbar [Wolfram Liebchen]
d45836a SystemUI: add left and right virtual buttons while typing [Roman Birg]
5c535a3 Framework: Volume key cursor control [Konsta]
315be11 DisplayModeDirector: Make sure we apply refresh rate on startup [Ido Ben-Hur]
ca909ed PackageManagerService: Protect forced enabled components at runtime [jhenrique09]
2bf3b0a PackageManager: allow build-time disabling of components [Pawit Pornkitprasan]
6087150 SystemUI: Bring back good ol' circle battery style [Luca Stefani]
0609b08 SystemUI: Make center clock follow paddingTop [cjh1249131356]
cf6f47b SystemUI: Add tunables for clock AM/PM style [Michael Bestas]
8842c92 ClockController: Apply clock position initially [Ido Ben-Hur]
ccb3b24 SystemUI: Add tunables for clock position [Luca Stefani]
4012128 SystemUI: doze: add config for long press sensors that need a proximity check [Cosmin Tanislav]
9be4d87 SystemUI: doze: add config for double tap sensors that need a proximity check [Cosmin Tanislav]
63412b4 Partially revert "Assume sensors perform prox check" [Cosmin Tanislav]
22dfa90 SystemUI: Add FingerprintInteractiveToAuthProvider implementation [Adithya R]
4bd2a22 Biometrics: Allow disabling of fingerprint cleanups [Quallenauge]
0bc707a SystemUI: Remove spaces from screenshot app filename [Adithya R]
c09bc28 SystemUI: Screenshot: Avoid NPE while getting app label [Adithya R]
1d7e459 SystemUI: screenshot: add delay for long-press partial screenshot [Pranav Vashi]
6e24627 SystemUI: screenshot: close QS after launching long screenshot activity [LuK1337]
46ebed4 SystemUI: screenshot: disable magnification for partial screenshots [Cosmin Tanislav]
c46a053 SystemUI: screenshot: add extra crop boundaries [Cosmin Tanislav]
dcd04a5 SystemUI: screenshot: remove duplicate clamping on move action [Cosmin Tanislav]
8588550 SystemUI: screenshot: open long screenshot activity for partial screenshots [Cosmin Tanislav]
1428327 Implement click to take partial screenshot [1/3] [Jesse Chan]
a3495e7 Screenshot: Append app name to filename [ezio84]
6806b11 fwb: Restore mMainHandler in CentralSurfacesImpl [Christian Oder]
d99a7d2 SystemUI: Use 0-100% values for Media art blur [1/2] [Anushek Prasal]
e31ccc1 MediaArtworkProcessor: Use less blur, zoom & alpha on keyguard [Ido Ben-Hur]
5924792 Lockscreen no blur option: fix SysUI FC [ezio84]
7782307 Lockscreen art blur: smaller seekbar range and allow no blur [1/2] [ezio84]
f1e537c Losckreen blur level: code fixes [ezio84]
3d88b1a base: configure lock screen media artwork blur level [1/2] [Marko Man]
daf6ee5 SystemUI: Allow to enable Lockscreen Media Art [beanstown106]
dcd78fe frameworks: Exempt location packages from location indicators [Chirayu Desai]
f37af77 AutoBrightness: Add support for one shot auto-brightness [Cédric Bellegarde]
9518fd2 Introduce high touch polling rate feature control [Ramii Ahmed]
9efe0bd SystemUI: Don't store pending ControlAction if the device is locked [LuK1337]
55769f5 frameworks: Add device controls shortcut to power menu [LuK1337]
05ed284 SystemUI: Use MD2 icons for power menu [Anushek Prasal]
3c911b4 Improve a few strings [Anushek Prasal]
8d16c85 frameworks: Import Lineage GlobalActions service [Erfan Abdi]
ccb9073 frameworks: Add more power menu customizations [Gegham Zakaryan]
90f8381 frameworks: Add support for advanced restart options [Michael Bestas]
a8b03b0 Don't pass repeated back key events to app if custom action is set up [LuK1337]
c014083 fw/b torch: add haptic feedback [alk3pInjection]
dc11df0 PhoneWindowManager: Allow torch and track skip during ambient display [ezio84]
fb6098d Long-press power while display is off for torch [beanstown106]
c133a67 base: core: Add ATV arrays [Mohammad Hasan Keramat J]
b367154 TouchGestures: Add keyhandler overlays [jhenrique09]
cc5d4d3 Support enforcing a minimum delay between notification sounds of an app. [Danny Baumann]
a2e970f PowerManagerService: Wake on plug (1/2) [Jon Evans]
a9a580e PowerManager: Add proximity check on wake [1/2] [Bruno Martins]
b146dff Add high touch sensitivity and hovering to InputService [Danesh M]
a6ef1a2 SystemUI: Add double tap to sleep gesture [Rashed Abdel-Tawab]
495a411 SystemUI: Add quick settings pull down with one finger [Roman Birg]
4afb5e6 Revert "Revert "keyguard: Do not trigger a wake up when hiding lockscreen"" [Dhina17]
345f092 SystemUI: Only add GarbageMonitor tile to default tiles on ENG builds [Michael Bestas]
b879fb1 Screenshot: Add delete action chip intent [ganeshi4u]
c7b8218 base: Add rounded corners to activity open/close animation [paphonb]
988f2f6 SystemUI: Cleanup screenshot sound/vibration logic [Adithya R]
e862961 [SQUASH] SystemUI: Adapt screenshot sound to ringer modes [Ashwin R C]
55a1ca7 SystemUI: React to PrivacyConfig changes properly [Tommy Webb]
59d77ef SystemUI: write initial value of SHOW_QR_CODE_SCANNER_SETTING on first call [maxwen]
2743845 SystemUI: More rounded corners [Lucchetto]
5daf34c1 BatteryStatsImpl: Guard against OOB [Ido Ben-Hur]
bf37cc1 display: Don't spam log when display state changes [Adithya R]
8a4ed85 SystemUI: Add colors to assistant animation [paphonb]
c57c127 SystemUI: Tune new keyguard user switcher [minaripenguin]
0450ba4 SettingsLib: Update 5G+ icon to Silk design [Adithya R]
3bc66c8 SettingsLib: Update 4G+ icon to Silk design as well [TH779]
a94402d SettingsLib: Update LTE+ icon as per new Silk design [Adithya]
f717474 SystemUI: Update string for add tiles with one click [mydongistiny]
f791c362 SystemUI: Allow user to add/remove QS with one click [Andrzej Ressel]
13fb25a base: Add three-fingers-swipe to screenshot [1/2] [ghbhaha]
8af3a17 SystemUI: Implement hide gestural navigation hint bar [Jesse Chan]
6f7d319 SystemUI: Add navbar layout inversion tuning [LuK1337]
ec198d5 UsbDeviceManager: Delay MSG_UPDATE_SCREEN_LOCK message [LuK1337]
6e5161d Rewrite trust USB restriction handling [Oliver Scott]
4869f86 fw/b: Add capability to allow tethering to use VPN upstreams [1/3] [Sam Mortimer]
c99f7f1 Add back increasing ring feature (2/3) [Danny Baumann]
96af388 SystemUI: Add powershare QS tile [Linux4]
2e5206b SystemUI: AODTile: Use MD2 Icon [Anushek Prasal]
a1ae3a4 AODTile: Always toggle AOD on/off on long click [Ido Ben-Hur]
c77ad68 SystemUI: AODTile: Open LS display settings on long click [shagbag913]
ddfa5fc SystemUI: AODTile: cycle through AOD states [shagbag913]
98a9ec2 SystemUI: AODTile: Add back config check for aod available [maxwen]
baee97b base: add option to enable AOD on charging only [1/2] [darkobas]
4e98088 base: Add Touch HIDL support [Anushek Prasal]
d3ce5c2 Initial import of lineagehw [jhenrique09]
cbe587c SystemUI: clock_default_large: Don't hardcode monospace font [Ido Ben-Hur]
9a49e29 base: services: Raise log level of background start denial [Akane Beneckendorff]
36c72b5 base: libs: androidfw: Use '-O3' for build configuration [Akane Beneckendorff]
0d40b78 base: tools: aapt2: Use '-O3' for build configuration [Akane Beneckendorff]
f9293d8 SystemUI: Remove user setup check for alarm icon [cjh1249131356]
3ee2b82 SystemUI: Remove alarm from statusbar icon blocklist [Adithya R]
4da3bf3 ScreenRecord: Save recordings in ScreenRecords [El Dainosor]
7f8aaf4 Screenshot: Remove scroll chip button text [NurKeinNeid]
fb7d7971 SystemUI: Don't require AOD for screen off UDFPS [LuK1337]
c8659d9 SystemUI: add qs AOD tile [Marko Man]
07973e7 SystemUI: Add USB Tether tile [BestPig]
c83112f SystemUI: Add AmbientDisplay tile [Adnan Begovic]
4869963 SystemUI: Add Sync tile [Altaf-Mahdi]
7c5eb3c SystemUI: Update icon for Heads up tile [Jyotiraditya]
1cacf33 SystemUI: Add heads up tile [Michael Bestas]
058c88a SystemUI: Use MD2 icon for Caffeine tile [SKULSHADY]
7e92fe8 SystemUI: Add caffeine QS tile [Keith Mok]
c4e6f5e Allow adjusting screen density to smaller sizes [Danny Baumann]
79a7547 SystemUI: Allow using tuner API for Global settings [Pranav Vashi]
9e20d53 TunerService: Prevent NPE with tunable [Pranav Vashi]
51fdc34 Adapt tuner prefs to S settings style & cleanup [SagarMakhar]
be96fbf SystemUI: Allow using tuner API for DerpSpace [Rashed Abdel-Tawab]
dab4308 SystemUI: Bringup tuner statusbar changes [Rashed Abdel-Tawab]
f6762a5 power: Keep file scheme when not using content URI [Han Wang]
6949046 power: Explicitly check for silent ringtone [Sam Mortimer]
277146f power: Extend custom charging sounds [Bruno Martins]
a1b84fd power: Respect global vibration setting for charging sounds [Michael Bestas]
bedd567 AppErrors: Respect appsNotReportingCrashes for ANRs [Danny Lin]
a61fa40 Keyguard: reduce bottom text size [Marko Man]
380fec4 core: res: config: speed up animations [Simao Gomes Viana]
8d2b07e android.view: Speed things up!! [Mazda]
1f7fe03 Let's cut Max Excape Animation in Half [Chet Kener]
17eca16 core: PinSet: fixup and improve code [jhonboy121]
01cb45f Cache pin algorithms in PinSet [Till Kottmann]
3a7da60 Revert "(Point) Only calculate sin and cos once" [Harshit Jain]
cca2753 Cache KeyStoreService [Till Kottmann]
4c29983 (Point) Only calculate sin and cos once [Till Kottmann]
54e1807 [1/2] base: Remove restrictions for system audio record [jhenrique09]
d04ce91 Make 'No Notifications' small [Simao Gomes Viana]
b12e219 AlarmManagerService: wtf -> w [Simão Gomes Viana]
6e5d6ed NetworkPolicyManagerService: turn this into just a warning [Simão Gomes Viana]
85c10b7 core: res: config: speed up tooltip animations [Simao Gomes Viana]
d193a21 Watchdog: run emergency sync before killing system [Simão Gomes Viana]
4ceedd1 BluetoothUtils: disable useless logspam [Simão Gomes Viana]
d39d8be Tweak notification lights [Simao Gomes Viana]
32e9dab misc configuration [Simao Gomes Viana]
e39066a core: res: config: brightness tweaks [Simao Gomes Viana]
dd49f9e MediaPlayer: stop logspam [2/2] [Simao Gomes Viana]
516d177 Make the spinners faster [Simao Gomes Viana]
2b0faf4 Make spinners even smoother [Simao Gomes Viana]
0cf0362 ViewConfiguration: Align coding style to AOSP [Harsh Shandilya]
b5f6bed ViewConfiguration: add support for max/min fling velocity sysproperties [Simao Gomes Viana]
8e6d075 ViewConfiguration: set scroll friction to 0.006f [Simao Gomes Viana]
81515c8 SystemServer: This is DerpFest [NurKeinNeid]
b19dcaa SystemServer: we ain't rolling Oreos anymore [Simao Gomes Viana]
7a2c411 SystemServer: halogenify nicely [Simao Gomes Viana]
9a881c4 ViewConfiguration: misc changes (rev) [Simao Gomes Viana]
1e55dfa SystemServer: only enable fd leak tracker on eng [Simao Gomes Viana]
b4cc446 core: jni: use -O3 [Simao Gomes Viana]
0cad72d Improve scrolling cache [Pawit Pornkitprasan]
b10d067 SystemUI: Dismiss keyguard on boot if disabled by current profile [Gabriele M]
70f137e core: Declare default display light sensor [AmeChanRain]
761af4f SystemUI: Catch NPE with android.view.ViewPropertyAnimator [roynatech2544]
f4fbb602 SystemUI: Grant INTERACT_ACROSS_USERS_FULL permission for smartspace [cjh1249131356]
853cf44 SystemUI: Grant additional permissions for smartspace [Andrzej Perczak]
f4079e35 SystemUI: Set launcher activity name [Adithya R]
2a19bbe SystemUI: Allow customizing lock screen shortcuts via ThemePicker [quh4gko8]
efcbc2c DozeSensors: only use proximity sensor if supported [Demon000]
ef1e161 Dont show vendor mismatch message by default [00day0]
b14d96e base: Make vendor mismatch message optional [Anushek Prasal]
7d358eb Dynamically tell the user which vendor image is needed [beanstown106]
1bcb9da Show a more descriptive message when vendor.img is out of date [beanstown106]
4d350cb core: Use DerpFest logo mask [123Duo3]
06c626c base: Rearrange bluetooth icon on statusbar [Adithya]
9926f72 SystemUI: Fix refactored Bluetooth icon crash [Pranav Vashi]
865ed2e BluetoothControllerImpl: Synchronize mConnectedDevices access [jhonboy121]
1bd60e6 SystemUI: Use red color for low bluetooth battery [Adithya R]
7761dea SystemUI: Refactor statusbar bluetooth icon [Adithya R]
57a79ee SystemUI: Update Bluetooth battery level assets [Hernán Castañón Álvarez]
05b2eac Squash of SystemUI: Show bluetooth battery level [LuK1337]
6c1f940 sounds: Use screenshot sound from Samsung S21 Ultra [Rizky Benggolo]
db854fe sounds: Implement new screenshot sound effect [minaripenguin]
f5df8ad data: Rename GoogleAudio to CustomAudio [AshutoshSundresh]
b2fb363 data: Import keyboard sounds from osu! [AshutoshSundresh]
342cb53 data: Add UI tap sound from ACE AS0618 [AshutoshSundresh]
6e4e439 data: Import some UI sounds from Samsung S21 FE [AshutoshSundresh]
a6a8850 Build Google audio files from android12 [2/2] [BeansTown106]
ba0b4dc udfps: Add support for udfps on aod without dedicated sensor [TheScarastic]
8f4e71b udfps: Trigger onFingerDown with regular action down events too [Arian]
89d0807 udfps: Make pressed udfp view configurable [TheScarastic]
858c936 udfps: Restore illumination dot for global hbm [Arian]
e0bee00 EasterEgg: allow using toy without unlocking [nift4]
e0225e8 EasterEgg: Fix some warnings [Michael W]
6c0ca92 CameraDeviceImpl: Don't crash when checking input configuration failed [Xayah]
3d9cec6 Camera: Expose aux camera if packagename is null [wbs306]
894f0d4 Camera: Don't crash when trying to disable shutter sound [jhenrique09]
6b5558f camera: Skip HFR checks for privileged apps. [Sai Kumar Sanagavarapu]
2e301c0 Camera: Skip stream size check for whitelisted apps.. [Gaoxiang Chen]
fe69110 camera: Allow extending aux list/excludelist via resources [LuK1337]
0bd2633 CameraManager: Fixup exposing aux camera to apps [Ido Ben-Hur]
40ee316 camera: Support exposing aux camera to apps [Sauhard Pande]
47073e2 base: Update ic_doc_folder drawable to MD2 [Anushek Prasal]
c7e6236 base: Update some icons to MD2 [Anushek Prasal]
3bce833 GLSurfaceView: report draw finished after first onDrawFrame in GLThread [shoudil]
5920e2a Add synchronization for invokeForAllObservers call [Devi Sandeep Endluri V V]
b686742 Fixes crash/race condition when destroyActivity [katao]
2fb6c0f MountService: ensure VolumeRecord with UUID exists before modifying [Scott Mertz]
9254b14 Crash occured due to null pointer exception. [Niraj kumar Mishra]
9897390 frameworks: Fix null pointer Issue [mqi]
835312f view: add null check for dispatch touch view [jianzhou]
676033c os: Process: Fix wrong code in isThreadInProcess [leo zhang]
ece49d7 ActivityThread: Prevent surface hang up when screen on and screen off [Guo Li]
575cc86 Add vpn notification channel to be blockable [maxwen]
89c38c4 Set alert dialog message to use system font [maxwen]
183e62a Fix list style alert dialog to use system font [maxwen]
879dde9 SettingsLib: Don't show system overlays on apps list [Henrique Silva]
6868915 Shell: Don't show bugreport on DocumentsUI [jhenrique09]
11711ee Calm down attention service logspam [Adhitya Mohan]
d681516 base: Update few drawables [Jesus R]
fd4e42a Suppress FingerprintManager logspam [Harsh Shandilya]
13d83d6 Kill off provider info logspam [Harsh Shandilya]
895e2ff Shorten wait time for shutdown time optimization [zljing]
8bb68a9 InputWrapper: Opt out early if session == null [Lars Greiss]
567cd01 Speed up Orientation Listener [Chet Kener]
6e99e45 ServiceRegistry: Don't throw an exception if OEM_LOCK is missing [Scott Warner]
e783a10 DEBUG: Turn off some debugging we don't need. [mydongistiny]
2eedd73 Fix incorrect context classloader initialization in system_server [yuanhuihui]
de115ad Fix MtpDatabase multithreading NullPointerException [katao]
48806b6 BackupAgent: Add backup shared mode [Arthur Shuai]
75c1226 SystemUI: Fix SystemUI Crash [mqi]
21cdc36 SystemUI: fix MediaProjection cast crash [Pawit Pornkitprasan]
fd9242e Enable KEY_WFC_SPN_FORMAT_IDX_INT universally [timocapa]
d8183db SystemUI: Tiny expanding improvement [BigBrother1984]
2683542b Call log limit 500=>5000 [psyafter]
d663086 MountService: Prevent NPE with DropBoxManager [AdrianDC]
ea7c742 Add missing STORAGE_INTERNAL permission for BackupRestoreConfirmation [c_jyuan]
df578f2 Keep recent tasks for more time in memory [ezio84]
a09975d Makes the loading "spinner" animation smoother [Sar Castillo]
8c9df54 CarrierConfigManager: enable LTE+ icon by default [Jake Weinstein]
2f1cd7e8 Add "android.permission.READ_PHONE_STATE" to manifest [Janson Kang]
b0d3789 Increase Zenmode max hour limit from 12 to 24 [Alex Cruz]
6937830 Reduce log verbosity: Don't spam logcat [fusionjack]
43c19c0 base: Remove unnecessary videos [Janson Kang]
41d52b5 base: Delete media tests [Evan Anderson]
64436bc WallpaperService: Fix half black wallpaper after rotating quickly [jianhuac]
d10a3a7 KernelCpuUidTimeReader: Decrease log level on non-eng builds [Han Wang]
b90ec00 Allow adjusting progress on touch events. [Danny Baumann]
09472a0 PixelPropsUtils: Do not spoof ASI [aswin7469]
d1b5fdb Squashed Import of PixelPropsUtils [jhenrique09]
353e13d SystemUI: Enable session-based media actions for all apps [Adithya R]
7629a8e base: Show USB icon in ADB notification [Danny Lin]
6bd8222 Trace: Disable debug tracing on production builds [Danny Lin]
6feda46 Revert "Pre-emptively take a snapshot when finishing an activity before changing visibility" [Danny Lin]
fc848bc Editor: Disable magnifier position animation [Danny Lin]
a27eb11 Paint: Enable subpixel text positioning by default [Danny Lin]
121364f Allow disabling USB notifications [Danny Lin]
82c56dd Allow disabling important developer notifications [Danny Lin]
301dac0 Deprioritize important developer notifications [Danny Lin]
7a11b05 SystemUI: Speed up actions expansion animation [Danny Lin]
a3e8d90 SystemUI: Reduce screenshot dismiss delay to 3 seconds [Danny Lin]
7989b80 SystemUI: Check whether the selected WFD route is available [Weijie Wang]
a11440c Apply monet to fingerprint authentication ripple animation [SagarMakhar]
1059ee9 Fix stuck screen from display change timeout [Tommy Webb]
383ffec AlertWindowNotification: Correctly load app label [HZ]
5d4182e Do not ignore background vibrations from shell [Tommy Webb]
67a405e IllustrationPreference: Hide illustration when we fail to play anim [LuK1337]
7026727 toast: fix bg color not changing with theme change [SuperDroidBond]
209e5aa Settings: Add package name to installed app details [2/2] [Aayush Gupta]
ffa6889 TtsEngines: avoid crashes caused by null engine name [Oliver Scott]
76ea9f5 core: pm: Wipe package cache on upgrade [Albert I]
f768633 SystemUI: Fix the unlock sound played repeatedly [Shufeng Hou]
5416f4f SystemUI: Add left padding for keyguard slices [LuK1337]
6a067b6 SystemUI: Fix alarm icon [Michael W]
d4c5fcf Keyguard: don't use large clock on landscape [Timi Rautamäki]
406fe6e base: Use EFFECT_DOUBLE_CLICK for camera launch feedback [cjh1249131356]
843af23 SystemUI: handle camera launch gesture from keyhandler [Roman Birg]
cba8e63 Support for device specific key handlers [Bruno Martins]
d9a2985 AuthService: Add support for workaround side fps props [LuK1337]
e3e693e Sharesheet: Display two rows of max ranked targets [LuK1337]
95119c6 SystemUI: Use AVCProfileMain for screen recorder [Arne Coucheron]
510c261 webkit: SystemImpl: Make systemIsDebuggable() check IS_ENG as well [LuK1337]
c1b83c1 Enable Binder Proxy Tracking by Uid only on eng builds [dianlujitao]
59b7517 Fix bug Device that can't support adoptable storage cannot read the sdcard. [sangho.yoon]
69041b1 SystemUI: Remove nav bar background in QS customizer [Danny Lin]
dd81097 WiredAccessoryManager: support for DP/HDMI display on soc:qcom,msm-ext-disp. [Sai Priyanka Thirukkovela]
61faf12 Force using WiredAccessoryObserver for DisplayPort [Harold Tan]
bb94636 WiredAccessoryManager: Update stream index assignment [Harold Tan]
add4f1f WiredAccessoryManager: use dev index from UEventInfo to form devPath [Harold Tan]
17a3141 WiredAccessoryManager: Update display port device index [Aniket Kumar Lata]
66ee475 WiredAccessoryManager: support for multiple display ports [Vignesh Kulothungan]
d1a63c5 audio: update WiredAccessoryManager to use ExtconUEventObserver based on events available [Dhananjay Kumar]
c2b816c WiredAccessoryManager: Support for multiple extconn devices [Haynes Mathew George]
5ae724a WiredAccessoryManager: update extcon file paths [Aalique Grahame]
691dd70 WiredAccessoryManager: Add support for DisplayPort Audio [Revathi Uddaraju]
0dab3a5 WifiDisplayController: handle preexisting p2p connection status [Li Sun]
afee67e Merge changes for launching wifidisplay from system settings [Indranil Chakraborty]
0dbe4d4 Revert "Remove dependency on IME subtype from TSMS" [Michael Bestas]
c44aae5 Fallback to global actions if assistant is not available [LuK1337]
8598e4d SystemUI: Add support for persistent usb drive notification. [Adnan Begovic]
49be1cb SystemUI: Allow snoozing SD card notification unconditionally [LuK1337]
79ce7ad SystemUI: Allow privileged system apps to access screenshot service [Danny Lin]
013874d core: Expose method to start assistant through Binder [Danny Lin]
6526524 Add support to manually pause/resume downloads [1/2] [qqzhou]
3e85755 Import cm_strings translations from Lineage [Tim Zimmermann]
e3234f6 metrics_constants: Add our DerpFest metrics [NurKeinNeid]
794f7de UpdateEngine: Add perf mode binder interface [Luca Stefani]
2341aee LockPatternUtils: Make settings getter and setters protected [d34d]
54f3b4a admin: Restore requireSecureKeyguard interface. [Adnan Begovic]
66d1566 Check for null callerPackage in getStorageEncryptionStatus [Ethan Chen]
13fc808 fw/b: Use ro.build.version.incremental to signal OTA upgrades [dhacker29]
5e5c61e5 Show the vibrate icon in the Status Bar by default [Chirayu Desai]
128ddc0 Updates to various icons: [Dan Sandler]
* frameworks/native
40adf3c Merge tag 'android-14.0.0_r20' of https://android.googlesource.com/platform/frameworks/native into HEAD [NurKeinNeid]
* manifest
b5eda57 manifest: Initial setup for DerpFest 14 [NurKeinNeid]
* packages/apps/DerpLauncher
f8f9ccf Revert "DerpLauncher: Apply material you palette to folder background" [NurKeinNeid]
b99d784 DerpLauncher: Introduce faster status bar expansion [Adithya R]
0a5f33b DerpLauncher: Use folder background color for QSB [Adithya R]
50c3cb6 Merge tag 'android-14.0.0_r20' of https://android.googlesource.com/platform/packages/apps/Launcher3 into HEAD [NurKeinNeid]
* packages/apps/FlipFlap
1f353d0 FlipFlap: Adapt to DerpFest [Erfan Abdi]
* packages/apps/Settings
ec891ab Settings: Fix findPeakRefreshRate logic [Fabian Leutenegger]
e3c33fd ChooseLockPassword: Don't uncheck auto confirm above minimum length [Adithya R]
49bf9f3 ChooseLockPassword: Decrease minimum pin length for auto confirm [Vishalcj17]
4303f97 Settings: Let app lock use face unlock [Pranav Vashi]
305bfec development: Enable force resizable activities by default [minaripenguin]
800d65a development: Enable freeform windows by default [minaripenguin]
8b4089a Settings: Add app lock summary for 0 protected apps [Pranav Vashi]
1a9ab2f Settings: fix app lock allow biometric toggle ignored (always on) [nift4]
d7eb37d Settings: Add lockscreen rotation as an optional rotation setting [Kelly]
8bb9061 Settings: Configurable 0, 90, 180 and 270 degree rotation [2/2] [kufikugel]
02c318c Settings: Add support for global cleartext penalties [Oliver Scott]
a4416e4 FaceEnroll: Fix circle camera view background color [Erfan Abdi]
7f1ce98 Settings: Import missing Face Unlock animation [Chris Crump]
5461d7f Settings: tether: do not set shutdown timeout if <=0 [jhonboy121]
1677ce6 Settings: convert hotspot timeout preference to a list preference [jhonboy121]
abce00c Settings: add TextView for summary into SeekBarDialogPreference [cjybyjk]
271cb0f SoftAp: add client manager [cjybyjk]
d404e26 SoftAp: add support for setting shutdown timeout [cjybyjk]
50113a2 SoftAp: add more bands to band preference [cjybyjk]
e694972 SoftAp: add back AP Band preference into tether settings [cjybyjk]
7177524 SoftAp: add Hidden SSID preference [cjybyjk]
c337128 Settings: Enable support preference only if enabled by config [Pranav Vashi]
2a79e95 Settings: Import settings from pixel-fw [Pranav Vashi]
3df6786 Settings: Replace android:name for SettingsGoogle [someone5678]
e8f76c3 Settings: Sync pixel-framework import [mydongistiny]
5e8f9dd Settings: Add simcard number title for SIM1 [ShevT]
c85f2c4 Settings: Fix ringtone selection for devices with e-SIM [jhenrique09]
89ed2ef MSIM Ringtone: Improve on devices with ESIM [jhenrique09]
728611d Settings: Use AOSP translations for MSIM ringtone [jhenrique09]
432209e Settings: enable SIM card ringtone only if slot not empty [1/2] [maxwen]
b169255 Settings: Phone ringtone setting for Multi SIM device [2/3] [Ting Yu]
3eb5969 Settings: Add missing summary for Display size and text [PainKiller3]
e4b44a5 Changelog: Replace com.android.settingslib.collapsingtoolbar.R with com.android.settingslib.widget.R [xyyx]
c74d79b Changelog: Use NestedScrollView instead of ScrollView [DennySPb]
d111b72 Changelog: Rework with Activity [xyyx]
1669787 Changelog: fix possible title pattern mismatches [Vol Zhdanov]
21110b8 Changelog: use normal font instead of italic for commiter name [Vol Zhdanov]
f2c574f Changelog: Add left padding [xyyx]
cf79e90 Settings: update changelog activity [dadi11]
9550ab4 Changelog: Fix text selection with dot [xyyx]
c0b7f3a Changelog: clean and make themeable [xyyx]
ed97a51 Changelog: prettify [pcarenza]
1314813 Settings: Changelog [david]
964b881 Settings: Add Updater [Harry Youd]
f660a5b Settings: Separate System Navigation Pref from AOSP Gestures [SuperDroidBond]
54ab62f Settings: Statusbar brightness control [2/2] [Danesh M]
5b3e88d Hide fingerprint settings help if URL is empty [Michael Bestas]
e1e5a75 fixup! Settings: Show single-touch wakeup setting on rear & front fps devices [Michael Bestas]
cfd7709 fixup! Hide SFPS wakeup setting when it's not supported [Michael Bestas]
a20ed02 Settings: Regulatory: Fullscreen instead of AlertDialog [ReallySnow]
8cf8a88 Settings: Ambient Music Ticker - Allow to pulse on new tracks [2/2] [ezio84]
1b51da9 Settings: Hide settings that don't work when taskbar is enabled [LuK1337]
9e0fa9b Settings: switch to 3-button navigation when disabling navbar [Timi Rautamäki]
69f1db7 ButtonSettings: Add "Enable taskbar" toggle [LuK1337]
e3b74cc Settings: Don't allow setting 0 to volume dialog timeout [2/2] [Ido Ben-Hur]
89a5f5d Settings: Fix a null pointer exception on cutout force full screen [Mesquita]
2709922 Settings: Improve force fullscreen settings layout [Adithya R]
48432b2 Settings: Improve force fullscreen settings fragment [jhonboy121]
481fb9a Settings: [2/2] Implement cutout force full screen [jhenrique09]
aa0fab5 Add Face Unlock with ParanoidSense (2/2) [Chris Crump]
afd3495 PreventRingingParentPreferenceController: Refactor summary generation [Ido Ben-Hur]
cfc78e0 Settings: Re-organize device info page [PainKiller3]
bcf3e05 Settings: Show SoC Model rather than value of ro.board.platform if available [Tim Zimmermann]
8105ff8 Settings: Align TotalRAMPreferenceController with MemoryUsagePreferenceController from dev settings [Tim Zimmermann]
d73dc96d Settings: Add platform and RAM to Model & Hardware [Rashed Abdel-Tawab]
421ab47 Settings: Choose which ringer modes to cycle with the gesture [2/2] [Ido Ben-Hur]
cb92f0a Settings: Gestures: Add option to cycle through ringer modes [2/2] [rituj]
4a4086c Settings: Allow customizing volume dialog timeout [2/2] [Ido Ben-Hur]
97214e8 Settings: Display auto rotate settings instead of toggle [Adithya R]
9eb797d display: Import screen resolution from cheetah stock [Alvin Francis]
884caae Settings: Import SettingsGoogle animations from AP11.231020.013.A1 * Pulled from Android 14 QPR2 - cheetah_beta-user 14 AP11.231020.013.A1 11055090 release-keys [techyminati]
f6c14ad Settings: Utilize our AppListPreference with Sensor Blocking pref [calebcabob]
50514f5 Settings: BlockSensors: Fix/update the way Footer info is added [calebcabob]
8e7a46c Settings: Make sensor block package list configurable [2/2] [Hikari-no-Tenshi]
0f1ab3a Settings: Sensor block per-package switch [2/2] [LorDClockaN]
49da043 Settings: Fix potential NPE in WifiTetherSecurityPreferenceController [Fabian Leutenegger]
d975cbc Settings: Introduce Adaptive Playback [2/2] [Chris Crump]