-
Notifications
You must be signed in to change notification settings - Fork 24
/
changelog_instantnoodlep.txt
1113 lines (1034 loc) · 72.3 KB
/
changelog_instantnoodlep.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
====================
05-20-2023
====================
====================
05-19-2023
====================
====================
05-18-2023
====================
* frameworks/base
a4d2513 SystemUI: Small cleanup 'Lockscreen text size' [ShevT]
====================
05-17-2023
====================
* external/unrar
45b4c78 unrar: Move to /system_ext [Nolen Johnson]
* frameworks/base
0445f0b SystemUI: Restore default lockscreen clock text sizes [minaripenguin]
18b0c7b SystemUI: Lockscreen text size settings [1/2] [minaripenguin]
7231ddb SystemUI: Lock screen clock top margin settings [1/2] [minaripenguin]
2c7223e SystemUI: Ignore font padding for large ls clock [minaripenguin]
* packages/apps/Aperture
0c96ae9 Merge branch 'lineage-20.0' of https://github.com/LineageOS/android_packages_apps_Aperture into HEAD [NurKeinNeid]
* packages/apps/DerpSpace
4b732de DerpSpace: Lockscreen text size settings [2/2] [ShevT]
db94d3c DerpSpace: Lock screen clock top margin settings [2/2] [ShevT]
* system/extras
4f23392 partition_tools: extend lpunpack for split partitions [Daniel Köster]
====================
05-16-2023
====================
* external/rsync
cdb7e98 rsync: Move to /system_ext [Nolen Johnson]
* external/zstd
e6a035a zstd: Move to /system_ext [Nolen Johnson]
====================
05-02-2023
====================
* build/make
aaed44c Merge tag 'android-13.0.0_r43' of https://android.googlesource.com/platform/build into HEAD [NurKeinNeid]
* frameworks/base
e7530da Do not backup APKs that do not have `allowBackup` attr on it's manifests [minaripenguin]
7ce8380 prevent crash with pin protected user and taskview [Carsten Rohn]
ff3c866 PixelPropsUtils: Update from May release [NurKeinNeid]
ef10660 Merge tag 'android-13.0.0_r43' of https://android.googlesource.com/platform/frameworks/base into HEAD [NurKeinNeid]
cfec213 SystemUI: Add brightness slider styles [1/3] [SamarV-121]
d835199 QRCodeScannerController: Use Lens as fallback activity [Nauval Rizky]
fd99125 base: Reset props for status bar lyric [1/2] [cjybyjk]
fe2cd05 SystemUI: Add gradient OOS style notification clear all button [1/2] [NurKeinNeid]
8dd73d9 PhoneWindowManager: Pocket Judge: Don't mess with power to reject call [Ido Ben-Hur]
55b9879 base: Pocket Judge: Don't go to sleep while on call [Ido Ben-Hur]
1cfe465 SystemUI: Extend kill button to notification conversation guts [DroidFreak32]
9bbf367 SystemUI: Reset QS on UI mode change [althafvly]
0001504 Fix transistent task mode app compatibility issue [nift4]
e43261f WindowManager: finally proper desktop mode handling [nift4]
81318be Revert "WindowManager: force enable desktop mode" [nift4]
16a83bd SystemUI: Enable cast tile without Wi-Fi connection [nift4]
1045203 WindowManager: force enable desktop mode [nift4]
0a7cb40 Revert "DisplayWindowSettings: Don’t check for forceDesktopMode for freeform" [nift4]
1533dac Revert "Always make mouse cursor show on external display if it exists" [nift4]
d86e53a SystemUI: Statusbar clock background chip styles [1/2] [minaripenguin]
60bd82c BrightnessUtils: Conditionally use low gamma implementation for brightness curve [SagarMakhar]
4557d60 SystemUI: Make QS Header Image less intrusive with codebase [Pranav Vashi]
4c8e266 SystemUI: QS Header Image: Apply white filter for light theme [minaripenguin]
b6ac113 SystemUI: QS Header Image [1/2] [Idc]
f1009a1 AOA enhancements [nift4]
01942c0 PhoneStatusBarTransitions: Always animate battery out at the same rate [Ido Ben-Hur]
ebeac94 SystemUI: StatusIconContainer: Shorten entry animations [Ido Ben-Hur]
0122b16 SystemUI: Remove brightness slider top margin [minaripenguin]
447f780 SystemUI: Match collapsed qs header height with status bar [Col_or]
5f243ef SystemUI: allow set combined QS with config [Harsh Pal]
1ee3d05 SystemUI: fix antiquated TunerActivity bugs [nift4]
0ed427e base: tuner: bring back tuner navbar editor from N [1/2] [maxwen]
bc706dc Navbar: Fix issue where pill disappears in gestural mode [Pranav Vashi]
6fa0241 Navbar: Ensure 2/3 button layout options play nice with gesture navbar [Alex]
e0eb868 Navbar: Fix navbar layout switch and remove old cruft [2/2] [maxwen]
d341909 Navbar: Allow the launch navbar fragment externally [ezio84]
732b070 SystemUI: navbar extra keys [maxwen]
5eba060 Allow disabling pointer acceleration [nift4]
d752231 Implement transistent task mode [nift4]
a60f92b Notifications channels are not locked at first boot [Edward Savage-Jones]
c12c3bc Add Launcher3 permissions [xyyx]
322dfcc QuickUnlock: Avoid saving pin/password length as in a sql db [Tobias Merkel]
8d8ef69 Fix sfps arrow color in overlay [jhenrique09]
1e04c92 Fix com.android.server.wm.TaskFpsCallbackController#unregisterListener method NEVER works [Rikka]
47cb9fb PixelPropsUtils: Don't spoof fewer apps [jhenrique09]
b3b9bd2 Revert "PixelPropsUtils: Spoof Pixel 7 Pro to some Google apps" [jhenrique09]
6acdfef Fix crash with HW assist button [Pranav Vashi]
ba4284f [DNM][HACK] telephony: Force Class 0 SMS to Class 1 [Adithya R]
b5eabee SystemUI: More rounded corners [Lucchetto]
48a6250 Revert "SystemUI: screenshot: open the screenshot instead of edit" [NurKeinNeid]
381670d SystemUI: Skip screenrecord dialog when long pressing the QS tile [Ido Ben-Hur]
4635364 [Bugfix]check whitelisted packages exclude nonsystem app [Wen Zhang]
7b18f16 WindowProcessController: Fix potential memory leak [Adrian Roos]
4aef21b Touch is not working [pioush.kumar-IN009423]
f6ddad7 SystemUI: Fix QS header alignment with status bar [Pranav Vashi]
bda26fa SystemUI: Align QS header with status bar [cjh1249131356]
ce71231 InputDevices: Fix Hungarian language overlay [Sean McCreary]
0e868a2 MetaKeyKeyListener: Disable locking of toggled modifier keys [Sean McCreary]
6f0c928 SettingsProvider: Fix for google backup and restore [PlayfulGod]
7945e50 udfps: Implement framework dimming support [cjybyjk]
9b8c7ea SystemUI: Allow toggling privacy indicators [1/2] [Pranav Vashi]
a08806d SystemUI: Kill old privacy indicator icons completely [Pranav Vashi]
47b9aa4 SettingsLib: Update 5G+ icon to Silk design [Adithya R]
cf4a21f Revert "Separate mute and vibrate icons in status bar" [Adithya R]
873ed79 Revert "Add settings observing for vibrate icon to Keyguard" [Adithya R]
3ac8d90 Revert "Sysui changes to support vibrate icon setting" [Adithya R]
9d76894 Revert "Add settings default handling for STATUS_BAR_SHOW_VIBRATE_ICON" [Adithya R]
2316b9f SystemUI: Remove vibrate/mute from status bar blocklist [Adithya R]
fa4376f PixelPropsUtils: Update fingerprints to April 2023 [NurKeinNeid]
ca52dcf SystemUI: keyguard: preview: Catch InterruptedException [SamarV-121]
2a37423 SystemUI: Reconfigure bottom indication text paddings [minaripenguin]
3ecffd9 CarrierConfigManager: Enable VoNR by default [johnmart19]
5b99134 SystemUI: Turn on UMO turbulence noise and surface ripple by default [NurKeinNeid]
98df8a5 Fix the problem of slow exit of boot animation [niuwenchao]
cddd9c0 Fingerprint authentication vibration [1/2] [beanstown106]
aebf781 Improve Transition GC initiation by improving the Frameworks triggering signal [Wessam Hassanein]
7bd769d ParallelSpace: Prevent system crash for blocking notification of blocked apps [Pranav Vashi]
196e259 services: Do not turn on multi user switch for new parallel space [Pranav Vashi]
a4b1e19 Fix an issue that the FoldStateListener induces a memory leak [Kwangkyu Park]
19ad71f Add null pointer check to avoid system crash. [Jessie Hao]
2de42e2 CompanionDeviceManager: This uses the MANAGE_COMPANION_DEVICES permission [Sourajit Karmakar]
5c31959 SystemUI: Dynamically adjust Lockscreen clock font spacing [spezi77]
4ec06cb derpUtils: Add method to detect whether overlay is enabled [Alex Cruz]
5e4e969 AppLock: Fix hidden apps reset after reboot [Pranav Vashi]
0c0c166 AppLock: Update API [Pranav Vashi]
58225ff AppLock: Allow locking all apps visible in launcher [Pranav Vashi]
046bba1 SystemUI: Adapt circle battery background to white/dark QS changes [Ido Ben-Hur]
2ddd269 SystemUI: screenrecord: Remember last used blinking dot position [Ido Ben-Hur]
eae982c fixup! SystemUI: Make clock & battery clickable again^2 [Michael W]
04cf937 fixup! SystemUI: Add VPN tile [LuK1337]
e4edd8e SystemUI: Make clock & battery clickable again^2 [Michael W]
0e71434 SystemUI: Apply dark theming to split shade [minaripenguin]
9ddbd0c SystemUI: Fix clock text color on combined qs header [Pranav Vashi]
a272289 Remove wtf if no display nits mapping exists [Alistair Delva]
875a8a1 fixup! Keyguard: Add option to scramble pin layout when unlocking (2/2). [Tommy Webb]
682951d [BugFix]Fix NPE when pip onAnimationEnd [wangdongdong6]
633c0d7 Fix the pip bounds error when entering pip mode. [buwenjing]
41d1627 Skype is not opening in full screen [pioush.kumar-IN009423]
355df5e System crash during dismissing split in multi-user scenario [pioush.kumar-IN009423]
4b9a233 Camera: Fix null pointer access [Kwangkyu Park]
b4c68d6 Youtube application when moving to PIP animation was very bad [pioush.kumar-IN009423]
729d2b4 Reduce the memory usage of the ProtoLogToFile [haoyu.wang]
c818357 Pause is getting scheduled 2 times [pioush.kumar-IN009423]
1caf266 AppOpsService: Don't log stack traces for isolated processes [Svet Ganov]
0498527 Logspam: Properly handle optional app widgets service [Svet Ganov]
b747eaf BatteryStatsService: limit logspam [Svet Ganov]
bbb296e SystemUI: Refactor notification reticker [Trishiraj]
06be693 Ignore AGPS toggle during user-initiated emergency calls [Chirayu Desai]
7cc998f Remove sensitive info from SUPL requests [Tommy Webb]
8d1f9f6 Fix secondary user crash with system user locked [Tommy Webb]
497fec7 Fix profile provisioning check in secondary users [Tommy Webb]
bc86da0 Allow profile owner to set user_setup_complete secure setting [Oliver Scott]
e12f995 Make sure gc_urgent is normal mode, when no need GC [Dylan Chang]
6e85c47 SystemUI: Fix position and orientation of arrow keys in navbar [Wolfram Liebchen]
0fb833c SystemUI: Avoid unnecessary keyguard indication controller recreation [LuK1337]
4cdca09 PhoneWindowManager: Fix wakeup and long-press actions of assistant key [kyasu]
d8a0c52 JobScheduler: Respect allow-in-power-save perm [Tommy Webb]
87f2779 Restore Somnambulator functionality [nift4]
e2647fc InputMethodManager: Prevent unnecessary invocation of IME [minaripenguin]
2d55968 UI: Use SNAP_FIXED_RATIO for multi-window globally [Andy CrossGate Yan]
52b8a03 Restore ZenMode setting in dialog like Oreo panel [nift4]
8e0d96a Revert "Impl basic window round corner with Outline" [nift4]
8ab3c98 Revert "DecorView: Force set renderShadowsInCompositor to false to fix shadows" [nift4]
4b440c3 Revert "DecorView: Do not round corners in fullscreen" [nift4]
826e30e DisplayWindowSettings: Don’t check for forceDesktopMode for freeform [Erfan Abdi]
15d534e DecorView: Do not round corners in fullscreen [luka177]
1c3bdd7 Impl basic window round corner with Outline [utzcoz]
f4d8fee Add back button for freeform window [utzcoz]
763a59d Only show pip button if activity supports it [utzcoz]
7e06075 Add minimize & pip buttons to freeform windows [Jon West]
673a618 DecorView: Force set renderShadowsInCompositor to false to fix shadows [luka177]
ffb7cc6 Fix freeform window resize not working on multiple displays [nift4]
6302f24 Always make mouse cursor show on external display if it exists [nift4]
1e92ccd InputManager: allow to force NULL cursor [nift4]
c329b57 InputManager: add cursor change listener [nift4]
3eafd0b Disable Ambient on wake gesture when incall [xyyx]
142fa0c Show Ambient instead of lockscreen on wake gestures [1/2] [ezio84]
eb50c36 base: Add support for disabling fingerprint lockout [1/2] [SamarV-121]
916cb65 SystemUI: Hide wifi standard icon if not connected to wifi [minaripenguin]
e240426 Apply wakelock for notification sound [WoongKi Min]
cb3d8f1 Return no optmization info for package "android" [Jiakai Zhang]
4855ba1 [Bugfix]fix NullPointException when PackageInfo's verifiers is null [Wen Zhang]
e9d0cd4 [Bugfix]fix NullPointException when pkg is null [Sichen Liu]
889f0c2 [Bugfix]Switch back to the application on /system when UID and path changed [Wen Zhang]
f9abaf5 Intent firewall enhancement [nift4]
9f92bb2 hwui: CanvasContext: Reduce the timeout for dequeueing buffers [electimon]
22a2d6c NotificationShade: Make blur crossfading more gradual [Danny Lin]
e4f15eb SystemUI: Use better icon for camera keyguard affordance [Adithya R]
1ffc890 SystemUI: Redesign lockscreen bottom buttons [Adithya R]
f70265c SystemUI: keyguard: quickaffordance: Add DND to the defaults [1/2] [Ido Ben-Hur]
824b635 base: Adapt custom lockscreen shortcuts to 13-QPR2 [1/2] [Ido Ben-Hur]
226c604 Revert "SystemUI: Introduce camera & flashlight keyguard affordance" [Ido Ben-Hur]
890f5ba base: Allow setting bottom keyguard shortcuts [1/2] [Ido Ben-Hur]
2294839 SystemUI: Introduce camera & flashlight keyguard affordance [Adithya R]
c6a157a Fix scrim issues regarding transparency [nift4]
55a1f9f SystemUI: disable lockscreen tuner [nift4]
8d21796 System UI tuner: Unlock 'em all! [nift4]
6362910 disable safe volume everywhere, not just the US [Rusty Bird]
6e2865f SystemUI: always allow plugins [nift4]
47f9b5b SystemUI: Apply QS transparency to footer actions background [Pranav Vashi]
4354f81 base: Fix corny blur rendering bug [alibei]
47c4c11 fixup! blur: Switch to glass blur effect [Mohammad Hasan Keramat J]
6601921 SystemUI: make power menu lite translucent + floating [nift4]
9a76bc1 blur: Switch to glass blur effect [minaripenguin]
2809d7d blur: Bump SystemUI blur radius to 175 px [Danny Lin]
5971aee SystemUI: Add Chinese translations for Bluetooth dialog [AmeChanRain]
43bf7cf base: Import Russian translations from DerpFest-12 [suiqa]
6ac976f base: Import Italian translations from DerpFest-12 [M4rtox]
a67db6b SystemUI: Import Chinese translations from DerpFest-12 [HearnYuyuko]
f670600 SystemUI: Update lyric ticker on post notification [AmeChanRain]
32e0f4d Do not drop app permissions on hibernate [Sergey Vasiliev]
4bbc0cf libs: PipTaskOrganizer: do not start fade out animation for pip if surfacecontrol leash is null [jhonboy121]
bfb2f6b Introduce trimMemory to AppIconCacheManager [Shen Lin]
196dfaf SystemUI: Improve fp ripple animation color [minaripenguin37]
f2d21c5 Apply monet to fingerprint authentication ripple animation [SagarMakhar]
2704246 keyguard: Actually kill Fancy Colon [Joe Maples]
33b5ba4 Perf:Fix the issue that activity boost duration abnormal. [Libo Jin]
c1de2bb CachedAppOptimizer : Pageout File pages during system compaction [Divyanand Rangu]
17b39f3 CachedAppOptimizer : Fix compaction configuration being ignored [Divyanand Rangu]
b6d47ee SystemUI: Forward port QS fling animation boost to NotificationPanelViewController [Jake Weinstein]
a8bf7dd udfps: Forward port Boost framework hook. [Vishal Cj]
6e6f8dc BoostFramework: Kill logcat spam on devices without QPerformance [xyyx]
3cd47c2 OverScroller: Import BoostFramework.ScrollOptimizer [chrisl7]
058ada7 Filter multi-layer cases for pre-rendering [Jun Wang]
3a37884 perf: Add lock protection for initialization in ScrollOptimizer [Jun Wang]
cef10a2 core: Port CLO's Framework Boost [Akash Srivastava]
4fa14bd5 camera2: Add non burst sizes to mandatory streams for ultra high resolution sensors [Jayant Chowdhary]
a2112c4 Select the proper request list size [Guruprasad Gaonkar]
92e8236 base: Grant OnePlus Gallery storage permissions [cjh1249131356]
f87dc31 base: Add mock oplus LinearmotorVibratorService [cjh1249131356]
24bcfef ServiceRecord: Don't post running notification for oplus camera [cjh1249131356]
61b7694 fixup - SystemUI: Make the volume dialog expandable [Akash Srivastava]
a266555 SystemUI: Make Bluetooth dialog tile optional [Karan Parashar]
68ee250 SystemUI: Use secondary label for language QS tile [Anushek Prasal]
f171117 QS: Locale Tile [SpiritCroc]
f2cd789 base: Allow disabling color inversion support [1/2] [Ido Ben-Hur]
b560342 Fix disabling power menu completely on secured locscreen [Pranav Vashi]
32e61f0 SystemUI: Optional haptic feedback on back gesture [1/2] [DennySPb]
800396e Toast app icon display is inconsistent for system apps [Edward Savage-Jones]
e18a70d [BugFixed][OOM_ADJ] use max_adj to control process final adj [guolun Xue]
88e1998 Do not ignore background vibrations from shell [Tommy Webb]
dd7c25d SystemUI: Blur the power menu [Elluzion]
e05dbc3 SystemUI: Remove visibility check in setting QSCarrier color [Adithya R]
5e72f99 MobileSignalController: Do not duplicate SPN and PLMN [Adithya R]
d1f2d54 SystemUI: Fix keyguard user avatar margins [strwbrry143]
052eee3 SystemUI: Redraw display cutout on overlay changes [Adithya R]
b6d74ca SystemUI: Don't force small clock when media isn't allowed on keyguard [Ido Ben-Hur]
9e24443 GlobalActionsDialogLite: Dismiss the dialog when restarting SystemUI [ezio84]
3f03e6e frameworks: Add restart systemui shortcut to power menu [1/2] [ezio84]
2b715a9 SystemUI: Transparent QS customization [1/2] [spkal01]
dfb36d7 AutoAODService: Better check for doze enablement [Ido Ben-Hur]
66330b1 SystemUI: write initial value of SHOW_QR_CODE_SCANNER_SETTING on first call [maxwen]
e485a5b SystemUI: Show the alarm icon on QS as well [Ido Ben-Hur]
1bbea14 SystemUI: Allow choosing a custom background color seed [1/2] [Ido Ben-Hur]
ce94226 SystemUI: ColorScheme: Limit custom tinting to accent1 [Ido Ben-Hur]
5be5158 SystemUI: monet: Allow a more granular control over shades [1/2] [Ido Ben-Hur]
52b0fda ThemeOverlayController: Don't enable neutral overlay on boot as well [Ido Ben-Hur]
c040ada ThemeOverlayController: Don't enable neutral overlay when we use dark bg [Ido Ben-Hur]
2ee5b7a base: Add support for Lockscreen clock fonts [El Dainosor]
1e2a423 KeyguardIndication: Fix glitchy charging info on AOD [Pranav Vashi]
bcd6a36 SystemUI: cleanup bluetooth dialog impl [jhonboy121]
03aa8db SystemUI: Fetch bluetooth battery level from any device [jhonboy121]
0e030ba BluetoothControllerImpl: Synchronize mConnectedDevices access [jhonboy121]
a3c76ae BatteryStatsImpl: Guard against OOB [Ido Ben-Hur]
1764331 Add support for global cleartext penalties [Oliver Scott]
335729b Global VPN feature [1/2] [Oliver Scott]
820b63c SystemUI: Add support for timeout-reboot [Luca Stefani]
d14236d Fix stuck screen from display change timeout [Tommy Webb]
2449554 Hidden Apps filter for use in the Settings app [t-m-w]
9ac7c09 Show hidden apps on secondary users' app lists [Oliver Scott]
dc4fe07 SystemUI: Fix up status bar end side content layout [Pranav Vashi]
80c2e32 SystemUI: Fix up status bar start side content layout [Pranav Vashi]
f9b1c1f base: Android P system animation (1/2) [Pzqqt]
fb6f745 base: Added screenshot tile [maxwen]
1f7e185 QS: Add and use Mobile Data panel [Joe Maples]
76214a1 SystemUI: Add back charging ripple [aswin7469]
b8d5463 biometrics: Fix udfps races [Andrzej Perczak]
b2bfd63 SystemUI: Allow UdfpsAnimations to work with multiple resolutions [AnierinB]
eca033e [SQUASH] Bring back UDFPS icons and animations [1/3] [SagarMakhar]
f81d852 SystemUI: Follow light/dark theme in new QS footer actions [Tim Zimmermann]
5466dc6 SystemUI: Follow light/dark theme in SplitShade Header [ReallySnow]
f544a00 Slightly optimize less boring apps check for heads up [Pranav Vashi]
9f1a647 NotificationInterrupt: Clean up for isSnoozedPackage [Pranav Vashi]
2a6f091 wm: Migrate deprecated getColor to one with Theme [utzcoz]
ff41f37 SystemUI: Fix QS customizer corner radius [Pranav Vashi]
6bbf6a8 SystemUI: clock_default_large: Don't hardcode monospace font [Ido Ben-Hur]
3250837 SystemUI: DreamTile: Enable for everyone [Ido Ben-Hur]
d2938e4 AutoAODService: Properly handle reboots & fix some logic [Ido Ben-Hur]
ff39e1b base: Add support for UI Styles [El Dainosor]
be22b4e base: modify the mundane [El Dainosor]
556080e base: Declare a gradient end color [ElDainosor]
1205b2f DerpSpaceTile: make us secure [Ali B]
e071a1a DerpSpaceTile: Make default state active [NurKeinNeid]
64839b0 overlays: outline: Add derpspace tile [NurKeinNeid]
e7c3085 SystemUI: fix SliceView layout [Anay Wadhera]
7b57b66 overlays: {acherus,outline}: Add launcher and themepicker overlay [Pranav]
b30f783 Add AlarmsBlocker [1/2] [faust93]
7df2c69 Add WakelockBlocker [1/2] [maxwen]
917be61 QS customizer: Better string for 'reset' menu item [Alex Cruz]
878efcb Dont show vendor mismatch message by default [00day0]
ed7cfb4 base: Make vendor mismatch message optional [Anushek Prasal]
49210ca Dynamically tell the user which vendor image is needed [beanstown106]
5d2e0da Show a more descriptive message when vendor.img is out of date [beanstown106]
b14ebe3 services: lineage: publish binder service only at onStart phase and use super class context [jhonboy121]
7dc29ac SystemUI: Don't confuse rotation with orientation [maxwen]
d3a266f SystemUI: config to hide status bar on lock screen [1/2] [maxwen]
2da2861 Change the default value of sync mode to NORMAL [ot905302]
ea113dc derpUtils: Import restart systemui api [SpiritCroc]
4244407 ImeFocusController: Prevent a rare NPE [Ido Ben-Hur]
333d99e SystemUI: Retune clock paddings [Pranav Vashi]
f8cc3da [1/2] Statusbar Clock background chip [StarkDroid]
aed8a33 core: Add dark mode support for `colorAccentPrimary` [strwbrry143]
196073e SettingsProvider: grant device config permissions [Ali B]
eec8ebc1 base: Make wired charging animation follow settings too [cjh1249131356]
97195e46 base: Add toggle to disable charging animation [1/2] [Anushek Prasal]
f48e3c7 base: add missing device config permissions for settings [Ali B]
df0a9c1 fixup! SystemUI: Fix method for disabling unlock ripple animation [palaych]
8fdc397 base: allow disabling ripple effect on unlock [1/2] [Rishawn]
d46f306 charging: Allow using vibration without sounds [xyyx]
c9f3695 Battery charge warning [1/2] [Nicolas Dhouailly]
9f6b7cd SystemUI: Make Lens work without independent package installed [cjh1249131356]
f5cc2da SystemUI: Integrate Google Lens into Screenshot UI [AshutoshSundresh]
c9909f8 Update various corner radiuses to align with AOSP apps [Edward Savage-Jones]
b49a39e3 Ambient Music Ticker - Allow to pulse on new tracks [1/2] [ezio84]
5ea6057 Pulse: Vertical mirror [1/2] [TikkiTikki]
2fe61f7 Pulse: Custom gravity and Center mirrored [1/2] [TikkiTikki]
16f2de2 SystemUI: Allow disabling clipboard overlay [1/2] [Adithya R]
d1bd15b config: Enable QR scanner shortcut in lock screen [Adithya R]
c53496a Set callback before hal connection to avoid NPE on startup [Christian Hoffmann]
0760c9d SystemUI: Make battery & clock clickable again in QS [Marc K]
c2545ca SystemUI: Implement Bluetooth dialog [Adithya R]
4c71c06 SystemUI: Introduce preferred network tile [cjh1249131356]
eeeb7ff IdleManager: update packagelist [dlwlrma123]
978e23a IdleManager: CleanUp [spkal01]
85f00a5 base: Implement background process killer [1/2] [Dil3mm4]
69ad891 base: Fix scheduled AOD/Sleep mode [cjh1249131356]
70201a7 SleepMode: Improve location mode logic [cjh1249131356]
be4c712 base: Always turn on sensors when disabling sleep mode [cjh1249131356]
f9347d4 base: Introduce automated Sleep Mode [1/2] [Anushek Prasal]
8e42ed4 Add api to get or kill foreground app [ezio84]
b8f49bc SystemUI: DerpSpaceTile: Don't support long press if Updater is not bundled [George Zacharia]
d49e99e SystemUI: Add DerpSpace Tile [Ali B]
4bbeeb9 derpUtils: Add isPackageAvailable method [shivatejapeddi]
ea07518 SystemUI: Disable all-caps for smart reply button text [Adithya R]
c60d89f SystemUI: LocationTile: Be affected by the secure tiles toggle [Ido Ben-Hur]
6ab4a3f AudioService: Guard against OOB in ringer mode cycle [Ido Ben-Hur]
64a9400 base: Choose which ringer modes to cycle with the gesture [1/2] [Ido Ben-Hur]
d37f6f3 SystemUI: Use Settings.Panel intent for Volume Tile [Joey Huab]
afc2284 SystemUI: Add tile to show volume panel [stofstik]
d88c69b SystemUI: Limit keyguard charging stats updates [xNombre]
d8df3b1 [SQUASH] base: Allow choosing a custom vibration pattern [1/3] [Ido Ben-Hur]
341bf11 base: Add vibration patterns from OOS [1/3] [rituj]
2a7268b SystemUI: Add a top margin for the battery bar. [spezi77]
72cbc82 SystemUI: Color the battery bar red when the level drops to 15%. [spezi77]
4927d0e SystemUI: Introduce keyguard battery bar settings [1/3]. [maxwen]
ae3a71d SystemUI: Make edit button click ripple effect rounded [DarkJoker360]
* frameworks/native
7f0b16f Merge tag 'android-13.0.0_r43' of https://android.googlesource.com/platform/frameworks/native into 13-op [NurKeinNeid]
* manifest
37472fa Merge tag 'android-13.0.0_r43' of https://android.googlesource.com/platform/manifest into HEAD [NurKeinNeid]
* packages/apps/DerpSpace
eee3314 DerpSpace: Update German translations [NurKeinNeid]
426a83f DerpSpace: Add brightness slider styles [2/3] [SamarV-121]
f6c6afa DerpSpace: Update Custom statusbar logo customizations fragment [NurKeinNeid]
* packages/apps/Settings
b01adae Merge tag 'android-13.0.0_r43' of https://android.googlesource.com/platform/packages/apps/Settings into 13-420 [NurKeinNeid]
* packages/modules/Bluetooth
798d1d3 Merge tag 'android-13.0.0_r43' of https://android.googlesource.com/platform/packages/modules/Bluetooth into HEAD [NurKeinNeid]
* packages/services/Telecomm
3453074 Merge tag 'android-13.0.0_r43' of https://android.googlesource.com/platform/packages/services/Telecomm into HEAD [NurKeinNeid]
* vendor/overlay
b7430ed UIStyles: add brightness gradient for pacleggers [El Dainosor]
86dab75 UIStyles: small changes for Optronic [El Dainosor]
eb1abdb UIStyles: Shishu Themes 1.2 [El Dainosor]
464a0e8 DO NOT MERGE: add dummy overlays for some themes [El Dainosor]
1c36b5d overlays: Add brightness slider styles [3/3] [SamarV-121]
====================
05-01-2023
====================
* frameworks/base
c89f7ce SystemUI: Controllable squiggle animation [1/2] [ReallySnow]
6781ff1 base: Fallback to double click effect for charging vibration [jhonboy121]
c9153ae base: Use wireless charging animation for wired charging too [Anushek Prasal]
548bbc0 SystemUI: Hide oos clear all if reticker enable [Genkzsz11]
aa764d2 SystemUI: Introduce OOS style notification clear all button [1/2] [00day0]
c0ae021 Fix bluetooth tile show blank [Wanhong Jiang]
8ca85ba display: Force a reset if brightness adjustment is changed directly [LibXZR]
cb50f22 display: Don't reset brightness adjustment on clearUserDataPoints() [LibXZR]
76526b3 ColorUtils: Prevent crash if alpha component is translucent [Pranav Vashi]
4928793 base: Support muting media volume on silent or vibrate mode [LibXZR]
12257c9 SystemUI: Allow disabling screenshot shutter sound [2/2] [Adithya R]
899994e Follow Dark/Light theme for Safe Mode dialog [Pulkit077]
46f239a Pulse: Implement pulse color based album art [1/2] [Pranav Vashi]
326af29 Pulse: Detach pulse view only when attached [Pranav Vashi]
8eb1e0d Pulse: Solid renderer round lines [1/2] [TikkiTikki]
74d686e Pulse: Set current Refresh rate as FPS animation value [Stallix]
59a7442 Pulse: Add more NPE checks [DarkJoker360]
92a027c Pulse: Extend to Ambient Screen [spezi77]
7552491 Pulse initial checkin for Android 13 [1/2] [bigrushdog]
671cffa SystemUI: Use same Vibrate icon as that in alert slider [chandu078]
fce3ab70 SystemUI: Fix toggling lockscreen rotation [1/3] [Dan Pasanen]
9061e52 Check ACCELEROMETER_ROTATION_ANGLES for current user [Tom Pratt]
3553555 Configurable 0, 90, 180 and 270 degree rotation [Ricardo Cerqueira]
cce89a6 LockPatternUtils: Make settings getter and setters protected [d34d]
a4425fa development: Address NPE when removing preferences out of developer options [Alex Cruz]
2e04728 Custom statusbar logo customizations [1/2] [LorDClockaN]
e913fb5 SystemUI: Use lighter material you shades for charging animation [minarypenguin]
c35cb8a SystemUI: Use color accent for charging animation [Genkzsz11]
eabe627b Fix exception caused by system app setting wallpaper [Ge Tianxiong]
8ae91a9 Telephony: Fix the record output [Zoey Chen]
499f485 SystemUI: NavigationModeController: make sure settings proxy is initialized before initializing length mode [jhonboy121]
fd89572 SystemUI: CastTile: Open cast settings on long click [Ido Ben-Hur]
6024f2a appop: Save discrete app op history for more permissions [Danny Lin]
129e0c9 SystemUI: BatteryMeterView: Set white tint in darkmode [althafvly]
77bd9dc SystemUI: Re-inflate QS and SB when CONFIG_SCREEN_LAYOUT [althafvly]
6f9b6cb Update notchbarkiller overlays [minaripenguin]
33b2c55 add missing display cutout overlays [Daniel Micay]
64090a3 overlays: Add notchbar killer for left-notch devices [Jaida Wu]
65ed598 overlays: Add notch bar killer [Josh Fox]
625f5d1 BiometricScheduler: Check if operation is finished before cancelling We can't cancel an operation that has already finished java.lang.IllegalStateException: cancel: mState must not be 5 [Adam Lawson]
26fac85 SystemUI: mark getIcon and mNewIconStyle as static so we can access it [NurKeinNeid]
1631217 LyricViewController: Support multiple dark tint areas [NurKeinNeid]
6e1333e SystemUI: Fix status bar lyric overlapping with the center clock [LibXZR]
5478841 fixup! base: Add status bar lyric [1/3] [LynnrinChan]
ad4efc2 base: Settings: add Secure.STATUS_BAR_SHOW_LYRIC to System.MOVED_TO_SECURE for compatibility [cjybyjk]
9f85f56 SystemUI: always call startLyric if notification has lyric data [cjybyjk]
05e6743 base: Add status bar lyric [1/3] [cjybyjk]
747646c base: Allow toggling floating rotation button [1/2] [Ido Ben-Hur]
e372eee base: Reduce horizontal spacing around location icon [Adithya R]
04ef862 InternetDialog: Launch mobile network settings on long press [Adithya R]
9c61e5e6 SystemUI: Fix summary of hotspot toggle dialog [lindwurm]
f3bdd32 SystemUI: Add hotspot toggle in QS internet dialog [Adithya R]
8da52a8 SystemUI: Require unlocking to use USB Tether QS tile [inthewaves]
cdc6f21 SystemUI: QSCustomizer: Fix QS tile reset text color [althafvly]
a7e6a42 UI: Follow Monet and light/dark theme in user 1 icon [Andy CrossGate Yan]
6117730 base: Add support for window ignore secure [LibXZR]
48053dac QSPanel: Fix NPE in updateViewPositions() [Pranav Vashi]
0482fd4 Fix action bar font family on material themes [Henrique Silva]
beb72db StrictStandby: Offload force stop onto lock-free context [LibXZR]
436ee3a am: Block MEDIA_MOUNTED broadcast for restricted apps [LibXZR]
5e5c1a1 base: Add support for strict standby policy [LibXZR]
3b8b678 SystemUI: Refactor colored statusbar icons [Pranav Vashi]
06c6e5c Make colored Statusbar Icons optional [1/2] [spkal01]
7e173db StatusBarIconView: use app icons instead of provided notif one [Dil3mm4]
aa4f99a NavigationBarEdgePanel: Make the gesture duration always valid [LibXZR]
c07145c RingtoneManager: Set an default ringtone for the SIM 2 [micky387]
5b464a90 base: Phone ringtone setting for Multi SIM device [1/3] [Ting Yu]
d68e8d0 EdgeBackGestureHandler: Change back gesture height intervals [Anushek Prasal]
b8f5afb base: navigation mode settings [1/2] [maxwen]
f2052246 SystemUI: Allow Configuring Navbar Radius [1/2] [spkal01]
685dff1 NotificationPanelViewController: Only set keyguard indication visibility [Ido Ben-Hur]
52aa8d2 SystemUI: Fixup edge lightning when AOD is off [Ido Ben-Hur]
c5e36d6 NotificationLightsView: Fix color mode [cjh1249131356]
1af54b3 Ambient Pulse Lights: add layout style for top n bottom [1/2] [SuperDroidBond]
7a76478 Ambient Pulse Lights: Add light width [1/2] [Michele Bono]
233da71 SystemUI: Ambient Edge Pulse style [1/2] [AnkitGourav]
7816278 NotificationLights: add reverse animation direction [Ali B]
c848800 SystemUI: Edge lighting code improvements [Anushek Prasal]
4963d40 SystemUI: Pulse edge light for all doze triggers [1/2] [Ido Ben-Hur]
b361fcd base: Fix edge lights when sensitive notification content is hidden on keyguard [Ido Ben-Hur]
d801799 base: Only allow edge lights on AOD when AOD is enabled [1/2] [Ido Ben-Hur]
02ce780 base: Ensure edge lightning is off when we are done with repeats [Ido Ben-Hur]
615a8c3 base: Allow using wallpaper color for notification pulse [Ido Ben-Hur]
b0ee5a1 base: Add animation duration & repeat count for notification pulse [Ido Ben-Hur]
5d44df3 base: Reorginize light pulse color options in one setting [Ido Ben-Hur]
044deb2 SystemUI: fix notification light pulse for repeating notifications [maxwen]
ad514be base: Support using notification color for pulse light [maxwen]
f6654c1 SystemUI: day 0 notification light pulse fixes [Marko Man]
4ee11e1 base: Add custom color to ambient pulse notification lights [Marko Man]
0b2f468 SystemUI: Add Ambient Lights always on hide aod content option [Marko Man]
50953fa base: Cleanup notification pulse values [maxwen]
beafe5a SystemUI: replace pulse light drawable with our own vector [Marko Man]
fbf6616 SystemUI: kill any leftover notification pulse on new pulse start [maxwen]
33a5669 base: Pulse light accent color option [Marko Man]
2f73257 base: Trigger pulse light only for notifications [maxwen]
18ad687 base: add Pulse and Ambient notification bars [kldoc]
207bb49 AudioService: Fix issue with linked notification volume [Pranav Vashi]
84f0fe5 base: AudioService: bail out if ringer mode is not recognized [jhonboy121]
a33aab4 SystemUI: Fix crash in cast tile for non-carrier wifi [Chris Crump]
b67d846 CastTile: Fix availability of Cast Quick Setting Tile [Indranil]
4960cda Make sensor block package list configurable [1/2] [Hikari-no-Tenshi]
6b276cf base: Add Accelerometer and Linear Acceleration sensors in blocking list [HolyAngel]
3cbdc26 Settings: make SensorBlock readable by non-system apps [Ali B]
6c591b3 FWB: Sensor block per-package switch (1/2) [LorDClockaN]
f8c9b3c SystemSensorManager: sensor block per-package [Simao Gomes Viana]
f97dbe4 Add DerpSpace CategoryKey [XlxFoXxlX]
a63d816 Privacy Indicators: Follow light/dark theme settings [minarypenguin]
0ab3bfc Avoid Settings app NPE on broken packages [t-m-w]
bef37c6 core: Fix menu popup ripple [timjosten]
ed89bc6 SystemUI: Fix QS tile view active tint [str143]
030d164 [SQUASH] SystemUI: Forward-port notification counters [1/2] [Steve Kondik]
80a20bf base: wm: Follow rounded corners by split divider corner size [ReallySnow]
93115d7 SystemUI: Fix QS header clock color [Danny Baumann]
c251b0d ThemeOverlayApplier: Apply wifi and signal icon styles last [Pranav Vashi]
8426961 ThemeOverlayApplier: Catch a potential NPE [spezi77]
79cf721 Bring back ThemeUtils for Theming [sb6596]
ebf3295 SystemUI: Allow customizing footer text [1/2] [Ido Ben-Hur]
e4cbf69 base: Allow toggling QS footer text [1/2] [Ido Ben-Hur]
726cd6e QuickSettings: Allow changing vibration duration [1/2] [Jason Edson]
420f31b Add interpolators to qs tiles animation [1/2] [Nico60]
48bce7d Add animations to quick settings tiles [1/2] [Nico60]
a4af26b QuickSettings: Add Haptic Feedback to tiles [1/2] [Evisceration]
a97e453 SystemUI: Re-evaluate system theme on QS brightness slider position change [SamarV-121]
4debf96 SystemUI: Change brightness slider position defaults [Tim Zimmermann]
7499abb BrightnessController: Don't update slider from DisplayManager callback if user is changing brightness [jhonboy121]
64bca0c Port brightness slider changes [1/2] [Alberto97]
15e21be core: Declare default display light sensor [AmeChanRain]
f321a8e [SQUASH] Revert GLES v2 implementation [NurKeinNeid]
8f9ea22 always auto-grant permissions that have "normal" protectionLevel [Dmitry Muhomor]
69f920b SystemUI: Fix reticker's notification background color [str143]
29129e7 Skip less boring notification check when reTicker mode is active [Pranav Vashi]
946fdb3 reTicker: Do not jump to app when clicked in games [cjh1249131356]
45fa045 reTicker: Cleanup [cjh1249131356]
18b8fe5 reTicker: Do not show when content/icon is null [cjh1249131356]
1ce3b28 reTicker: Allow to only show in Landscape mode [1/2] [cjh1249131356]
90734ab Properly update view for reTicker [Pranav Vashi]
7346261 Feature: reticker [1/2] [Dil3mm4]
f407fd6 Allow to hide arrow for back gesture [1/2] [Ali B]
07d5146 TwilightService: Save and use last fetched location [Ido Ben-Hur]
be69e70 TwilightService: Use temporary TwilightState when location is not available [rituj]
0d24782 SystemUI: Switch notification background to monet on heads up [DillerOFire]
eeb3a0a AutoBrightnessTile: Properly redirect longpress to adaptive brightess settings [Mocarafee]
91d7f98 SystemUI: Add Autobrightness tile [Dil3mm4]
3b62c8f SystemUI: Switch to config for Refresh Rate QS tile [cjh1249131356]
ff9d187 RefreshRateTile: Improve logic [cjh1249131356]
71ebf58 base: added refresh rate tile [jhonboy121]
69d4774 SystemUI: VPN tile: Collapse panel when opening app [George Zacharia]
0a1d3b7 SystemUI: Open volume dialog on sound tile long press [Adithya R]
40e6d6f SystemUI: Add Sound tile to Quick Settings [Yoshinori Hirano]
7f5b8dd SystemUI: Fix QS compass tile spam & instability [timjosten]
c563b0c SystemUI: CompassTile: Add a device supports compass check [PMS22]
9941bb6 SystemUI: QS: Add Compass tile [romanbb]
66cf97b SoundSearchTile: Extend the use [El Dainosor]
8521866 Add Google Sound Search tile [ezio84]
66143d4 SystemUI: Fix double unlock sound issue [timjosten]
71635d2 Fix screen flickering when using one handed mode [timjosten]
6a66fa5 SystemUI: Hide call strength icons [SagarMakhar]
6e2f82d base: Option to Display Data Disabled Indicator Icon [1/2] [varund7726]
0fedc7e Allow using 4G icon instead LTE [1/2] [Pranav Vashi]
48bc21f Fix VPN icon failed reloading after disabling [Pranav Vashi]
bd95cb5 SystemUI: Introduce dynamic VoLTE & VoWiFi icons [SagarMakhar]
0fde4d9 SystemUI: old style mobile indicator layout fixes [maxwen]
c9b4b4d SystemUI: Allow to use old style icons as default [1/2] [Anushek Prasal]
0f80aea SystemUI: improve mobile data style switch logic [jhonboy121]
c116708 SystemUI: old style mobile data indicators [1/2] [maxwen]
8aeedc9 SystemUI: allow disabling qs on secure lockscreen [1/2] [jhonboy121]
b3bdec0 Make "Require unlocking to use sensitive QS tiles" optional [1/2] [SagarMakhar]
47735c2ee base: Hide power menu on secure lockscreen [1/2] [Altaf-Mahdi]
05bd314 Avoid casting network traffic to StatusBarIconView to prevent crash [SpiritCroc]
b8f21bb NetworkTraffic: Optimize TintColor on status bar [ReallySnow]
ba04069 fw/b: Squash import NetworkTraffic [Jon Haus]
5cff22e FingerprintManager: Fix NPE due to sensorProps [alibei]
fb35ce2 Udfps: Disable Night Light on keyguard [SuperDroidBond]
a0175e4 NavigationModeController: Silence log spam [tejasvp25]
355e32f BatteryService: Add SuperDart charging support [SagarMakhar]
8ff9819e Revert "Remove bool dependency for XXX charging." [NurKeinNeid]
5879200 BatteryService: Switch Warp charging status path to an overlay [Alexander Martinz]
1f3bc0f KeyguardIndication: Fix glitchy charging info on lockscreen [Pranav Vashi]
160a295 Display Turbo charging in battery settings [1/2] [Anushek Prasal]
f08df30 base: LockscreenCharging: Bring in °F/°C toggle [1/2] [calebcabob]
8b6785f Display actual charge tech in battery settings [1/2] [Anushek Prasal]
26c505e BatteryService: Add support for oem fast charger detection [Alexander Martinz]
3630ca6 Remove bool dependency for XXX charging. [BoredOutOfMyGit]
8a29e2f BatteryService: add Turbo power charging support [jhenrique09]
6f14ac6 BatteryService: Add VOOC charging support [karthick111]
5dbaa30 BatteryService: Add Warp charging support [Anushek Prasal]
9274ac7 Lockscreen charging info: show decimal in battery temperature [Lucchetto]
d4ab894 base: SysUI: update battery charging info [Ali B]
bf67c36 BatteryService: add dash charging support [thecrazyskull]
e3865f8 base: Lockscreen Charging info (3/3) [xyyx]
6d11146 SystemUI: Enable statusbar burn-in protection by default [Adithya R]
f852e8b SystemUI: BurnInProtectionController: offset less aggressively [jhonboy121]
d6dc1bd [SQUASH] SystemUI: Implement burn-in protection for status/navbar [Park Ju Hyung]
407ed61 base: add API for disabling gestural navigation [ezio84]
681d56a base: Add DND & Rate settings to flash on call [1/3] [Ido Ben-Hur]
497df4b base: Allow to flash on call only when entirely silent [1/3] [Ido Ben-Hur]
17bb01f Add Flashlight blink on incoming calls [1/3] [PMS22]
a8d357a KernelCpuUidActiveTimeReader: Do not spam log with negative active time [cjh1249131356]
eebc987 fwb: [1/2] Implement cutout force full screen [jhenrique09]
2cb131b VolumePanel: Pass touch outside of volume panel [Akash]
f84e130 Volume panel: avoid multiple animations on touch spam [Giuseppe Maggio]
d946c4e SystemUI: Introduce Adaptive Playback [1/2] [Jyotiraditya]
6a06fbd ActivityThread: Remove Failed to find provider info logspam [Immanuel Raj]
63bf16f Reduce NotificationHistoryDatabase logspam [SpiritCroc]
4342b38 PowerUI: Mute logcat spam. [spezi77]
182d274 base: Set ic_avatar_user and ic_avatar_guest_user to follow system accent [elpaablo]
7934eeb GpsNetInitiatedHandler: Disable more debugging [Chet Kener]
d9467ec ListView: Disable dividers by default [Pranav Vashi]
28404e6 AOD: Sleep when proximity is covered for 3 secs [PMS22]
525bebb base: TtsEngines: fix yet another NPE [jhonboy121]
cb7825d TtsEngines: avoid crashes caused by null engine name [Oliver Scott]
b589865 telephony: show ICCID by default for all [Omkar Chandorkar]
b7e44e0 Screenrecord: add blinking stop dot and low quality options [ezio84]
84f9cb2 ScreenshotController: avoid crash when bg executor is shutdown [Simão Gomes Viana]
958f6c9 Fix black screen issue due to wallpaper decoding exceptions [Weijie Wang]
8683449 ParcelFileDescriptor: Stop the panic [Simao Gomes Viana]
cee1211 Fix NPE when AOSP ambient display preference is removed [Alex Cruz]
20a5da3 SQLite: Do integrity_check only once [yi.jang]
3e350d1 SQLiteDatabase: Catch corrupt exception during transaction [muzbit.kim]
a421033 DefaultPermissionGrantPolicy: Silence harmless errors [Pranav Vashi]
69c7c3a DefaultPermissionGrant: Fix google search crash [Pranav Vashi]
9097eb2 QS: LocationTile: make it cycle modes [ezio84]
aec16f96 SystemUI: Enable smart replies for apps that target APIs lower than 28 [Diab Neiroukh]
af72069 EnhancedEstimates: Get estimates from Device Health Services [Jason Edson]
7d83a00 CarrierConfigManager: Enable payphone call blocking option [Jason Edson]
b023b9f AutofillManager: Turn off logging by default [Jason Edson]
38b2d55 PackageInstaller: Remove side padding from the dialog [Anushek Prasal]
f4c8d90 PackageInstaller: show current/new version on sideload [ezio84]
4bacaa5 Add product board in the log [Dil3mm4]
b670d11 More infos uploaded to Memochō [Dil3mm4]
e77c519 core: Switch to ``Memochō``. [Jyotiraditya Panda]
776722f Add button to AppErrorDialog to upload crash information to dogbin [Till Kottmann]
dd40b7c SystemUI: Display a toast when a screenshot is deleted [Alex Cruz]
6017074 AutoFillUI: Don't show a "null" toast [Ido Ben-Hur]
f9e8ed9 Fixup legacy toast icon visibility [SagarMakhar]
05da712 Toast icon switch [1/2] [LorDClockaN]
6d849bc Match legacy toast view with SystemUI [SagarMakhar]
7b9f526 SysUIToast: Remove restrictions on toast app icon [SagarMakhar]
652144a Show icon of package associated with Toast [d34d]
534180a Add kill button to notification guts [1/2] [Daniel Koman]
9eebc0e Less boring heads up option [1/2] [ezio84]
f0a4ae7 [SQUASH] base: Allow scheduling always on display [1/2] [Ido Ben-Hur]
bd9f621 Add deep sleep info to uptime preference [maxwen]
31063f3 NavigationModeController: Mute debug logging. [spezi77]
ff6715c Conditionally disable uncrypt for ota [Henrique Silva]
8afaee0 Allow to suppress notifications sound/vibration if screen is ON [1/2] [ezio84]
90a6d0d SystemUI: allow to limit the max framerate of built-in screen recorder [Kuba Wojciechowski]
fe78f0f core: Add config to control handling of audio direction changes. [Quallenauge]
4ab6222 SystemUI: Fix QS mobile icon disappearing on theme switch [Adithya R]
cafdf50 SystemUI: Re-evaluate system theme on UI mode change [althafvly]
f6a1c68 SystemUI: Follow light/dark theme in power menu [Danny Lin]
f788f5a SystemUI: Calculate paged QS tiles height properly [Adithya R]
2ffbac7 SystemUI: Fix QS clock overlapping on UI mode change [Adithya R]
7926b3d SystemUI: Add dual-tone light and dark themes for QS [Danny Lin]
40a3df3 SystemUI: Initialize QS tiles in inactive state [Danny Lin]
13b3b47 SystemUI: Follow light/dark theme in quick settings [Danny Lin]
118621e Revert "Do not re-inflate QS and SB when CONFIG_UI_MODE" [Danny Lin]
c7ab0efe SystemUI: Make QS panel change on UI mode changes [Danny Lin]
320735d BootAnimation: Check for resolution override [Aaron Kling]
150d1fb [SQUASH] base: Add option to cycle through ringer modes [1/2] [rituj]
743e1ce SystemUI: add missing initial call to updateResources in brightness mirror [maxwen]
4ee4ffa SystemUI: disable keyguard screen off animation if we use split notification shade [maxwen]
1d9530e SystemUI: screenshot: Always show screenshot dismiss button [NurKeinNeid]
7fab6fd SystemUI: Require unlocking to use Reboot tile [NurKeinNeid]
2701350 Add bootloader option to 'Reboot' tile [Alex]
2d004e6 SystemUI: Extend reboot tile to add power off [Pranav Vashi]
68ba99c SystemUI: Add Reboot/Recovery QS Tile [fusionjack]
25c2da5 SystemUI: Require unlocking to use Internet quick tile [flawedworld]
0bdaba3 SystemUI: Add roaming indicator to statusbar tuner [Adithya R]
eaf3583 DataSwitchTile: Show active mobile carrier in secodary label [Christian Oder]
7bd9d05 DataSwitchTile: Show active SIM in secondary Label [Christian Oder]
b0b3e62 [SQUASH] base: SystemUI: Introduce DataSwitchTile [Christian Oder]
f2254d8 derpUtils: Use Display.getCutout() to check if we have a center notch [LuK1337]
8d26497 derpUtils: Add new cutouttype method [Ali B]
04a6a8b derpUtils: Update notch check logic [Anushek Prasal]
65ad1fb derpUtils: Method to detect a notch'd device [Alex Cruz]
56252cf derpUtils: Adapt WiFi only check to A12 [AshutoshSundresh]
482f681 Add more Utils helpers [Alex Cruz]
96a419e derpUtils: Add method to turn off the screen [ezio84]
90da7e5 SystemUI: Update additional navbar dimens for Android 13 [NurKeinNeid]
074f060 SystemUI: allow changing the length of gesture navbar[1/2] [jhonboy121]
832cce9 services: Whitelist Nfc Service from clipboard toasts [AshutoshSundresh]
b2e8416 SystemUI: Add NFC tile to default [Adithya R]
d77a106 SystemUI: Introduce user interface for Alert Sliders [Chris Crump]
9cae350 fixup - PixelPropsUtils: Spoof user build [jhenrique09]
9cf072e PixelPropsUtils: Spoof user build [jhenrique09]
aaa6b3d PixelPropsUtils: Simplify GoogleCamera whitelisting [jhenrique09]
112167d PixelPropsUtils: Spoof Pixel 7 Pro to some Google apps [Adithya R]
70a30f7 PixelPropsUtils: Don't spoof Google One [LynnrinChan]
fdb8750 PixelPropsUtils: Change Samsung whitelist to be more inclusive [jhenrique09]
be282da PixelPropsUtils: Update for March release [jhenrique09]
2c88edb PixelPropsUtils: Don't declare propsToChange as static [jhenrique09]
aaaf0af PixelPropsUtils: Update fingerprint from February update [jhenrique09]
de1910a PixelPropsUtils: Make CTS/Play Integrity pass again [Dyneteve]
4fe47cd PixelPropsUtils: Set shipping level to 32 for devices >=33 [Anirudh Gupta]
401a304 Intent: Fix launch of permision revoke activity from playstore [jhenrique09]
87044a2 PixelPropsUtils: Update fingerprint from January [jhenrique09]
79f00e5 PixelPropsUtils: Use redfin props for extra packages [jhenrique09]
8b42db6 PixelPropsUtils: spoof nothing smartcenter to pixel [aswin7469]
77d9923 PixelPropsUtils: Update from december [jhenrique09]
1a34631 PixelPropsUtils: Press F for flame and coral [jhenrique09]
72eb0f3 PixelPropsUtils: Update for november security patch [jhenrique09]
a25c4a8 PixelPropsUtils: Get package name from context instead of app [jhenrique09]
85e7ba5 PixelPropsUtils: Correct spoof props for Samsung apps [jhenrique09]
c23d7cd PixelPropsUtils: Spoof Gboard with PixelXL [Pranav Vashi]
ff12f60 PixelPropsUtils: Don't spoof euicc [EnesSastim]
5ec2ad0 PixelPropsUtils: Apply key attestation workaround to Play Store as well [Dyneteve]
43e0804 PixelPropsUtils: Switch from raven fp to cheetah [Joey Huab]
c5ccee5 PixelPropsUtils: Spoof Nexus 6P for GMS unstable process [Alexander Winkowski]
9dec13a PixelPropsUtils: Limit SafetyNet workarounds to unstable GMS process [Danny Lin]
b213adc PixelPropsUtils: Exclude recorder from pixel props [Pranav Vashi]
e1f15ca PixelPropsUtils: Remove spoofing for currently supported Pixel devices [Anay Wadhera]
0d4a02e PixelPropsUtils: Only spoof GMS to Raven [Omkar Chandorkar]
230da89 PixelPropsUtils: Whitelist YouTube apps [Pranav Vashi]
823b87d PixelPropsUtils: Whitelist ARCore [Joey Huab]
bfaaf82 PixelPropsUtils: Bail out early when required [Pranav Vashi]
377aa99 PixelPropsUtils: Extend list of packages to keep [Pranav Vashi]
5ccf795 PixelPropsUtils: Consolidate google app checks [Pranav Vashi]
74fd11b PixelPropsUtils: Do not change props for play store [Pranav Vashi]
b60dfcb keystore: Block key attestation for SafetyNet [Danny Lin]
27ca269 Import PixelPropsUtils [jhenrique09]
2366428 [SQUASHED] core: Blacklist pixel system feature from Google Photos [Kuba Wojciechowski]
ef92c58 SystemUI: Require unlocking to use sensitive QS tiles [Danny Lin]
986d899 SystemUI: Implement lockscreen quick unlock [1/2] [Matt Mower]
7b79d0f SettingsLib: Use framework resource for headline font [Adithya R]
6208100 BatteryStatsImpl: Reset stats only above 95% [Adithya R]
5b6e5e0 KeyguardZenAlarmViewController: replace deprecated referential equality check with structural equality check [jhonboy121]
5d9afd8 base: Add some static custom utilities [ezio84]
68b1acb base: Add isPackageInstalled boolean [Roman Birg]
098b91d sounds: Use screenshot sound from Samsung S21 Ultra [Rizky Benggolo]
0a86feb sounds: Implement new screenshot sound effect [minaripenguin]
01eb1a2 data: Rename GoogleAudio to CustomAudio [AshutoshSundresh]
6075262 data: Import keyboard sounds from osu! [AshutoshSundresh]
ba3b4eb data: Add UI tap sound from ACE AS0618 [AshutoshSundresh]
4763d1a data: Import some UI sounds from Samsung S21 FE [AshutoshSundresh]
1f36fe3 Build Google audio files from android12 [2/2] [BeansTown106]
6154d8b SystemUI: Remove user setup check for alarm icon [cjh1249131356]
dc722f0 SystemUI: Remove alarm from statusbar icon blocklist [Adithya R]
228d643 SystemUI: Add colors to assistant animation [paphonb]
99cfa0c SystemUI: Add delete action to screen recorder notification [Sourajit Karmakar]
de13997 Screenshot: Remove scroll chip button text [NurKeinNeid]
2fede17 ScreenRecord: Save recordings in ScreenRecords [El Dainosor]
01a015a Screenshot: Add delete action chip intent [ganeshi4u]
f4a7506 DozeSensors: only use proximity sensor if supported [Demon000]
34e94a7 bootanimation: Always use normal bootanimation [jhenrique09]
1ef8f48 SettingsProvider: Set device name to marketname if available [Adithya R]
552f691 graphics: Override system fonts with user-selected overlays [Danny Lin]
d8b207e base: styles: Use user fonts for Material UI themes [Danny Lin]
83150fc Fonts: Add regular / light font config [Pranav Vashi]
5eacd14 base: Use font configs instead hardcoded fonts [Pranav Vashi]
b83dceb Wire up default fonts with font engine [Pranav Vashi]
bb8a8a3 base: Export bodyFontFamily and bodyFontFamilyMedium symbols [Pranav Vashi]
37a4568 fwb: core: make LiveDisplay optional [Ali B]
c5a4bdf base: Disable LiveDisplay low power consumption by default [Anushek Prasal]
3f03b78 core: Disable LiveDisplay display mode by default [Adarsh Grewal]
8cda9c4 SettingsLib: Update 4G+ icon to Silk design as well [TH779]
1997fdd SettingsLib: Update LTE+ icon as per new Silk design [Adithya]
bd3f6b3 SystemUI: Fix tuner pref for bluetooth [Pranav Vashi]
1416bae SystemUI: Add missing init for isDeviceProvisioned in PhoneStatusBarPolicy [maxwen]
e3023b8 SystemUI: Add ability to toggle bluetooth battery level [1/2] [Pranav Vashi]
a683d667 SystemUI: Add switch data saver icon [xyyx]
a251066 SystemUI: Add VPN to the icon blacklist in tuner [maxwen]
4a22ef9 SystemUI: Update NFC tile drawable [mydongistiny]
0495f6b SystemUI: Add statusbar NFC icon [xyyx]
c370605 SystemUI: set heap tracking default also with a property like all the other flags [maxwen]
d9a42ac SystemUI: Let screenshot window ignore screen decorations [LuK1337]
d18980d SystemUI: Blurs: allow blur even when GFX acceleration is disabled [Pulkit077]
a98cb6b SystemUI: Catch NPE with android.view.ViewPropertyAnimator [roynatech2544]
fe3195a SystemUI: smartspace: Adapt to 13-QPR2 [Ido Ben-Hur]
45fe6e9 SystemUI: Support smartspace animation for pixel launcher [Adithya R]
d94f381 SystemUI: Set launcher activity name [Adithya R]
24958a3 SystemUI: Open google weather on tapping smartspace [Adithya R]
f73cdad SystemUI: Update smartspace to 13-QPR1 [Adithya R]
a118e2c SystemUI: BcSmartspaceView: Allow setting current page [Adithya R]
2bfb562 Smartspace: Fix music indication not showing on doze/aod [jhenrique09]
0d9d60b SystemUI: Forward-port smartspace to Android 13 [Adithya R]
bf5e311a SystemUI: Grant INTERACT_ACROSS_USERS_FULL permission for smartspace [cjh1249131356]
743a52d SystemUI: Grant additional permissions for smartspace [Andrzej Perczak]
5fab737 SystemUI: Implement Reverse-engineered Smartspace [Daniel Jacob Chittoor]
d2f5f6f overlays: IconPack: Rename config_signalXPath [Adithya R]
1686ca6 base: overlays: Add Xperia overlays [AndroBuddy]
150217a overlays: Introduce Outline iconpack [Niklas Schnettler]
0d46c26 acherus: Add settings overlay [Genkzsz11]
43a134e acherus: Wrap a few icons with inset [Pranav]
0d74196 overlays: Add acherus icon pack [Pranav]
954b488 PUI overlay: Do not theme seekbars [StarkDroid]
299272d overlays: Introduce PUI iconpack [spkal01]
2c4e9b8 overlays: oos: Import stock oos settings icons [RedSkulHYDRA]
63e6f87 overlays: declare the right overlay category [jhonboy121]
0dfa154 overlays: oos: Add dummy icons to fix preview [Pranav Vashi]
3ef34db overlays: oos: Adjust width and height for dnd and vibrate icons [jhonboy121]
d0cace0 overlays: oos: Add statusbar bluetooth icons [imjyotiraditya]
71a19030 overlays: oos: Fix edit icon color in Settings [AshutoshSundresh]
e805e3a overlays: Add an OxygenOS icon pack [AshutoshSundresh]
7f47204 overlays: fixup themepicker package name for IconPacks [Omkar Chandorkar]
aae8495 overlays: fixup launcher package name for P20 icons [Omkar Chandorkar]
97df270 IconPackKaiAndroidOverlay: fix for carriers using 5 bars of signal [Anay Wadhera]
986db46 IconPackRounded: Use correct icon for notification and ring volume [Arian]
0364f3e overlays: Add unlinked ringtone and notification volume icons [Adnan Begovic]
160bdca IconPack{Kai,Victor}: Fix clock icon [DarkJoker360]
cf0c621 IconPack{Sam,Victor}: Inverse vol collapse/expand anim path data [Dhina17]
96d7dd4 SystemUI: Fix size of icon of vibrate ringer mode for additional icon packs [Volodymyr Zhdanov]
2a87fd4 overlays: Unify icon packs category name [Adithya R]
b20d97a overlays: bring back icon packs [jhonboy121]
5dc9987 base: Allow to skip confirmation in biometric auth dialog [1/2] [cjh1249131356]
7b8b55a SystemUI: Face Unlock animation [Dil3mm4]
c975a19 SystemUI: use simple check for isFaceDisabled [Ali B]
80873f8 Hide face recognizing message on bouncer when authenticated [jhenrique09]
a1263f2 face: Pass requestId on our authentication client [jhenrique09]
19207ba SystemUI: Tell user when face unlock detection is running [jhenrique09]
010c88e Reset face auth on occluding app when authenticated [jhenrique09]
1db4db8 WalletActivity: Don't explicity request face auth [jhenrique09]
ba95f98 [1/2] Allow changing face unlock method when locked [jhenrique09]
359d508 base: do not use new lockscreen layout for bypass [Ethan Halsall]
224e7a7 KeyguardBouncer: Don't delay showing if face auth running [jhenrique09]
a0b71bc FaceService: Allow our face unlock to be used on third-party apps [jhenrique09]
e15ae6d SystemUI: Improve pt-br translation for fingerprint_dialog_use_fingerprint_instead [jhenrique09]
6915884 Add idle lockout message for FaceUnlock [jhenrique09]
a5e4717 services: Merge T changes on our custom face unlock impl [jhenrique09]
3038900 Initial import of Face Unlock for S [jhenrique09]
e566187 BiometricScheduler: Cancel operation if not idle [SagarMakhar]
9ce2382 SystemUI: Add API for runtime taskbar config [Danny Lin]
360c0ed SystemUI: make QS footer rounded [awakened]
168d915 Add a panic trigger to Global actions [Chirayu Desai]
ccb3ece Use profile's power button/timeout lock settings [t-m-w]
8cfd68a Fix unlocking of multiple work profiles at boot (#13). [t-m-w]
8c9ef2a Fix Open With dialog within a work profile. Also, attempt to prioritize showing the first-found work profile when chooser appears in personal profile (hack, don't think it works). [t-m-w]
927b7ca Add additional work profile badge colors and labels for a total of 16. Update user/profile type specification to use them and to allow a maximum 16 profiles per parent (supposedly, but that does not seem to work on its own). [t-m-w]
dc0b815 Always allow overriding the number of work profiles [Pierre-Hugues Husson]
e1b0647 services: Suppress double upgrade notification for parallel space [Pranav Vashi]
14d1383 services: Fix parallel space crash with third party launcher [Pranav Vashi]
5dfba38 ActivityStarter: Resolve launcher intent to parallel owner user [LibXZR]
7d5f91a ParallelSpaceManagerService: Do not install setupwizard too [LibXZR]
c5a4234 SystemUI: Fix privacy indicator not showing for apps in parallel spaces [LibXZR]
0738ff0 services: location: Whitelist parallel space users [LibXZR]
aeb01d9 services: camera: Whitelist parallel space users [LibXZR]
390ee5c base: Add support for managing files across parallel spaces [LibXZR]
7dba9c8 base: Expose parallel space owner to api [LibXZR]
a61d6d5 base: Add support for parallel space [LibXZR]
ad335d0 base: Add system app whitelist for applock [Alfred Mathew]
6fbf2e0 [SQUASH] base: introduce app lock [1/4] [jhonboy121]
b67a7e9 fw/b: Import Wi-Fi standard icon [1/2] [ReallySnow]
8df3711 UpdateEngine: Add perf mode binder interface [Luca Stefani]
e432c1c SystemUI: Add support for GameSpace [Nauval Rizky]
d11d2c1 SystemUI: Export RecordingService for External Usage [cjybyjk]
1179db7 base: Add three-fingers-swipe to screenshot [1/2] [ghbhaha]
387b430 base: Allow toggling screen off FOD [1/2] [jhonboy121]
dec74b0 DisplayModeDirector: Make sure we apply refresh rate on startup [Ido Ben-Hur]
8c9b085 display: Don't spam log when display state changes [Adithya R]
6954f8a DisplayModeDirector: Default min refresh rate to 60 Hz [Adithya R]
e9149d4 base: Allow setting preferred refresh rate [1/2] [Adithya R]
ced1446e base: Allow disabling refresh rate lowering in battery saver [Adithya R]
3cd7f00 [SQUASH] pocket: Introduce pocket judge [Carlo Savignano]
882f0f4 base: Lower protection level of lineageos permissions [Erfan Abdi]
7da948b AlertWindowNotification: Correctly load app label [HZ]
b14a99d IllustrationPreference: Hide illustration when we fail to play anim [LuK1337]
d2cdf74 Screenshot: Unregister task listener on destroy [OnlyTomInSecond]
22127c0c toast: fix bg color not changing with theme change [SuperDroidBond]
dc974ed Fallback ESC to BACK [Aaron Kling]
b7cfb80 base: Introduce LiveDisplay from Lineage [Erfan Abdi]
a3814a34 SettingsProvider: Setup default resources [Erfan Abdi]
9526910 fwb: Redesign seekbar [SagarMakhar]
829963a SystemUI: Update string for add tiles with one click [mydongistiny]
ee303a0 SystemUI: Allow user to add/remove QS with one click [Andrzej Ressel]
df980a7 base: core: Add ATV arrays [Mohammad Hasan Keramat J]
3a76262 TouchGestures: Add keyhandler overlays [jhenrique09]
4f9a414 LineageHardwareManager: Introduce keys swap feature support [Arian]
a9cdea6 derp: preference: Import SettingsHelper [Erfan Abdi]
6cb77de Add support for runtime toggle of navbar [Bruno Martins]
baae007 Implement edge long swipe gesture [Nico]
b69c3b4 util: Import PackageManagerUtils from sdk [Erfan Abdi]
427edb1 Camera button support [HazouPH]
7690bf4 PhoneWindowManager: Add support for back key long press customization [LuK1337]
26d3c7b fw/b: Allow customisation of navbar app switch long press action [Sam Mortimer]
80400d7 PhoneWindowManager: Implement press home to answer call [Oleksandr Byelkin]
7cb184f PhoneWindowManager: Tap volume buttons to answer call [martincz]
bfb7e2d core: Kill app: Actually kill app [Michael W]
b39381a Import ActionUtils from lineage sdk [Erfan Abdi]
49765f1 VolumeKeyHandler: Adapt for 12 [Erfan Abdi]
3a51b13 VolumeKeyHandler: Add support for skipping tracks with remote control [ezio84]
06d1bf7 PhoneWindowManager: add VolumeKeyHandler [Simon Shields]
c2ee79a Reimplement device hardware wake keys support [LuK1337]
7394313 Reimplement hardware keys custom rebinding [Phil Tunstall]
5de09bf fwb: Re-introduce keyboard backlight brightness control [Bruno Martins]
d3d15a7 PowerManager: Allow to distinguish different keypresses [Corinna Vinschen]
774428a PowerManagerService: Allow to light up buttons only when pressed [Anas Karbila]
a23f668 fw/b: Button backlight brightness [Ricardo Cerqueira]
0bb0e95 PackageManagerService: Protect forced enabled components at runtime [jhenrique09]
ba54045 PackageManager: allow build-time disabling of components [Pawit Pornkitprasan]
96e83a5 SystemUI: Disable clock auto hide feature for QS [LuK1337]
f76cf46 SystemUI: Add support for clock auto-hiding [Cédric Bellegarde]
bc14e9d VolumeDialogImpl: Fix cuttered layout when on setup or lock task mode [jhenrique09]
ecd1f23 VolumePanel: Add long click for expand icon [ProchyGaming]
197c586 base: make per-app work with multi audio focus [El Dainosor]
56053eb base: support per-app volume [2/3] [cjybyjk]
5566e1b SystemUI: Show notification row when it's unlinked to ringer volume [Mesquita]
102b563 SystemUI: VolumeDialogImpl: Change bg tint for inactive rows [Arian]
9aaf511 SystemUI: VolumeDialogImpl: Fix inactive rows tint [strwbrry143]
a0f9cb2 SystemUI: VolumeDialogImpl: notifyVisible after the volume panel is fully hidden [Jesse Chan]
ec7c868 SystemUI: Make the volume dialog expandable [Arian]
1726610 SystemUI: runtime configurable audio panel location [a.derendyaev]
41847a2 VolumeDialogImpl: Don't hide the default stream when adjusting the music stream [Arian]
d339f86 VolumeDialogImpl: Respect multiple visible rows in landscape [Arian]
23ef800 VolumeDialogImpl: Don't vibrate when volume dialog is not visible [LuK1337]
38b832c VolumeDialog: Display default row when active row is notification [Jesse Chan]
9388317 Forward port 'Swap volume buttons' (1/3) [nadlabak]
03a5687 SystemUI: Bring back good ol' circle battery style [Luca Stefani]
a820742 BatteryMeterView: Allow disabling QS battery estimates [1/2] [Ido Ben-Hur]
51b73ec ClockController: Apply clock position initially [Ido Ben-Hur]
a1e07cd fixup! SystemUI: Add tunables for clock position [Ido Ben-Hur]
0d7b225 SystemUI: Only apply tuning changes when the fragment is attached [LibXZR]
8d7787f SystemUI: Make center clock follow paddingTop [cjh1249131356]
1650476 SystemUI: Add tunables for clock AM/PM style [Michael Bestas]
a6dbd12 SystemUI: Add tunables for clock position [Luca Stefani]
9c5e03c SystemUI: doze: add config for long press sensors that need a proximity check [Cosmin Tanislav]
af899e1 SystemUI: doze: add config for double tap sensors that need a proximity check [Cosmin Tanislav]
9fd0425 Partially revert "Assume sensors perform prox check" [Cosmin Tanislav]
a9f34e9 frameworks/base: Lights notifications brightness support [Adrian DC]
4e74909 frameworks/base: Battery and Notification Lights [Sam Mortimer]
bc930a9 Import LineageNotification from lineage sdk [Erfan Abdi]
0fcd498 SystemUI: add left and right virtual buttons while typing [Roman Birg]
9635428 Implement click to take partial screenshot [1/3] [Jesse Chan]
97b9b98 PackageManager: Allow device to specify vendor platform signatures [Ethan Chen]
8719835 Biometrics: Allow disabling of fingerprint cleanups [Quallenauge]
0dd0b70 SystemUI: Remove spaces from screenshot app filename [Adithya R]
d018f33 SystemUI: Screenshot: Avoid NPE while getting app label [Adithya R]
94c9338 SystemUI: screenshot: open the screenshot instead of edit [Timi Rautamäki]
b2265b7 Screenshot: Append app name to filename [ezio84]
1589818 SystemUI: screenshot: add delay for long-press partial screenshot [Pranav Vashi]
221eb9d SystemUI: screenshot: close QS after launching long screenshot activity [LuK1337]
75345ee SystemUI: screenshot: disable magnification for partial screenshots [Cosmin Tanislav]
e755884 SystemUI: screenshot: add extra crop boundaries [Cosmin Tanislav]
1d7f753 SystemUI: screenshot: remove duplicate clamping on move action [Cosmin Tanislav]
8af9632 SystemUI: screenshot: remove misplaced call to set crop view padding [Cosmin Tanislav]
547906d SystemUI: screenshot: open long screenshot activity for partial screenshots [Cosmin Tanislav]
3919783 fwb: Restore mMainHandler in CentralSurfacesImpl [Christian Oder]
ec26d01 fixup! SystemUI: Allow to enable Lockscreen Media Art [Michael Bestas]
a04edf73 SystemUI: Use 0-100% values for Media art blur [1/2] [Anushek Prasal]
2d516f4 MediaArtworkProcessor: Use less blur, zoom & alpha on keyguard [Ido Ben-Hur]
a243a0a Lockscreen no blur option: fix SysUI FC [ezio84]
b72ac61 Lockscreen art blur: smaller seekbar range and allow no blur [1/2] [ezio84]
cb6c54a Losckreen blur level: code fixes [ezio84]
97f0b14 base: configure lock screen media artwork blur level [1/2] [Marko Man]
b3a4442 SystemUI: Allow to enable Lockscreen Media Art [beanstown106]
3f8c9f3 frameworks: Exempt location packages from location indicators [Chirayu Desai]
feb13474 SystemUI: Fix the unlock sound played repeatedly [Shufeng Hou]
94cf10f AutoBrightness: Add support for one shot auto-brightness [Cédric Bellegarde]
94559ce Introduce high touch polling rate feature control [Ramii Ahmed]
ee605c2 Keyguard: Add option to scramble pin layout when unlocking (2/2). [Adnan]
7515ecb SystemUI: handle camera launch gesture from keyhandler [Roman Birg]
ddacbb1c3 fixup! Power menu styles: Initial checkin for T [1/2]^2 [nift4]
147ae71 fixup! Power menu styles: Initial checkin for T [1/2] [nift4]
b68248c Power menu styles: Initial checkin for T [1/2] [nift4]
70adbfe Revert "Controls in QS" [nift4]
7c9332f Revert "Remove "Device Controls" from Settings" [nift4]
89faba9 SystemUI: Don't store pending ControlAction if the device is locked [LuK1337]
9d6c4f3 frameworks: Add device controls shortcut to power menu [LuK1337]
4805945 frameworks: Import Lineage GlobalActions service [Erfan Abdi]
1e6b173 frameworks: Add more power menu customizations [Gegham Zakaryan]
10d34dc frameworks: Add support for advanced restart options [Michael Bestas]
ef75c1c Don't pass repeated back key events to app if custom action is set up [LuK1337]
84ac533 fw/b torch: add haptic feedback [alk3pInjection]
dfbcff4 PhoneWindowManager: Allow torch and track skip during ambient display [ezio84]
438cabe Long-press power while display is off for torch [beanstown106]
06c9e74 base: Add Touch HIDL support [Anushek Prasal]
5bde657 Import LineageActivityManager from lineage sdk [Erfan Abdi]
b4293f7 Add an option to force pre-O apps to use full screen aspect ratio [Jesse Chan]
c6bf693 Support enforcing a minimum delay between notification sounds of an app. [Danny Baumann]
cd92821 PowerManagerService: Wake on plug (1/2) [Jon Evans]
19fadd4 PowerManager: Add proximity check on wake [1/2] [Bruno Martins]
dd69913 Add high touch sensitivity and hovering to InputService [Danesh M]
4c94765 Remove Safety Center tile from default tiles [Michael Bestas]
4a84c7d SystemUI: Add double tap to sleep gesture [Rashed Abdel-Tawab]
c877fd8 SystemUI: use DOUBLE_TAP_TO_WAKE setting also for wake from aod [maxwen]
b82e1c8 SystemUI: Hide notifications when quickly expanding QS [Adithya R]
4852e6f SystemUI: Add QS pull down with one finger [1/2] [Roman Birg]
b8c581e8 SystemUI: Add VPNTethering tile [Mohammad Hasan Keramat J]
958cf57 SystemUI: Add VPN tile [Danny Baumann]
628c49c SystemUI: Enable NFC tile [Tim Schumacher]