-
Notifications
You must be signed in to change notification settings - Fork 4
/
changelog_miatoll.txt
1485 lines (1456 loc) · 104 KB
/
changelog_miatoll.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
====================
08-07-2022
====================
* build/make
3164b68 Bump Security String to 2022-08-05 [Kevin F. Haggerty]
* frameworks/av
7be59f0 Avoid read out of bounds [Santiago Seifert]
* frameworks/base
118b532 use SharedPreferences to save verify results [Bin Wang]
cea3680 SystemUIDerpFest: Import Turbo based battery estimates [Sourajit Karmakar]
a9fbdea Only allow the system server to connect to sync adapters [Makoto Onuki]
6a86a0c Stop using invalid URL to prevent unexpected crash [Chiachang Wang]
2f7dbb0 Remove package title from notification access confirmation intent [Raphael Kim]
5ea69b1 Make CheckOp return allowed if any attr tag for a package is excluded [Evan Severson]
e50d4a8 Allow system server uid to bypass location restriction [Evan Severson]
ff14722 Disallow privileged apps to bypass location restriction [Evan Severson]
2ec1d5b DO NOT MERGE. Add a permissions check to LocationManagerService. [Brian Julian]
4d78072 Clear mInterface before calling resetIkeState() [lucaslin]
37d8649 Make sure callingPackage belongs to callingUid when checking BG-FGS restrictions. [Hui Yu]
938a0b0 DO NOT MERGE Suppress notifications when device enter lockdown [Wenhao Wang]
5a7fe5b SystemUI: VolumeDialogImpl: Fix inactive rows tint [strwbrry143]
137fb1e core: Add dark mode support for `colorAccentPrimary` [strwbrry143]
56b4910 SystemUI: VolumeDialogImpl: Change bg tint for inactive rows [Arian]
2f8bfa5 VolumeDialogImpl: disable dialog animation [Lucchetto]
b6bf8c1 SettingsLib: Fix user profile photo picker crash [timjosten]
cc67494 base: Import Wi-Fi standard icon [1/2] [ReallySnow]
8c2d457 LayoutInflater: remove less frequently used apps [Simao Gomes Viana]
28c410c tools: -O3 everywhere [Simao Gomes Viana]
b58c5cc cmds: bootanimation: -O3 [Simao Gomes Viana]
6999850 Make 'No Notifications' small [Simao Gomes Viana]
8b06b11 SystemUI: Fix QS expand lag when VoLTE/VoWiFi icons are enabled [timjosten]
efd5979 SystemUI: Unregister observer in MobileSignalController [cjh1249131356]
7835b2c SystemUI: Remove user setup check for alarm icon [cjh1249131356]
052df42 base: Always trigger fullscreen type screenshot for three-fingers-swipe gesture [cjh1249131356]
c720c5b KernelCpuUidActiveTimeReader: Do not spam log with negative active time [cjh1249131356]
5ee173f SystemUI: Grant INTERACT_ACROSS_USERS_FULL permission for smartspace [cjh1249131356]
77ddad6 Revert "Remove fixed grant of READ_PHONE_STATE and cleanup" [micky387]
99b00b0 [REPICK] SettingsProvider: Handle WRITE_DEVICE_CONFIG permission denial for gms [cjh1249131356]
8d742a1 base: Force fullscreen for Google Dialer [cjh1249131356]
6d036f8 Fix inaccuracy in biometric timeout [jiangkun5]
a1b0dbee SystemUI: Add Settings to location indicator excludelist [Kujou Yuko]
9aeca69 PixelPropsUtils: Use Pixel 5a model to GMS for ALL devices [Albert I]
182c225 PixelPropsUtils: Press F for bonito and sargo [jhenrique09]
c69d841 PixelPropsUtils: Use Pixel 5a codename to GMS on Pixels [Dyneteve]
aa34165 PixelPropsUtils: Bypass hw attestation on newer pixel devices [jhenrique09]
e3bab61 reTicker: Do not jump to app when clicked in games [cjh1249131356]
3dfefdf fixup! reTicker: Cleanup [cjh1249131356]
9b35325 reTicker: Cleanup [cjh1249131356]
39cd51a reTicker: Do not show when content/icon is null [cjh1249131356]
dce18bb reTicker: Allow to only show in Landscape mode [1/2] [cjh1249131356]
63b8982 Properly update view for reTicker [Pranav Vashi]
b959b31 SystemUI: reTicker [1/2] [Dil3mm4]
57873f1 [SQUASH] Drop reTicker [NurKeinNeid]
295b3f5 SystemUI: media_view: align song and artist name text [jhonboy121]
917d5fd SystemUI: set white color for media actions button background [jhonboy121]
6856070 SystemUI: Allow limitting AOD & ambient display refresh rate [Ido Ben-Hur]
7c8d285 Keyguard Clock: Use google sans only for faulty fonts [minaripenguin]
3f0fd2d SystemUI: KeyguardClock: Use google sans instead of harmony [Adithya R]
cd4e294 base: SystemUI: Set lockscreen clock font dynamically [Adithya R]
1546181 SystemUI: media: better fade filter and encapsulate artwork settings in a data class [jhonboy121]
569979c SystemUI: Rework media notification view [minarypenguin]
dc25d933 fixup! SystemUI: Allow Wi-Fi/cell tiles to co-exist with provider model [Adithya R]
c2b4d29 BootAnimation: Check for resolution override [Aaron Kling]
afc00cb base: Fix Italian AOSP translations for unlocking the phone [M4rtox]
eaaae7d services: AppLockManagerService: fix an oob exception [jhonboy121]
6319cfe base: Prevent NPE for Demo mode [markakash]
8d2f5bd base: Add Italian translations [M4rtox]
3d01990 Keyguard shortcuts: Follow light/dark settings [minarypenguin]
1d322f2 Redesign lockscreen bottom shortcuts [00day0]
dabfc64 base: wm: Follow rounded corners by split divider corner size [ReallySnow]
9c76ffb SystemUI: doze: add config for long press sensors that need a proximity check [Cosmin Tanislav]
456b75a SystemUI: doze: add config for double tap sensors that need a proximity check [Cosmin Tanislav]
cb999d3 Partially revert "Assume sensors perform prox check" [Cosmin Tanislav]
83b5755 fixup! PowerManager: Add proximity check on wake [Bruno Martins]
f7af65f Fix validators [George Zacharia]
b494800 SettingsLib: Update German translations [NurKeinNeid]
57da84e PixelPropsUtils: Update fingerprints to July 2022 [NurKeinNeid]
c773e3f SystemUI: Fix signal bar icon overlay issue [Weijie Wang]
88d9ad4 display: Force a reset if brightness adjustment is changed directly [LibXZR]
bb9aa8d display: Restore brightness adjustment on boot [LibXZR]
4f76096 display: Don't reset brightness adjustment on clearUserDataPoints() [LibXZR]
da7cbf0 display: Don't let "extra dim" affect brightness adjustment [LibXZR]
cec0138 DisplayPowerController: Don't apply brightness adjustment if NaN [LibXZR]
0c63d04 SystemUI: Fix QS mobile icon disappearing on theme switch [Adithya R]
b3d84a2 SystemUI: Fix suspicious spaces around QS mobile icons [LibXZR]
544709ff SystemUI: screenshot: close QS after launching long screenshot activity [LuK1337]
1fa1bc8 SystemUI: screenshot: disable magnification for partial screenshots [Cosmin Tanislav]
20e69f4 SystemUI: screenshot: add extra crop boundaries [Cosmin Tanislav]
ace30b1 SystemUI: screenshot: remove duplicate clamping on move action [Cosmin Tanislav]
4372ced SystemUI: screenshot: remove misplaced call to set crop view padding [Cosmin Tanislav]
a5ddb3c SystemUI: screenshot: open long screenshot activity for partial screenshots [Cosmin Tanislav]
5cf8b5d core: Fix menu popup ripple [timjosten]
6a75fef SystemUI: Avoid NPE in volume dialog [Christian Hoffmann]
4ff35c7 Close the FileStream to avoid resource leak [Naga Venkata Durga Ashok Mutyala]
edbc1ae Refactor Ringtone.playFallbackRingtone [Kevin Rocard]
5785199 Catch DeadObjectException in TCMS. [qinyige1]
e9e9e8f Fix autogroupsummary bug [woongki min]
b4e6e98 Parcel: remove use of getOpenAshmemSize [Steven Moreland]
da68337 Fix EventLog string class problem in ViewRootImpl#enqueueInputEvent() [chenchaoli]
4ee06b2 services: fix a synchronization issue in CachedAppOptimizer [jhonboy121]
a91d2df Gestures nav: Add hush mute action [ezio84]
696da5d Gestures nav: Add Partial Screenshot action. [spezi77]
411c153 Gestures nav: Add Power menu action [kdrag0n]
a04b3bf Gestures nav: Add Skip/Previous Song Function [bigrushdog]
51d413e SystemUI: Split status bar icon controls for vibrate and mute [althafvly]
d7f6a13 services: AppLockManagerService: ignore uninstall intent if app is being replaced [jhonboy121]
608b9ed AudioService: Fix issue with linked notification volume [Pranav Vashi]
d9c8fe4 SystemUI: Fix few issues with toggling privacy indicators [Pranav Vashi]
87719fd Screenrecord: Slightly optimize loading/saving preferences [Pranav Vashi]
68759b3 voWiFi: Remove isWide from MobileIconGroup [xyyx]
837a90e Fix voLTE and voWiFI [xyyx]
c059392 SystemUI: Update caffeine tile icon [Andrew Fluck]
385c2bb PreviewInflater: Fix issue with google dialer widget on keyguard [Pranav Vashi]
c85e35e PixelPropsUtils: Disable spoof for recorder app [jhenrique09]
b88fd26 SystemUI: Add 14 New VoLTE icon [1/2] [R15Hi]
72d8140c SystemUI: Add VoLTE icon from Motorola [Gagan Malvi]
af247b1 [SQUASH] Refactor how we display the VoLTE/VoWiFi icons [1/2] [Pranav Vashi]
b9e4329 CustomFaceProvider: Fix after android-12.1.0_r7 merge [jhenrique09]
ebb2017 Only update the compat system UI visibility if the source is valid [Tiger Huang]
ad590b4 Fix crash with protected content with ElectronBeam/Scale screen-off animation [Matt Filetto]
0bce587 Add upstream fixes to ElectronBeam screen-off animation [Pranav Vashi]
004c50c Notify display brightness changed due to brightness transforms [Daniel Solomon]
3f6c615 SystemUI: Update more jars to qpr3 [Anay Wadhera]
a9d696a SystemUI: smartspace: Update for qpr3 [Anay Wadhera]
4546d2a SystemUI: smartspace: Fix wrong attributes [Anay Wadhera]
0d3cf77 SystemUI: smartspace: Match Google resource class [Anay Wadhera]
7524da7 PixelPropsUtils: Update fingerprints to June 2022 [NurKeinNeid]
138f583 SystemUI: MediaOutputController: Avoid NPE when created with empty packageName [Arian]
e7a8427 Show the vibrate icon in the Status Bar by default [Chirayu Desai]
fecd8e1 LockSettingsService: Restrict access to getpassword API [Prerna Kalla]
333fb8b Fix Build Credentials refactored to use byte[] [Justin DeMartino]
e009ea8 frameworks: base: Port password retention feature [AnilKumar Chimata]
737b18a SystemUI: Use lighter material you shades for charging animation [minarypenguin]
3e6155e Skip checking SystemUI's permission for observing sensor privacy [Han Wang]
53cd3cf BatteryStatsImpl: Guard against OOB [Ido Ben-Hur]
0dba89a Privacy Indicators: Follow light/dark theme settings [minarypenguin]
9a1ca1f unregister FileCleanupReceiver when disableHistory [hongyang.dong]
abf6d12 Fix daveys when latch_unsignaled is used [John Reck]
3a758c4 [SQUASH] Revert "Ambient Music Ticker - Allow to pulse on new tracks [1/2]" [NurKeinNeid]
4d1efd3 SystemUI: Calculate paged QS tiles height properly [Adithya R]
0aab326 SystemUI: Add left padding for keyguard slices [LuK1337]
354bc3e Revert "Only create resources for the non-system user" [LibXZR]
877f905 SystemUI: Improve powershare strings [Henrique Silva]
9c919c8 SystemUI: Re-inflate keyguard statusbar on theme change [Adithya R]
18baad3 SystemUI: QSAnimator: Hide secondary label in QQS [Adithya R]
fb5839a SystemUI: Fix QS clock overlapping on UI mode change [Adithya R]
5c21443 SystemUI: screenshot: open the screenshot instead of edit [Timi Rautamäki]
cfd3054 base: Support muting media volume on silent or vibrate mode [LibXZR]
62480fd SystemUI: Re-evaluate system theme on UI mode change [althafvly]
85daa4c SystemUI: Reset QS on UI mode change [althafvly]
74978da SystemUI: Show notification row when it's unlinked to ringer volume [Mesquita]
455c6f5 base: Allow to skip confirmation in biometric auth dialog [1/2] [cjh1249131356]
7949687 styles: Use user fonts for Material UI themes [Danny Lin]
e0d5ce6 TaskHelper: onOverlayChanged -> onThemeChanged [DennySPb]
1f601fa fwb: Silence some AOSP logspam [George Zacharia]
5b52282 UsbDeviceManager: Delay MSG_UPDATE_SCREEN_LOCK message [LuK1337]
14e9b3c SystemUI: fixup! Hide OOS clear all if panel visible because Headsup [ariffjenong]
f542f25 SystemUI: Hide oos clear all if reticker enable [Genkzsz11]
1311211 smartspace: Revert some of the Android 12.1 changes [Jayant-Deshmukh]
cf89458 PackageManagerService: Protect forced enabled components at runtime [jhenrique09]
2467304 PermissionManager: fix NPE in getIndicatorExemptedPackages [Timi Rautamäki]
4796d80 frameworks: Exempt location packages from location indicators [Chirayu Desai]
f6e5b71 SystemUI: Make isTablet() use correct API for getting window metrics [LuK1337]
2a31e87 core: pm: Wipe package cache when upgrading system [Albert I]
3c84468 SystemUI: Add Telephony and CNE to location indicator whitelist [LibXZR]
719622d Revert "Remove bool dependency for XXX charging." [NurKeinNeid]
ccd47ca base: fix deadlock between activity manager and power manager [jhonboy121]
f73317a SystemUI: Prevent whitelist packages from appearing in privacy dialog [LibXZR]
596b945 Add Google Search and Google Location History to location indicator whitelist [johnmart19]
7f8ef88 base: Add ENABLE_TASKBAR setting [LuK1337]
ca16766 SystemUI: Let screenshot window ignore screen decorations [LuK1337]
c802340 add com.android.phone to indicator exemptions [Daniel Micay]
bdd4018 add com.android.bluetooth to indicator exemptions [Daniel Micay]
afe86c7 PixelPropsUtils: Update fingerprints to May 2022 [NurKeinNeid]
06e2732 Add Mediatek IMS to location indicator whitelist [Chiranth A J]
d263868 [SQUASH] SystemUI: Show daily data usage in QS footer [1/2] [Adithya R]
c39ba60 acherus: Add settings overlay [Genkzsz11]
3f8da17 Fix IndexOutOfBoundsException in systemserver [V S Ganga VaraPrasad (VARA) Adabala]
c3dfe1e Improve compaction to abort when system changes to awake state [V S Ganga VaraPrasad (VARA) Adabala]
2841130 appcompaction: Enable system compaction at bootup [Divyanand Rangu]
7c20c9b Improve compaction by skipping bad VMAs instead of fully bailing out [Edgar Arriaga]
ec0a325 Fix for compaction bailing out when MAX_RW_COUNT bytes are sent to compaction [Edgar Arriaga]
58e5e68 SystemUI: Screenshot: Avoid NPE while getting app label [Adithya R]
46f345a SystemUI: Use color accent for charging animation [Genkzsz11]
530cd60 SystemUI: Fix media art force expand without systemui restart [Genkzsz11]
ae9326c SystemUI: Hide tuner icon in QS panel [Danny Lin]
22fbe18 dynsystem: Fix memory leak [Yi-Yo Chiang]
640a794 DSU service: Log insufficient storage space error [Yi-Yo Chiang]
ad68b7a DSU service: Pipeline the installation task to improve performance [Yi-Yo Chiang]
2254df2 NavigationBarController: Remove tablet check for enabling taskbar [Pranav Vashi]
b9897d3 SystemUI: Add API for runtime taskbar config on phones [Danny Lin]
e5ab6f1 DSU: Only try to install on sdcard if the filesystem in use is vfat [Tim Zimmermann]
faa09ed Dark Theme "TURN ON UNTIL SUNRISE" is not retained after reboot [Sameer Zalke]
570b0f9 Properly handle wrap system property in zygote [Hans Boehm]
454fa00 Correct off-by-one error in SetThreadName [Hans Boehm]
39ce7d5 BatteryStatsService: Fix wrong arguments passed to noteBluetoothScanStoppedFromSourceLocked. [Shumao]
12ec02a Don't preload into nonexistent zygote [Hans Boehm]
207c8b4 Don't MAP_POPULATE native ZygoteCommandBuffer [Hans Boehm]
2ff1742 Fixes and improvements for Black Theme [Pranav Vashi]
ccee8a9 PixelPropsUtils: Avoid spoofing for Pixel Buds [Karan Parashar]
1528bb2 Reticker: Cleanup [Genkzsz11]
9692f5a Battery bolt: Preserve unicode bolt color [Trishiraj]
c26079b SystemUI: Fix alarm icon [Michael W]
3833fce SystemUI: Introduce OOS style notification clear all button [1/2] [00day0]
2633f90 PixelPropsUtils: Correctly spoof pixel props [Soo-Hwan Na]
c822b3e base: Add Dora icon pack [F5LAYD]
5dc8ed3 fwb: [Bugfix] Fix the issue of transition animation splash screen in split screen mode. [Cheng Shi]
e8ad26d fix google widget timing issue [Ruoyao Liu]
b21ca7a udfps: Disable Night Light when showUdfpsOverlay [LynnrinChan]
49b5cd7 Revert "UDFPS: Night Light Disable [1/2]" [NurKeinNeid]
18e5d1e Battery: Color coded battery indication [1/2] [Trishiraj]
19af482 Battery Style Improvements [Trishiraj]
dcdf934 PixelPropUtils: Also override pixel fingerprint to Play Store [EndCredits]
67a4d43a PixelPropsUtils: Spoof Pixel props for Samsung apps too [roynatech2544]
e992619 DeviceGroup: Check RSI data with filtered scan results [Sumit Deshmukh]
3ba3afe base: Add German translations for faceunlock [1/2] [NurKeinNeid]
278a1d4 Columbus/SyberiaSystemUI: Make crosshatch is default model [DennySPb]
b446141 SystemUI: update Google elmyra/columbus/assist assets to 12L [Anay Wadhera]
f88e39f SystemUI: Add face related jar [jhenrique09]
78b8557 SystemUIDerpFest: Don't start FaceNotificationService if using custom face impl [jhenrique09]
5ae5289 SystemUI: Introduce ColumbusCompatibilityHelper [jhenrique09]
27424e6 SystemUI: Port elmyra (squeeze) from SQ1D [jhenrique09]
5ccf3e1 SystemUI: Fix CalledFromWrongThread exceptions [jhenrique09]
763ffed SystemUI: Port columbus (quick tap) from SQ1D [jhenrique09]
d952a39 base: Make IME button space optional [1/2] [SKULSHADY]
12b67b4 base: applock: intercept activity in a better way [1/2] [jhonboy121]
569378d0 MonoToggleTile: Use secondary label to indicate mode [PainKiller3]
2b91ff1 Mono/Stereo QS tile: Add long click intent [Alex]
36ae8cb SystemUI: Add Mono audio tile (aka headphone in one ear only) [ezio84]
9685322 TunerService: Add parseInteger failsafe method [Pranav Vashi]
fd43614 QSPanel: Fix NPE in updateViewPositions() [Pranav Vashi]
7f9646b Brightness slider: Fix issues with media mode [Pranav Vashi]
b266c82 Bring back QQS brightness slider [Pranav Vashi]
be493de Fixes and clean up for QS brightness slider customizations [Pranav Vashi]
2e6d2f2 [SQUASH] SystemUI: Revert Brightness slider changes for QQS [NurKeinNeid]
e932b93 base: SystemUI: Fix circle battery QS tinting [Ido Ben-Hur]
1888aa1 Keyguard: Allow disabling fingerprint wake-and-unlock [Steve Kondik]
d70845d Fix chip visibility in split shade header [Pranav Vashi]
f32f01a base: Allow toggling screen off FOD [1/2] [jhonboy121]
0a5f421 NavigationBarInflaterView: Improve applying overlays [Pranav Vashi]
a367960 DisplayPowerController: Fix incall proximity not turning off display [sooti]
efed8c0 ShortcutPackage: do not spam logcat [jhonboy121]
e36e4fd Camera: Prevent crash with prebuilt camera metadata [Pranav Vashi]
81f6ac4 Camera: Update HighFrameRate GPU flags [Susmitha Gummalla]
9648ed8 Camera: Update HighFrameRate GPU flags [Susmitha Gummalla]
8c91d55 StatusBar: Kill old privacy indicator icons completely [Pranav Vashi]
809c5d5 SystemUI: Make the volume dialog expandable [Arian]
71b22681 [fixup] Runtime volume panel toggle [DennySPb]
61b0369 VolumeDialogImpl: Don't hide the default stream when adjusting the music stream [Arian]
158b943 VolumeDialogImpl: Respect multiple visible rows in landscape [Arian]
deda2fc VolumeDialog: notifyVisible after the volume panel is fully hidden [Jesse Chan]
23601ed Added changes to avoid Null Pointer Exception [phaneendra Reddy]
6b5084a Handle BLE ON corner use cases with BLE APP concurrency [Venkata Jagadeesh Garaga]
9fa6969 core: Wipe package cache on upgrade even on user build [Albert I]
f894ba1 Fix StageCoordinator unexpected onDisplayAreaVanished [ot903107]
a889693 base: HUN importance selector (1/2) [Ali B]
56860f1 Udfps: adjust position if cutout is hidden [Henrique Pereira]
62006e6 CutoutUtils: Improve logic [jhenrique09]
118a235 base: Declare cutout utils [jhenrique09]
a6e62ff KeyStore: Add getApplicationContext method required for Asus Devices [Jackeagle]
81fbc65 Move binder latency data logging to a background thread to improve performance of the main thread. [Siim Sammul]
530581c Fix the wrong of dismisssurface state under multi-threading [hanfeng3]
deddbf4 Fix OOM cache app optimizer flaky test. [Silvia Vinyes]
ba8aa61 EasterEgg: Fix some warnings [Michael W]
ef1afd0 Force Expanded Notifications [1/2] [Jmz]
0417344 Add kill button to notification guts [1/2] [Daniel Koman]
5d97195 SystemUI: config to hide status bar on lock screen [1/2] [maxwen]
3483b27 base: log spill when dragging [maxwen]
3e8f537 Fix: "Clear All" recent app screen loop bug [vincent.cw_lee]
ce0ea7a SystemUI: add option force media player expanded [1/2] [703joko]
6140358 Battery: make fill path rounded [Evillium]
ac6be0a Gestural: Improvement [1/2] [703joko]
8a03326 Gestural: Allow customizing gestural margin bottom [2/2] [703joko]
86ffa03 Battery charge warning [1/2] [Nicolas Dhouailly]
24aef32 DSU service: Show which partition is being installed in notification [Yi-Yo Chiang]
4637772 DSU service: Weighted progress bar [Yi-Yo Chiang]
72cee3e dynsystem.SparseInputStream: Implement read(buf, off, len) [Yi-Yo Chiang]
edc6180 dynsystem: Enlarge default shared memory size and allow size override [Yi-Yo Chiang]
6d6cc221 DSU installation service: Add event log tags [Yi-Yo Chiang]
35ea3f1 Fix unwanted sign-extention when converting byte -> int [Yi-Yo Chiang]
59f7af0 SystemUI: inject WiredChargingRippleController [jhonboy121]
e6af299 Revert "StatusBar: Kill old privacy indicator icons completely" [NurKeinNeid]
bc244a7 data: add new priv permission for launcher [Ali B]
bc0183b SystemUI: AuthBiometricFaceView: Don't spam log [Joey Huab]
1b4c240 Increase Zygote command buffer size to 32k. [Martijn Coenen]
0207e9d Make smart idle maint's period changable [Daeho Jeong]
f4753ba KeyguardIndication: Fix glitchy charging info on lockscreen [Pranav Vashi]
b2e02e9 base: Show and edit Ambient Icons on Lockscreen [1/2] [TikkiTikki]
60da700 Add config overlay to force enable multi resolution for camera [Pranav Vashi]
3d5e986 SystemUI: Fix the unlock sound played repeatedly [Shufeng Hou]
549ef97 Properly update view for reTicker [Pranav Vashi]
6306799 Dont show vendor mismatch message by default [00day0]
9f18ee0 base: Make vendor mismatch message optional [Anushek Prasal]
26de548 Dynamically tell the user which vendor image is needed [beanstown106]
a200bf0 Show a more descriptive message when vendor.img is out of date [beanstown106]
c153715 reticker: Add color for youtube in blacklist [SuperDroidBond]
f3524919 reTicker: Add youtube to blacklisted apps [spkal01]
3fe0300 Reticker: Remove some logging [spkal01]
038bc89 Feature: reticker [1/2] [Dil3mm4]
a0b4687 SystemUI: fix qs tiles init on split notification shade open [maxwen]
311aeaf base: notifications: set emphasized button bg to accentColor [maxwen]
a6a337d SystemUI: PlayerViewHolder: add a null check on handler [jhonboy121]
c8199e8 Settingslib: Remove a reflect method that can never succeed [Soo-Hwan Na]
146cf38 SystemUI: blur auth dialog background [Lucchetto]
47a6317 AlarmManagerService: null check the alarm operation [William Bellavance]
f864000 SystemUI: add missing call to init isDeviceProvisioned in PhoneStatusBarPolicy [maxwen]
a9fff86 SystemUI: thread protect keyguard callbacks [maxwen]
9effb38 SystemUI: buttons should no longer be textAllCaps [maxwen]
7c5452d EdgeBackGesture: Remove assistant action [DennySPb]
c0a3085 AutoAODService: Use Calendar.add instead of Calendar.roll [Ido Ben-Hur]
b703db8 SystemUI: AuthController: Fix NPE due to isPowerbuttonFps() [Adithya R]
9efc126 SystemUI: AuthController: Fix ripple animation for side fp devices [Adithya R]
b6d24ca FaceService: Downgrade strength to STRENGTH_WEAK [jhenrique09]
0e224f6 SystemUI: use AndroidSystemBlur-platform [Lucchetto]
3f6cf38 SystemUI: blur brightness slider dialog [Lucchetto]
f8dcc06 GlobalActionsDialogLite: disable SystemUIDialog provided blur [Lucchetto]
caa2faf SystemUIDialog: allow disabling background blur [Lucchetto]
975cf29 DndTile: disable dialog animation [Lucchetto]
f477b11 DataSaverTile: disable dialog animation [Lucchetto]
aedae29 MediaControlPanel: disable dialog animation [Lucchetto]
fc37fc3 MediaOutputController: disable dialog animation [Lucchetto]
d9a9f8d UserSwitchDialogController: disable dialog animation [Lucchetto]
5b4621f SystemUIDialog: blur background [Lucchetto]
2c39717 ScreenRecordTile: disable dialog animation [Lucchetto]
7cd0141 InternetTile: disable dialog animation [Lucchetto]
d2bae15 FooterActionsController: disable power menu animation [Lucchetto]
a60b81f SystemUI: blur privacy dialog [Lucchetto]
6549123 SystemUI: blur global actions dialog [Lucchetto]
724848f SystemUI: blur toast [Lucchetto]
98ced1c SystemUI: Add AndroidSystemBlur dependency [Lucchetto]
c598c36 SystemUI: Nuke oriented navbar handle [Ido Ben-Hur]
0b3811e NavigationHandle: Only register callbacks when attached [Ido Ben-Hur]
8afb07b SystemUI: NavigationHandle: Don't show on keyguard or doze [Ido Ben-Hur]
20fc42a BluetoothControllerImpl: fetch battery level from any device [jhonboy121]
4806fb4 SystemUI: fix initial notif shade layout on split mode [maxwen]
d2bd86e SystemUI: use default dialogCornerRadius for qs customize title [maxwen]
6a3a386 Fix up hiding camera/location indicators for known packages [Pranav Vashi]
fb02d13 QuickStatusBarHeader: Fix clickability issue with privacy indicator [Pranav Vashi]
dc4cd01 SystemUI: Fix pulseOut fails before fully pulsing [LibXZR]
ece8279 s2ss: Remove property usage [LibXZR]
7dc1847 SystemUI: runtime configurable audio panel location [a.derendyaev]
330bd0e base: Update API for disabling gestural navigation [Pranav Vashi]
e3654e5 base: add API for disabling gestural navigation [ezio84]
bc26327 Revert "base: add API for disabling gestural navigation" [NurKeinNeid]
eff5e7d Add AlarmsBlocker [1/2] [faust93]
7edbf5b Add WakelockBlocker [1/2] [maxwen]
6c27b2b Edit Icon Toggle [1/2] [Joe Maples]
4d69e8f Statusbar brightness control: behave like brightness slider on P [SpiritCroc]
cd71ce9 SystemUI: Port Statusbar brightness control [1/2] [Danesh Mondegarian]
f835c2b SystemUI: Use MD2 icon for running services in QS [SKULSHADY]
2f04658 base: add camera flash toggle api [Rabih Salamey]
371c3f1 base: add API for disabling gestural navigation [ezio84]
224b52d SystemUI: BluetoothControllerImpl: synchronize mConnectedDevices access in getBatteryLevel() [jhonboy121]
1a92545 net: fix NPE when reading IP configurations [Matt Lee]
9df3250 SettingsProvider: Set device name to marketname if available [Adithya R]
41678d2 VolumeDialog: Display default row when active row is notification [Jesse Chan]
36c052a Move GraphicsStatsService native method registration to zygote. [Nicolas Geoffray]
a477af8 SystemUI: Fix NPE in AmbientIndicationContainer. [spezi77]
5661c9c AuthService: Add support for workaround side fps props [LuK1337]
4a5fd35 Sharesheet: Display two rows of max ranked targets [LuK1337]
5242a25 SystemUI: Change StatusBar.showWirelessChargingAnimation() to public access. [spezi77]
b666c23 Persistent background app notification: disable by default [Erwan Finot]
01ac624 EdgeBackGestureHandler: Change back gesture height intervals [Anushek Prasal]
1ec29e0 SystemUI: LocationTile: Be affected by the secure tiles toggle [Ido Ben-Hur]
2ffba14 AppErrorDialog: add option to disable pkg [Dil3mm4]
0cd83f6 Address NPE when removing preferences out of developer options [Alex Cruz]
d89f0a6 NotificationManagerService: Disable channel warning toast by default [jhenrique09]
c1fd8f2 Make sensor block package list configurable [1/2] [Hikari-no-Tenshi]
140d81f base: Add Accelerometer and Linear Acceleration sensors in blocking list [HolyAngel]
2bc099d Settings: make SensorBlock readable by non-system apps [Ali B]
57561b7 FWB: Sensor block per-package switch (1/2) [LorDClockaN]
f36eccd SystemSensorManager: sensor block per-package [Simao Gomes Viana]
7069bc0 SystemUI: Add a QR Code scanner tile [AshutoshSundresh]
80b7986 services: Whitelist Nfc Service from clipboard toasts [AshutoshSundresh]
2facc3f [SQUASH] base: introduce app lock [1/4] [jhonboy121]
07495dd data: Rename GoogleAudio to CustomAudio [AshutoshSundresh]
e162aad data: Import keyboard sounds from osu! [AshutoshSundresh]
b7833f8 data: Add UI tap sound from ACE AS0618 [AshutoshSundresh]
e9c5fa1 data: Import some UI sounds from Samsung S21 FE [AshutoshSundresh]
1a8e3bf Build Google audio files from android12 [2/2] [BeansTown106]
72cf2a0 Add Settings services to location indicator whitelist [Chiranth A J]
21f7a7d Do not show camera indicator for Face Unlock service [LibXZR]
8315132 Add Tethering and SystemUI to location indicator whitelist [LibXZR]
bd66e9e Do not show location indicator for bluetooth package [LibXZR]
fe1b92a21 Add config to exempt telephony-related app from location indicators [Danny Lin]
5799430 base: SystemUI: Allow to reduce 3 second screen record timer to 100MS [maitreya29]
2398827 Screenshot: Remove scroll chip button text [NurKeinNeid]
420c0c8 SystemUI: Integrate Google Lens into Screenshot UI [AshutoshSundresh]
4f9fbd6 SystemUI: Display a toast when a screenshot is deleted [Alex Cruz]
0ce7ebe Screenshot: Add delete action chip intent [ganeshi4u]
a6810eb SystemUI: Fix an NPE in KeyguardMessageArea [Dominik Procházka]
45aa064 SystemUI: Remove excess margin in few statusbar icons [Adithya R]
8b3e51a SystemUI: Add NFC tile to default [Adithya R]
5acd30f StrictMode: Don't enable extra features for userdebug builds [Sultan Alsawaf]
35da6d9 SystemUI: Make center clock layout safe insets aware [LuK1337]
57bc1f0 SystemUI: match brightness slider track height with the progress drawable [jhonboy121]
b8e5f80 base: PSSSSST! disable some DEBUG logspill [maxwen]
f9fc0a7 SystemUI: AmbientTile: Default the setting to 1 [Luca Stefani]
833c1f9 SystemUI: AmbientTile: Actually start using SecureSetting [LuK1337]
5d6dfac SystemUI: AmbientTile: Use SecureSetting to change doze setting [Luca Stefani]
e883636 SystemUI: AmbientTile: Don't hardcode display settings intent [Luca Stefani]
5a51a67 Secure reset battery stats permission [Danny Lin]
80e1f52 base: Grant battery stats reset permission to Settings [Danny Lin]
ee79870 frameworks: Reset battery stats [1/2] [Jorge Ruesga]
14d22f3 SystemUI: use simple check for isFaceDisabled [Ali B]
ef8c9d4 fixup! face unlock mismerge [Ziauddin Sameer]
4da6a0c base: Guard some functions against face unlock [jhenrique09]
0500fc9 Do not lock when biometric lock status is cleared. [Joe Bolinger]
1d7b44f FaceUnlock: Fixup for 12L [xyyx]
83700ed WalletActivity: Don't explicity request fp/face auth [jhenrique09]
1a272aa Reset face auth on occluding app when authenticated [jhenrique09]
715945f SystemUI: Improve pt-br translation for fingerprint_dialog_use_fingerprint_instead [jhenrique09]
29d0a48 FaceService: Allow our face unlock to be used on third-party apps [jhenrique09]
230e4d4 [1/2] Allow changing face unlock method when locked [jhenrique09]
4782b3f base: Remove AOSP translations of face vendor error messages [jhenrique09]
9bbf4d8 SystemUI: Tell user when face unlock detection is running [jhenrique09]
69c9991 KeyguardBouncer: Don't delay showing if face auth running [jhenrique09]
4c5de8c base: do not use new lockscreen layout for bypass [Ethan Halsall]
111a3c6 Add idle lockout message for FaceUnlock [jhenrique09]
b81d3b6 SystemUI: Allow listening for face only on pin/pass view [jhenrique09]
1ed1ed6 Initial import of Face Unlock for S [jhenrique09]
d1ac767 SystemUI: RefreshRateTile: Fix mode cycle on some devices [Nauval Rizky]
2d65528 fixup! SystemUI: RefreshRateTile: improve and support for multiple peak refresh rates [Alfred Mathew]
be7ef9c SystemUI: RefreshRateTile: fix mode cycling [Alfred Mathew]
9574ba8 SystemUI: RefreshRateTile: improve and support for multiple peak refresh rates [Alfred Mathew]
e74fde1 SystemUI: RefreshRateTile: fix getting wrong peak refresh rate default value [jhonboy121]
16028cd SystemUI: RefreshRateTile: java -> kt [jhonboy121]
dbda5da base: added refresh rate tile [jhonboy121]
3e668c1 Fix edit button in screenshot share activity [Edward Savage-Jones]
bfb5d7d SystemUI: Improve Secure QS tile behaviour toggle [1/2] [Pranav]
e2f40a4 Check the data directory before mount tmpfs [Zaijian Lin]
2ab68656 SystemUI: DetailDialog: do not explicitly specify type parameters for setOnClickListener lambda [Alfred Mathew]
05bae60 SystemUI: QSTileImpl: bail out early in handleLongClick if getLongClickIntent returns null [Alfred Mathew]
4f42143 base: Add Russian translations [NurKeinNeid]
6f883af SystemUI: Require unlocking to use Reboot tile [NurKeinNeid]
4e2e788 Add bootloader option to 'Reboot' tile [Alex]
3dc4f4c Allow to hide arrow for back gesture [1/2] [Ali B]
4cbdb0c base: grant storage permissions for Updater [Ali B]
24be9de base: Live Volume Steps [1/2] [Meticulus]
c55cb3f Lazy load Properties::isDrawingEnabled. [Brett Chabot]
6832d17 Backport 'Add ability to disable GL draws'. [Brett Chabot]
e75033a Fix an instance of -Wunused-but-set-variable. [Yi Kong]
6e10e9a1 Fix full draw power usage increase issue [Jiang Tian]
9a033cc Fix BatteryStats counts foreground activity time. [Lang Yu]
0ed1f0f HwRemoteBinder: fix race for concurrent binderDied [Steven Moreland]
27063e2 RecoverySystem: make the package readable before checking capex [Chenyang Zhong]
db1eb2c Support enforcing a minimum delay between notification sounds of an app. [Danny Baumann]
e9dc290 SystemUI: Make sure notification icons are sticked to the left [Ido Ben-Hur]
58940e1 SystemUI: Use same NFC icon as that in QS tile [Pranav Vashi]
6d4db85 SystemUI: Update NFC tile drawable [mydongistiny]
b3c582c Screenshot: inline trigger with AOSP values [Alex Cruz]
b2c33b0 fixup! SystemUI: Fix method for disabling unlock ripple animation [palaych]
351be57 SystemUI: NfcTile: Don't create an error when editing tiles [Michael W]
4367f9f Volume key cursor control (1/2) [Konsta]
041623d base: support per-app volume [2/3] [cjybyjk]
49b9a52 AlarmManager: create setExactAndAllowWhileIdle variant based on alarm listener [Oliver Scott]
7678b07 fixup! SystemUI: Add support for timeout-reboot [Oliver Scott]
65549d4 fixup! Bluetooth timeout feature [Oliver Scott]
dfcfc20 Wi-Fi timeout feature [Oliver Scott]
18701ff Bluetooth timeout feature [Oliver Scott]
971f38e BluetoothManagerService: allow bluetooth auto-enable if not in airplane mode radios [Oliver Scott]
b33d160 BluetoothManagerService: check if bluetooth is in airplane mode radios before disabling [Oliver Scott]
a480db0 AutoBrightness: Add support for one shot auto-brightness: [Cédric Bellegarde]
1ccc068 overlays: oos: Import stock oos settings icons [RedSkulHYDRA]
4955088 zygote: Enable USAP by default for S. [Vishalcj17]
ca4ddae Add monet tunable keys into backup too [palaych]
562c895 ScreenshotHelper: ignore timeout when taking partial screenshots [Demon000]
ec11252 SystemUI: add public setting keys for monet tunables [jhonboy121]
f71ee59 ThemeOverlayApplier: Add support for navbar styles [NurKeinNeid]
12edeaf base: Introduce Outline iconpack [Niklas Schnettler]
3ea8100 FingerprintManager: Fix NPE due to sensorProps [alibei]
ddf3717 Navbar: Fix issue where pill disappears in gestural mode [Pranav Vashi]
c1d9efc Move PackageManager new user logic after dispatching [LibXZR]
a68c38f SystemUI: AODTile: update long click intent to match with Settings [Alfred Mathew]
e900372 SystemUI: allow toggling haptic feedback on pressing udfps view [1/2] [jhonboy121]
83b81b97 Extend "Trace: Disable debug tracing in production builds" to userdebug [Albert I]
ebab857 SystemUI: Limit keyguard charging stats updates [xNombre]
38e0304 neko/Cat: Mark FLAG_IMMUTABLE PendingIntent with FLAG_MUTABLE [PainKiller3]
f4e355e IconPackKaiAndroidOverlay: fix for carriers using 5 bars of signal [Anay Wadhera]
f6fa463 base: disable all led configs by default [Omkar Chandorkar]
42db7b6 base: AudioService: bail out if ringer mode is not recognized [jhonboy121]
0056918 SystemUI: PeopleSpaceWidgetManager: don't spam logcat [jhonboy121]
b7fe5f0 Disable/reduce functionality of various ad/analytics libraries [Tad]
9a23fef Allow additional padding for center clock [cjh1249131356]
261342c Make center clock follow paddingTop [cjh1249131356]
c107609 fwb: [1/2] Implement cutout force full screen [jhenrique09]
56d111a services: LightsService: Mute an annoying error message. [spezi77]
e79225a SystemUI: Add powershare QS tile [Linux4]
afa243b privapp-permissions: Grant missing TelephonyProvider perm. [spezi77]
8bacb6f SystemUI: Update glove mode drawable [Sourajit Karmakar]
97b389e SystemUI: add Glove Mode Tile [Anay Wadhera]
91d10ee fwb: Fix navigation bar button hit testing [SahilSonar]
4f4c8fb QS customizer: Better string for 'reset' menu item [Alex Cruz]
66a1817 Allow hiding call strength icons [1/2] [SagarMakhar]
dd288f3 Partially revert "Block annoying statusbar call strength icon" [NurKeinNeid]
dcf92ef base: volume key music control: include remote streams [Ido Ben-Hur]
492725a Reduce padding use by privacy indicator resources [Pranav Vashi]
1ad66b0 Allow toggling camera/mic privacy indicator [1/2] [Pranav Vashi]
e02a6a5 base: Fix location privacy indicator getting stuck [Pranav Vashi]
682601a StatusBar: Kill old privacy indicator icons completely [Pranav Vashi]
a9fcde7 ThemeOverlayApplier: Apply wifi and signal icon styles last [Pranav Vashi]
d674878 base: Black theme [1/3] [SagarMakhar]
52c9066 Fix glitchy battery view in quick status bar header [Pranav Vashi]
4b34028 AuthRippleController: only update sensor location when necessary [Chenyang Zhong]
7f98530 base: Allow toggling floating rotation button [1/2] [Ido Ben-Hur]
be2c4cd base: improve location privacy indicator toggle [jhonboy121]
4d2254e SystemUI: Refactor colored statusbar icons [Pranav Vashi]
90b0666 SystemUI: Refactor notification counter [jhonboy121]
87dc373 Make colored Statusbar Icons optional [1/2] [spkal01]
b82dba5 StatusBarIconView: use app icons instead of provided notif one [Dil3mm4]
ac0813a SystemUI: Import Chinese translations from exthmui [HearnYuyuko]
78bd545 SystemUI: HeadsUp blacklists (1/2) [Adnan Begovic]
a2fd36f [1/2] base: HeadsUp add timeout option [Lars Greiss]
83c54c1 [1/2] base: HeadsUp snooze function [Lokesh Chamane]
47cb668 IconPackRounded: Use correct icon for notification and ring volume [Arian]
f4d8266 overlays: Add unlinked ringtone and notification volume icons [Adnan Begovic]
4b98e34 UDFPS: Night Light Disable [1/2] [SuperDroidBond]
c36ffad base: allow disabling ripple effect on unlock [1/2] [Rishawn]
54cb63f Catch IllegalArgumentException for invalid phone id [Wileen Chiu]
fa411bc SystemUI: Grant READ_PHONE_STATE permission [Martin Bouchet]
ced1d0d stop enforcing camera sound for certain carriers [Daniel Micay]
a9efb5a Revert "Remove dependency on IME subtype from TSMS" [Michael Bestas]
db4f4d7 base: Add Pixel Navigation Bar's Home icon [Vol Zhdanov]
4dff72d SystemUI: Use secondary label for language QS tile [Anushek Prasal]
333f7b8 AdvancedReboot: Add a button to restart SystemUI [Ido Ben-Hur]
5b2e492 SystemUI: Show advanced when advanced reboot is on [Ido Ben-Hur]
1c7d796 AdvancedReboot: remove Restart.. string [Omkar Chandorkar]
4a70d36 base: Hide power menu on secure lockscreen [1/2] [Altaf-Mahdi]
f72dc92 SystemUI: screenshot_dismiss botton --> button [micky387]
08a0415 AmbientIndication: Fix music ticker being black on AOD when using light wallpaper [spezi77]
182b9f1 AmbientIndicationContainer: Adapt visibility logic [spezi77]
b97fcb7 Ambient music ticker: Adjust the margin to the bottom a bit. [spezi77]
d42eee6 Ambient music ticker: Moar layout fixes [spezi77]
9b8da88 Show Ambient instead of lockscreen on wake gestures [1/2] [ezio84]
6d8cdd8 Ambient music ticker: Show the now playing container on Ambient screen as well [Jayant-Deshmukh]
b27dbe0 Ambient music ticker: Fix layout on Android 12 [Jayant-Deshmukh]
467ad22 Ambient music ticker: show Now Playing info on lockscreen [spezi77]
5986860 Port ambient Now Playing container from Pixel [stripped down version] [Joe Maples]
ecad4de BiometricScheduler: Cancel operation if not idle [SagarMakhar]
234f853 Battery Styles: Set proper battery style on init [Pranav Vashi]
258e75b SystemUI: fix black qqs on keyguard in light theme [jhonboy121]
401c815 SystemUIDerpFest: Extend the constructor for Battery Saver tile [NurKeinNeid]
50da8be SystemUI: QS: Add flipendo to Battery Saver tile [Jason Edson]
174ecb6 SystemUI: Introduce Adaptive Playback [1/2] [Jyotiraditya]
a004711 fixup! Ambient Music Ticker - Allow to pulse on new tracks [ezio84]
6737bb4 VolumeDialogControllerImpl: Stop log spam with no caption service [Pranav Vashi]
74bec12 DisplayDeviceRepository: Don't spam log when display state changes [Adithya R]
5edf315 Zygote: Fix an issue when empty the usap pool. [zhangjianqiu]
a396b04 Dont throw exception if admin is null [Ayush Sharma]
f031823 media: allow excluding arbitrary codecs from REGULAR_CODECS list. [Lajos Molnar]
ec6354b SystemUI: Open WifiPanel on LongClick [sb6596]
0769682 base: allow to swap volume buttons rotation based [1/2] [maxwen]
6eb8ff7 Screen off animations [1/2] [Kshitij Gupta]
d115489 base: Volume Rocker Wake [1/2] [rascarlo]
ead3a49 IdleManager: Remove logging [spkal01]
989a8e0 base: Implement background process killer [1/2] [Dil3mm4]
55868b3 NavigationModeController: Silence log spam [tejasvp25]
0132e51 Battery bar: show on lockscreen again for top of statusbar position [SpiritCroc]
233ce3d acherus: Wrap a few icons with inset [Pranav]
382b3ee SystemUI: Grant additional permissions for smartspace [Andrzej Perczak]
c626bbe fw/b: Add capability to allow tethering to use VPN upstreams [Sam Mortimer]
d05fce6 InputMethodUtils: Fix system bootloop when no IME found [Pranav Vashi]
8ad30f8 ThemeOverlayApplier: Catch a potential NPE [spezi77]
abca961 Bring back ThemeUtils for Theming [sb6596]
3fc68e1 base: use a double click effect for charging if there is no amplitude control support [jhonboy121]
98254e0 Hide clock in qqs header [SagarMakhar]
c4a2d77 AppErrors: Respect appsNotReportingCrashes for ANRs [Danny Lin]
0db35b5 Include saved battery history chunks into BatteryUsageStats parcel [Dmitri Plotnikov]
9489f5f Fix concurrency issue with BatteryUsageStats [Dmitri Plotnikov]
63a70c7 Pulse: Vertical mirror [1/2] [TikkiTikki]
ba2b3c0 Pulse: Custom gravity and Center mirrored [1/2] [TikkiTikki]
228f2c8 ColorContoller: Fix getting default accent color [Varun Date]
9df54ac base: Disable LS pulse by default [1/2] [Alexandru Scurtu]
fc57e72 Pulse: correctly stop it on screen OFF events [ezio84]
649c0c4 base: Extend Pulse to QS Panel [1/2] [TikkiTikki]
451e239 Solid render: Round lines [1/2] [TikkiTikki]
8cea12c Pulse: Set current Refresh rate as FPS animation value [Stallix]
323212e Pulse: Add required statusbar dependency [Pranav Vashi]
136c07b Pulse: Add more NPE checks [DarkJoker360]
03b93fd Pulse: Fix up navbar layout logic [Pranav Vashi]
a292bc2 Pulse: Extend to Ambient Screen [spezi77]
c43876a Pulse initial checkin for Android 12 [1/2] [bigrushdog]
8c24742 Revert "SystemUI: Add visualizer feature [1/2]" [NurKeinNeid]
9fd2885 Revert "Lockscreen Visualizer: Add pulse magic [1/2]" [NurKeinNeid]
9d3a051 SystemUI: Add support for timeout-reboot [Luca Stefani]
4765dd9 SystemUI: Allow Wi-Fi/cell tiles to co-exist with provider model [Danny Lin]
05ce845 Navbar: Ensure 2/3 button layout options play nice with gesture navbar [Alex]
d7eeb63 Navbar: Switch gesture navbar to new navigation bar key event source [Alex]
a01df37 input: introduce new navigation bar key event source [Carlo Savignano]
2361eb4 Navbar: Add navbar layout inversion tuning [Jesse Chan]
aa63a56 Navbar: Fix navbar layout switch and remove old cruft [maxwen]
e691e4b Navbar: Allow the launch navbar fragment externally [ezio84]
2b28b04 SystemUI: Add navigation bar visibility control [maxwen]
1b87b98 SystemUI: change notifcation channel defaults [maxwen]
f87fd43 base: add more notification channels to blockable [maxwen]
55527ba WiredAccessoryManager: Update stream index assignment [Harold Tan]
106ee64 WiredAccessoryManager: use dev index from UEventInfo to form devPath [Harold Tan]
2934195 WiredAccessoryManager: Update display port device index [Aniket Kumar Lata]
60040db WiredAccessoryManager: support for multiple display ports [Vignesh Kulothungan]
17ac01c audio: update WiredAccessoryManager to use ExtconUEventObserver based on events available [Dhananjay Kumar]
24c9128 WiredAccessoryManager: Support for multiple extconn devices [Haynes Mathew George]
c6c33bd WiredAccessoryManager: update extcon file paths [Aalique Grahame]
c2a5eab WiredAccessoryManager: Add support for DisplayPort Audio [Revathi Uddaraju]
03f5771b Revert "SystemUI: theme: Log generated colors" [Sarthak Roy]
65bdadf base: SystemUI: fix 100% AOD battery bar [maxwen]
2b96a2b Show infinity for large notification counts [d34d]
2538d31 Wire up default fonts with font engine [Pranav Vashi]
7d0a73a Fonts: Add regular / light font config [Pranav Vashi]
4b81777 base: Export bodyFontFamily and bodyFontFamilyMedium symbols [Pranav Vashi]
c19e6de base: dont enter POLICY_DIM if diming is not wanted [maxwen]
4e59d2e base: SystemUI: Make Privacy Indicators better [Maitreya29]
4bdffb5 Status bar: Update notification count overlay [Fran Palmero]
bfaeacd Status bar: Update notification count icons [XXMrHyde]
afae4da SystemUI: Forward-port notification counters [1/2] [Steve Kondik]
a3bf25b SystemUI: Ambient Display battery toggle [1/2] [Ali B]
42e9bfb SystemUI: Add a top margin for the battery bar. [spezi77]
2513d7c SystemUI: Color the battery bar red when the level drops to 15%. [spezi77]
4be54f5 SystemUI: Also show the battery bar if the battery is not charging. * Only show it while in doze mode (Ambient/AoD) [spezi77]
fb6ee9d SystemUI: keyguard battery bar in aod on charging [1/2] [maxwen]
99501db Add missing CHANGE_CONFIGURATION permission [NurKeinNeid]
9ec2530 base: Expose system icon area weight [Anushek Prasal]
32b437f6 Language toggle QS [SpiritCroc]
ff23d77 SystemUI: DerpSpaceTile: make us secure [Ali B]
51390b1 SystemUI: Change secondary label for DerpSpace QS tile [NurKeinNeid]
c58e712 DerpSpaceTile: Make default state active [NurKeinNeid]
ea2115e QS: Add DerpSpace Tile [spezi77]
9f26d11 SystemUI: custom lockscreen shortcut fixes [maxwen]
1b5d89d SystemUI: fix creation of custom lockscreen shortcuts [maxwen]
41c1bf3 Ambient Music Ticker - Allow to pulse on new tracks [1/2] [ezio84]
2739d28 QSPanel: Don't crash when not using media player [Ido Ben-Hur]
a515162 SystemUI: Correctly update brightness slider settings [Ido Ben-Hur]
0980a69 base: QS brightness slider settings: tunables -> Settings [Ido Ben-Hur]
93795f9 SystemUI: QSAnimator: Properly animate bottom brightness slider [Ido Ben-Hur]
b042ad8 BrightnessMirrorController: Don't show auto brightness icon when it's disabled [Ido Ben-Hur]
1a1fa54 [SQUASH] SystemUI: Port brightness slider changes [SagarMakhar]
7880f56 Revert "Remove QQS brightness controller" [NurKeinNeid]
f55edc0 Revert "Fixing not responsive tiles in split shade" [NurKeinNeid]
9e3bbfa DisplayModeDirector: Make sure we apply refresh rate on startup [Ido Ben-Hur]
df03dd1 SystemUI: Make media view less-gore when artwork bg is enabled [Nauval Rizky]
20293e7 [SQUASH] SystemUI: media notification background customisations[1/2] [TikkiTikki]
578f7cf Lockscreen no blur option: fix SysUI FC [ezio84]
b09e334 SystemUI: Disable all-caps for smart reply button text [Adithya R]
8020751 SettingsProvider: grant device config permissions [Ali B]
ba14187 Battery Styles: Fix percentage view on landscape battery [Pranav Vashi]
a7bdffb Battery Styles: Fix landscape battery size [Pranav Vashi]
9470957 SystemUI: Introduce Battery Landscape [1/2] [703joko]
04dc462 [SQUASH] Bring back Udfps icons and animations [1/3] [SagarMakhar]
e642952 Link dialog radius to config_dialogCornerRadius [Lucchetto]
830a7ce graphics: Override system fonts with user-selected overlays [Danny Lin]
1213997 fixup! Allow doubletap/longpress power to toggle torch [Soo-Hwan Na]
3c7c281 SystemUI: Expose camera, location and microphone icons to Tuner [Bruno Martins]
6356379 SystemUI: status bar mobile indicator - code sharing is caring [maxwen]
868a33f Add ability to toggle bluetooth battery level [1/2] [Pranav Vashi]
9009f3c Burn-InProtection: Add enable and interval switches [1/2] [mydongistiny]
2009b5c base: Enable burn-in protection by default [Adhitya Mohan]
72a8399 SystemUI: Implement burn-in protection for status/navbar [Park Ju Hyung]
182741d NotificationPanelViewController: Fix DT2S gesture handling [Arian]
93a22d4 Overlays: Add acherus icon pack [Pranav]
49c96fc Introduce PUI iconpack [spkal01]
92664c3 services: fonts: use a simple sha512 hash based file verification system [jhonboy121]
c969ecd Fix build warning of Supported source version being RELEASE_8 [Tari Bence]
65d1305 SoundPool: Update queue only if streamID matches [Andy Hung]
beaf193 RefreshRatePolicy: set both min and max refresh rate when camera is used [Ady Abraham]
26c3cbe Fix: if anrApp is null, Null pointer exception occurred, Anr trace capture failed [wangchende]
1e1983c Make sure we close system dialogs on the thread which it's created [wangmingming1]
d5c569f SystemUI: Allow toggling combined signal icons [1/2] [acras01]
3e4ddd1 base: Properly regenerate the share drawable. [Sourajit Karmakar]
323f726 QSPanel: Don't crash when not using media player [Ido Ben-Hur]
f5ac7f9 timedetector: Disable lower bound check [alibei]
1308048 SystemUI: Pass lock pattern size to biometrics auth [LuK1337]
317b8e0 SystemUI: LS Hide Shortcut must hide all shortcuts not just defaults [SuperDroidBond]
aa54736 base: allow hiding lockscreen shortcuts on secure lockscreen [1/2] [maxwen]
7faf702b LockscreenShortcuts: enable default shortcuts [xyyx]
06830ff SettingsProvider: Resolve package name that requires permission [neobuddy89]
305cb18 NotificationLightsView: refactor wallpaper color mode [jhonboy121]
6760671 SystemUI: cleanup pulse layout and drawable [jhonboy121]
bb4e69f NotificationPanelViewController: set FLAG_IMMUTABLE for edge lightning [jhonboy121]
f1fc426 base: Fix edge lights when sensitive notification content is hidden on keyguard [Ido Ben-Hur]
9fe4a51 base: Only allow edge lights on AOD when AOD is enabled [1/2] [Ido Ben-Hur]
0757c07 base: Ensure edge lightning is off when we are done with repeats [Ido Ben-Hur]
e5c3582 base: Allow using wallpaper color for notification pulse [Ido Ben-Hur]
e294bff base: Add animation duration & repeat count for notification pulse [Ido Ben-Hur]
55225d4 base: Reorganize light pulse color options in one setting [Ido Ben-Hur]
8078b02 SystemUI: fix notification light pulse for repeating notifications [maxwen]
74b30bd SystemUI: fix possible case where aod stays on after notification pulse [maxwen]
e5a0c2da base: Support using notification color for pulse light [maxwen]
ead652b SystemUI: day 0 notification light pulse fixes [Marko Man]
7b771da base: Add custom color to ambient pulse notification lights [Marko Man]
134b0a5 base: Add timeout for ambient notification pulse [Marko Man]
ee7c1ec SystemUI: Add Ambient Lights always on hide aod content option [Marko Man]
a2ce905 base: Cleanup notification pulse values [maxwen]
f581574 SystemUI: replace pulse light drawable with our own vector [Marko Man]
95b2b2b SystemUI: kill any leftover notification pulse on new pulse start [maxwen]
548f38b base: Pulse light accent color option [Marko Man]
dbdecbb base: Trigger pulse light only for notifications [maxwen]
3ca5352 base: add Pulse and Ambient notification bars [kldoc]
f423972 SystemUI: Allow Configuring Navbar Radius [spkal01]
4666524 biometrics: allow to disable unused fingerprints cleanup [Roman Rihter]
f7662b6 ActivityThread: Remove Failed to find provider info logspam [Immanuel Raj]
de4877e Reduce NotificationHistoryDatabase logspam [SpiritCroc]
c50b6ac PowerUI: Mute logcat spam. [spezi77]
e181b05 derpUtils: Adapt WiFi only check to A12 [AshutoshSundresh]
cb9d327 TwilightService: Save and use last fetched location [Ido Ben-Hur]
6eb9b02 TwilightService: Use temporary TwilightState when location is not available [rituj]
79c8525 SystemUI: QS: SoundTile: Don't toggle DND [AnkitGourav]
1929cae Make Quick Unlock compatible with long PIN/Password [1/2] [Hikari-no-Tenshi]
35b9f6a SystemUI: Update SoundTile [Ali B]
995add9 overlays: declare the right overlay category [jhonboy121]
b474173 overlays: oos: Add dummy icons to fix preview [Pranav Vashi]
47c852e overlays: oos: Adjust width and height for dnd and vibrate icons [jhonboy121]
df061d1 overlays: oos: Add statusbar bluetooth icons [imjyotiraditya]
9b5fbaf overlays: oos: Fix edit icon color in Settings [AshutoshSundresh]
2300f90 overlays: Add an OxygenOS icon pack [AshutoshSundresh]
c245043 overlays: fixup themepicker package name for IconPacks [Omkar Chandorkar]
d135e15 overlays: fixup launcher package name for P20 icons [Omkar Chandorkar]
c0f9e8f base: TtsEngines: fix yet another NPE [jhonboy121]
292793a TtsEngines: avoid crashes caused by null engine name [Oliver Scott]
c427dd5 IconPack{Kai,Victor}: Fix clock icon [DarkJoker360]
f02ee95 IconPack{Sam,Victor}: Inverse vol collapse/expand anim path data [Dhina17]
1bdfcd9 SystemUI: Fix size of icon of vibrate ringer mode for additional icon packs [Volodymyr Zhdanov]
590204d overlays: Unify icon packs category name [Adithya R]
0d32412 overlays: bring back icon packs [jhonboy121]
74547be base: Set ic_avatar_user and ic_avatar_guest_user to follow system accent [elpaablo]
119a7c0 InterruptionStateProvider: disable debugging [jhonboy121]
0eb2dc6 base: add missing device config permissions for settings [Ali B]
b05dbd8 ScreenshotTile: Make default state inactive [Anushek Prasal]
05aecb5 ScreenshotTile: Use secondary label to indicate mode [Anushek Prasal]
c210a98 SystemUI: VPN tile: Collapse panel when opening app [George Zacharia]
46c6489 BatteryMeterView: fix logcat warning spam [limoniumstatice]
b24864c GpsNetInitiatedHandler: Disable more debugging [Chet Kener]
ea46cce core: Update some permission drawables [Anushek Prasal]
4d96e44 base: Vectorize stat_sys_data_usb [Anushek Prasal]
cec5971 core: Smoother Upload and Download Animation [Muhammed Nazim]
ad87b2c SystemUI: Fix uneven DND icon padding in status bar [Ido Ben-Hur]
8598f2b NetworkStatsHistory: Prevent IllegalArgumentException [Henrique Silva]
c633f1d NfcA: Fix an NPE in constructor [Guche Mantuano]
f353815 core: Update GPS Icons to be more Material [Chet Kener]
a987469 Keyguard: reduce bottom text size [Marko Man]
534f17c SystemUI: disable KeyguardConstants DEBUG [maxwen]
09ec069 Screenshot tile: improve code [ezio84]
d976e55 ListView: Disable dividers by default [Pranav Vashi]
c274629 AOD: Sleep when proximity is covered for 3 secs [PMS22]
6dee99e QuickStatusBarHeader: Only disable battery click when needed [Ido Ben-Hur]
785aac3 QuickStatusBarHeader: Tap battery icon to open battery settings [Ido Ben-Hur]
66c4bd3 QuickStatusBarHeader: Adapt date & clock click actions to r18 [Ido Ben-Hur]
fd67d9a QuickStatusBarHeader: Add date & clock click actions [Ido Ben-Hur]
ad059eb SystemUI: allow changing the length of gesture navbar [1/2] [jhonboy121]
96e093c base: allow hiding navbar [1/3] [jhonboy121]
f0ddece SystemUI: Don't confuse rotation with orientation [maxwen]
52bf8f2 base: Double tap to trigger doze [1/2] [SKULSHADY]
8c500f1 SystemUI: Dismiss keyguard on boot if disabled by current profile [Gabriele M]
14df1b4 keyguard: Do not trigger a wake up when hiding lockscreen [Arne Coucheron]
40acc0f6 base: dont call roundStorageSize on Storage API for getting sizes [maxwen]
a3dba92 base: Allow toggling footer running services icon [1/2] [Ido Ben-Hur]
3b586cb base: Allow opening Running Services from QS panel [1/2] [ezio84]
8a2cfba QSFooter: Launch DerpSpace when long clicking settings [Ido Ben-Hur]
3fa3876 Screenrecord: Update custom settings dialog drawables [Ido Ben-Hur]
2244771 fixup SystemUI: Allow customizing footer text [Ido Ben-Hur]
ea1e73e SystemUI: Allow customizing footer text [1/2] [Ido Ben-Hur]
06748da base: Allow toggling QS footer text [1/2] [Ido Ben-Hur]
f448b0d derpUtils: Import restart systemui api [SpiritCroc]
8c749fb derpUtils: Add method to detect whether overlay is enabled [Alex Cruz]
2c054f8 SystemUI: CompassTile: Add a device supports compass check [PMS22]
5620d91 Disable long click for Compass tile [Pranav Vashi]
5613210 SystemUI: Add Compass tile [romanbb]
ef846d0 MusicTile: Improve string and state [cjh1249131356]
1a65ecf MusicTile: Clean up redundant code [Pranav Vashi]
7447fdf SystemUI: Add Music Tile [Lars Greiss]
63d2650 Disable long click for SoundSearch tile [Pranav Vashi]
c7528a9 SoundSearchTile: Update intent flags for the apps [ezio84]
64ddd3a SoundSearchTile: Extend the use [El Dainosor]
583ca47 SoundSearchTile: Make default state inactive [Pranav Vashi]
45f6b37 SystemUI: Add Google Sound Search tile [ezio84]
8b28f9e SystemUI: Extend reboot tile to add power off [Pranav Vashi]
b1b45dc SystemUI: Add Reboot/Recovery QS Tile [fusionjack]
1ddb971 SystemUI: Add VPN tile [Danny Baumann]
771236b QS: Add and use Bluetooth Panel instead of full Settings [Joe Maples]
2c69e75 QS: Use Mobile Data panel for CellularTile [Anushek Prasal]
2069703 QS: Add and use Mobile Data panel [Joe Maples]
6bb8c83 SystemUI: Add tile to show volume panel [stofstik]
a9a2e47 battery light: Use config_multicolorled overlay to set battery led color [davidevinavil]
864b747 Notification light: Add an overlay for RGB led [2/2] [dmd79]
d80fe0f Notification light: Fix white color [3/3] [dmd79]
5832a36 Notification light: Remove transparency from default color [dmd79]
5d26e9e Notification light: Fix default color [ezio84]
65328fc Notification light: Allow to customize notification led light [2/2] [ezio84]
9c59642 Battery light: Add customization [1/2] [Rabih Salamey]
71d5541 QuickStatusBarHeader: don't disable estimate mode for centered notch devices [Volodymyr Zhdanov]
8fbfa93 Screenrecord: Bump AVC Level on FHD+ devices [Nauval Rizky]
201f3c1 Screenrecord: Update longer record option layout to the new spec [Nauval Rizky]
1c03134 Screenrecord: Add an option to record for longer [Ido Ben-Hur]
d83e689 Screenrecord: Save and load set preferences [Ido Ben-Hur]
856e914 ScreenRecord: Improve low quality screen record [Pranav Vashi]
a83d82d Screenrecord: Update stop-dot and low-res option to the new spec [Nauval Rizky]
11349c0 Screenrecord: add blinking stop dot and low quality options [ezio84]
bf23c48 SystemUI: DataSwitchTile: update SIMs QS icons [Hernán Castañón Álvarez]
4178817 [SQUASH] base: SystemUI: Introduce DataSwitchTile [Christian Oder]
d0b0d9d SystemUI/Statusbar: Add back big dotted and big circle battery indicator [1/2] [DennySPb]
c090dfb fix up to: DozeSensors: only use proximity sensor if supported [William Bellavance]
8b32132 DozeSensors: only use proximity sensor if supported [Demon000]
970aed3 core: AmbientDisplayConfiguration: make alwaysOnEnabledSetting public [jhonboy121]
17d2592 SystemUI: Add statusbar NFC icon [xyyx]
a779d31 Add deep sleep info to uptime preference [maxwen]
a7d3aa3 SystemUI: allow dark theme coloring of power dialog [maxwen]
eb2e521 SystemUI: use proper themed divider in notification channel editor dialog [maxwen]
afc31ba base: check whether device is charging when alwaysOnChargingEnabled is called [jhonboy121]
4604258 SystemUI: AODTile: disable when power save mode is on [shagbag913]
a7d2301 SystemUI: AODTile: Open LS display settings on long click [shagbag913]
74e892d SystemUI: AODTile: cycle through AOD states [shagbag913]
4d9417b SystemUI: AODTile: Add back config check for aod available [maxwen]
c99b87e base: add option to enable AOD on charging only [1/2] [darkobas]
b45b807 base: SystemUI: add qs AOD tile [Marko Man]
2cecd7b Always show APN settings on CDMA carriers [flawedworld]
7e38071 telephony: show ICCID by default for all [Omkar Chandorkar]
2953576 SettingsLib: Update 4G+ icon to Silk design as well [TH779]
2b84526 ScreenOff torch: Allow to disable torch when screen is on [DennySPb]
27685c6 Allow doubletap/longpress power to toggle torch [1/2] [ezio84]
674a2f3 base: allow toggling location privacy indicator[1/2] [jhonboy121]
85cbfd4 SystemUI: Allow tri-state dialog extra padding to be overriden [Chris Crump]
b15e6b2 Alert Slider: Improve layout [Pranav Vashi]
f83dc0d Alert Slider: Add toggle to disable notifications [1/2] [Pranav Vashi]
edd83c2 Alert slider: Use default position behaviour if position not specified in intent [Hikari-no-Tenshi]
75dbcd6 Alert slider: Do not hardcode slider position based on ringer mode [Pranav Vashi]
6364c92 Alert slider: Work better with Key Handlers [Pranav Vashi]
097b423 SystemUI: Make tri-state SystemUI dialog dimensions conditional [ZVNexus]
4dc6057 SystemUI: Improve alert slider dialog [Anushek Prasal]
fc14cc1 SystemUI: Introduce user interface for Alert Sliders [Chris Crump]
dccf370 policy: Add support for device alert sliders [thecrazyskull]
39c8c81 services: WindowOrientationListener: bail out if rotation resolver service instance is null [jhonboy121]
b158760 libs: PipTaskOrganizer: do not start fade out animation for pip if surfacecontrol leash is null [jhonboy121]
dcf5bf5 SystemUI: Allow snoozing SD card notification unconditionally [LuK1337]
740b174 SystemUI: Add toggle to disable battery estimates in QS [1/2] [SKULSHADY]
0dbe2e5 Allow changing monet settings from DerpSpace [1/2] [SagarMakhar]
2c251da Fix protected broadcast error for doze intents [ezio84]
477b85d Treat default value that wasn't found as empty value [Danny Baumann]
f756da4 Hide battery options in statubar tuner [ShubhamB]
c4d6cd4 Make "Require unlocking to use sensitive QS tiles" optional [1/2] [SagarMakhar]
9c1d3c0 SystemUI: Require unlocking to use sensitive QS tiles [Danny Lin]
d1d85cd FodUtils => UdfpsUtils [SagarMakhar]
52d1227 Fix QS clock being white on light theme [SagarMakhar]
f578db0 Fixup legacy toast icon visibility [SagarMakhar]
3318a30 SystemUI: Fix paddings [SagarMakhar]
088278f Make DPC respect overlaid min/max brightness values [SagarMakhar]
7f55d20 Match legacy toast view with SystemUI [SagarMakhar]
f459f7b Add back more battery bar locations [1/2] [SpiritCroc]
5bc46ad Battery icon: fix signal icon padding when using Hidden style [Ezio Lacandia Bijelkic]
ed86a3c Battery icon: fix requestLayout() calls spam when in lockscreen [ezio84]
4f03f55 Battery options cleanup [1/2] [Ezio Lacandia Bijelkic]
88fe80a Battery Styles: Remove unneeded function parameter in BatteryMeterView [Nicolas Dhouailly]
6c49755 Battery Styles: Introduce full circle battery style [Christian Oder]
c36ff62 Battery Styles: Hide plus when showing battery percentage inside icon [Christian Oder]
c70c994 Battery Styles: Readd dotted Circle to Kotlin impl [Christian Oder]
9285a54 Battery Styles: Show a bolt ⚡ when charging [ezio84]
8c75fb20 Battery Styles: Bring back good ol' circle battery style [Luca Stefani]
8fac745 base: Add toggle to disable charging animation [1/2] [Anushek Prasal]
6226e08 base: Use wireless charging animation for wired charging too [Anushek Prasal]
1f4d65d SystemUI: Keyguard: Check for a null errString [Scott Warner]
901ec27 Display Turbo charging in battery settings [1/2] [Anushek Prasal]
279a423 Display actual charge tech in battery settings [1/2] [Anushek Prasal]
6a9690b base: LockscreenCharging: Bring in °F/°C toggle [1/2] [calebcabob]
e6a705f SystemUI: keyguard show charging watt [maxwen]
2b678cf KeyguardIndication: fix fc on lockscreen charging info [rohan]
557263b AudioService: Remove Analog Dock from fixed-volume devices [Vachounet]
9ca4766 BatteryManager: Mark battery moto mods constants as hidden [LuK1337]
2ea676d BatteryService: Add support for oem fast charger detection [Alexander Martinz]
f74065a Remove bool dependency for XXX charging. [BoredOutOfMyGit]
6a93b08 BatteryService: Mod: Check against all conditions [Ali B]
fae8486 BatteryService: Add support for battery Moto Mods [Vachounet]
1a93f4b BatteryService: add Turbo power charging support [jhenrique09]
8ae9f6f BatteryService: Add VOOC charging support [karthick111]
1ea857d BatteryService: Add Warp charging support [Anushek Prasal]
5de4c0a Lockscreen charging info: show decimal in battery temperature [Lucchetto]
09b3ecd base: SysUI: update battery charging info [Ali B]
2c5c949 BatteryService: add dash charging support [thecrazyskull]
e090533 base: Lockscreen Charging info (3/3) [xyyx]
1ee93ca Forward port CM Screen Security settings (1/2) [Michael Bestas]
7609adb Update mobile data icon instantly when toggled [SagarMakhar]
b3f0d3d SystemUI: bring back old style mobile data indicators [maxwen]
487ad0d Use alphaoptimized layout for custom icons on left [Pranav Vashi]
ab180ad Properly handle View Visibility for carrierlabel & left clock [Christian Oder]
bf0c99f Carrier Label: Bring back the scroll (marquee) effect [Alex]
c5c5886 Notch friendly carrier label [1/2] [Mazda--]
8465908e Custom Carrier Label & Carrier Label Placement [1/2] [beanstown106]
98a36fa BatteryBar [1/2] [cphelps76]
af2f497 Advanced nav gestures: improve code and fix glitches [ezio84]
2430b5e Extended swipe: show a double arrow when almost triggered [Nico]
de62b79 Allow back swipe on bottom screen if launcher is showing [ezio84]
af43b79 LongSwipeGestures: Vibrate on action if gesture haptic feedback enabled [DennySPB]
7407253 Allow extended/"L" back swipe to trigger actions/app/activities [1/2] [ezio84]
4ee7713 base: Move actions into its own class [SQUASHED] [BoredOutOfMyGit]
3df8acc ActionUtils: Reverse actions for QS and notification panel [ezio84]
4f2cf648 Add api to get or kill foreground app [ezio84]
e88cbe0 [1/2] base: navigation mode settings [maxwen]
40db813 SystemUI: Optional haptic feedback on back gesture [1/2] [DennySPb]
d4a34d7 TelephonyIcons: make new icons public [DennySPb]
54b0ea4 Add Margaritov's style VoWifi Icon [1/2] [blinoff82]
c5b1e85 Add Vivo Vowifi Icon [1/2] [spkal01]
aad7a36 SystemUI: Add Vivo X60 Pro VoLTE Icon [1/2] [AshutoshSundresh]
ff97dff SystemUI: Add 2 more VoLTE icons [1/2] [Advaith Bhat]
1e2cd65 SystemUI: Fix issues with VoWiFi icon [Adithya R]
4ffa87e [SQUASH] SystemUI: Addd more selectable VoWiFi icons [1/2] [DennySPb]
dc74d31 SystemUI: Optional VoWiFi icon [1/2] [DennySPb]
f1beb37 SystemUI: add CAF VoLTE HD icon [1/2] [DennySPB]
22961d1 SystemUI: support VoWIFI icons [Weijie Wang]
c0049ce SystemUI: Add EMUI VoLTE icon [1/2] [DennySPb]
03e544c Add MIUI 11 VoLTE icon [1/2] [Lup Gabriel]
637b4b5 SystemUI: Add Asus VoLTE Icon [1/2] [PainKiller3]
ab7495d VoLTE Icon - User Selectable VoLTE Icon [1/2] [SuperDroidBond]
c640268 Return: Smart Pulldown [1/2] [Lars Greiss]
25fe130 Allow to disable qs footer warnings [1/2] [ezio84]
daf7f1e Lockscreen Visualizer: Add pulse magic [1/2] [Pranav Vashi]
99bb9a78 SystemUI: Add visualizer feature [1/2] [Bruno Martins]
c2af495 Make roaming indicator optional [1/2] [Pranav Vashi]
1f0d0d0 base: Option to Display Data Disabled Indicator Icon [1/2] [varund7726]
6e04394 Fingerprint authentication vibration [1/2] [beanstown106]
7ca922d Allow to disable lockscreen media artwork [beanstown106]
5db6a4f Lockscreen art blur: smaller seekbar range and allow no blur [1/2] [ezio84]
f23bacd Losckreen blur level: code fixes [ezio84]
8c07e78 [1/2] base: configure lock screen media artwork blur level [Marko Man]
4c17e1b derpUtils: Add isVoiceCapableMethod for in-call vibrations [sb6596]
d37e3bf derpUtils: Add new cutouttype method [Ali B]
9d39200 derpUtils: Update notch check logic [Anushek Prasal]
c18e43a [SQUASH] base: introduce network traffic monitor [jhonboy121]
8bac5dd Fix DerpFest Logo from remaining active when notifications arrive [Josh Chasky]
f943032 DerpFest logo in the status bar [1/2] [LorDClockaN]
e24b592 Disable Notifications vibration [1/2] [Pranav Vashi]
7df299a SystemUI: Remove Android build number from QS footer [Danny Lin]
89d602a SystemUI: statusbar clock date customization (1/2) [Lars Greiss]
d26361b base: Add Quick Settings Pulldown options [1/2] [Roman Birg]
22967ae SysUIToast: Remove restrictions on toast app icon [SagarMakhar]
02b494d Toast icon switch [1/2] [LorDClockaN]
6360bc6 Show icon of package associated with Toast [d34d]
0efb8fa Allow using 4G icon instead of LTE [1/2] [Pranav Vashi]
62faa46 Method to detect a notch'd device [Alex Cruz]
2f7582c Add more Utils helpers [Alex Cruz]
bb7a0b9 QuickSettings: Allow changing vibration duration [1/2] [Jason Edson]
893d40d Add interpolators to qs tiles animation [1/2] [Nico60]
5ffaade Add animations to quick settings tiles [1/2] [Nico60]
300c15d QuickSettings: Add Haptic Feedback to tiles [1/2] [Evisceration]
7bb46a2 Keyguard: Forward port lockscreen quick unlock (1/2) [Matt Mower]
e97b491 Scramble pin: fix scrambling after 12L [XeonDead]
5333108 SystemUI: Fix PIN scramble setting discrepancy [Ali B]
3a70d05 Keyguard: Add option to scramble pin layout when unlocking (2/2) [Adnan]
29e7a66 Block annoying statusbar call strength icon [xyyx]
3db04bb Add VOLTE icon toggle [1/2] [SagarMakhar]
0cfb37a [SQUASH] SystemUI: Add support for displaying Volte icon [Weijie Wang]
47c06ef Add back button to demo mode fragment [Alex Cruz]
98787bd Fix custom lockscreen shortcut icons being white [ezio84]
eed0c4e Adapt tuner prefs to S settings style [SagarMakhar]
fcac2cc TunerServiceImpl: Blacklist Settings.System from tuner reset [dianlujitao]
1368354 SystemUI: tuner: Allow Tuner API for System settings [Zhao Wei Liew]
4a1a616 Tuner: Don't clear out prefs, it's not disabled [Joe Maples]
8783e54 TunerService: Prevent NPE with tunable [Pranav Vashi]
bee220a SystemUI: Set proper margin and padding for lockscreen bottom shortcuts [00day0]
77b723e Lockscreen bottom shortcuts fixes [ezio84]
811fd28 base: tuner: add a hide config to left and right shortcut [maxwen]
13b3a21 Run LockscreenFragment external [ezio84]
451ef9b fwb: Seperate statusbar from tuner and launch externally [mydongistiny]
f0a95c9 base: SystemUI: enable tuner and show in DerpSpace [maxwen]
66a9fe7 Fixup: "Update keyguard indication margin when fod is in use" [SagarMakhar]
084b7d5 SystemUI: Update keyguard indication margin when fod is in use [Chris Crump]
ef37b55 Fix black screen issue due to wallpaper decoding exceptions [Weijie Wang]
fee23cc RingtoneManager: Set an default ringtone for the SIM 2 [micky387]
e411c79 base: Phone ringtone setting for Multi SIM device [1/3] [Ting Yu]
c43f531 ParcelFileDescriptor: Stop the panic [Simao Gomes Viana]
386dd57 Fix NPE when AOSP ambient display preference is removed [Alex Cruz]
2e0bc5a Disable cursor drag by default for editable TextViews [Andy CrossGate Yan]
2df5765 Give hardcoded permission for oplus.permission [vjspranav]
4c3744f base: Disable LiveDisplay low power consumption by default [Anushek Prasal]
7eba9d1 core: Disable LiveDisplay display mode by default [Adarsh Grewal]
1a76341 Introduce anti flicker mode in LiveDisplay [Arian]
065e00c SystemUI: Add anti flicker tile [Arian]
17e1dc7 SystemUI: Add reading mode tile [Joey]
566e8fb SystemUI: Add LiveDisplay tile [Steve Kondik]
231be5c SystemUI: Update icon for Heads up tile [Jyotiraditya]
d4935c6 SystemUI: Add heads up tile [Michael Bestas]
c0be2f8 base: SystemUI: rounded_ripple must use corner_size [maxwen]
4d87fde SQLite: Do integrity_check only once [yi.jang]
fba8b1d SQLiteDatabase: Catch corrupt exception during transaction [muzbit.kim]
c95450b base: Add rounded corners to activity open/close animation [paphonb]
b58b223 PackageInstaller: Remove side padding from the dialog [Anushek Prasal]
924bf2a FrameLayout: Fix NPE when view is missing [Pranav Vashi]
708644d AutoFillUI: Don't show a "null" toast [Ido Ben-Hur]
2f829a2 data: Update PackageInstaller/PermissionController whitelist [Jason Edson]
232c12f CarrierConfigManager: Enable payphone call blocking option [Jason Edson]
7a2cd13 EnhancedEstimates: Rewrite estimates in kotlin [Jason Edson]
69c9253 EnhancedEstimates: Get estimates from Device Health Services [Jason Edson]
018e493 AutofillManager: Turn off logging by default [Jason Edson]
e9dc872 Permissions: Grant Download Provider access permissions to external storage [Sagarrokade006]
71b648f Grant Wellbeing the SUSPEND_APPS perm if already declared [Surge Raval]
122d48c Permissions: Grant Personal Safety perms [Joey Huab]
5e4c688 DefaultPermissionGrantPolicy: Silence harmless errors [Pranav Vashi]
55c34c0 Fix android setup permissions [mukesh22584]
552503a Permissions: Grant missing Gapps perms [Stallix]
7283469 Permissions: Grant Google Markup perms [DennySPB]