forked from crdroidandroid/android_vendor_crDroidOTA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog_instantnoodle.txt
2281 lines (2090 loc) · 122 KB
/
changelog_instantnoodle.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
====================
03-08-2021
====================
* device/oneplus/avicii
9f91b74 avicii: Set gain of vibrator to 0x55 on boot
c65933a avicii: hide ringer button above volume slider
9d16387 avicii: Use prebuilt kernel and disable dt2w and touch gestures for now
* device/oneplus/instantnoodle
fa7f715 instantnoodle: Update power profile config
* device/oneplus/instantnoodlep
b09c4a9 instantnoodlep: Update power profile config
* device/oneplus/kebab
995103b kebab: Update power profile config
* device/oneplus/sm8250-common
f33be14 sm8250-common: audio: Switch speaker-dmic-endfire ACDB id to 43
* kernel/oneplus/sm8250
d9591b5442cea Enable TTL mangle target for iptables.
90fc7ce6f5595 Add toggle for disabling newly added USB devices
3f63977fffcb6 input: touchscreen: add gestures haptic feedback control
017752245d8bf Defconfig: Enable Audit
7c023b8248c08 Revert "oneplus: misc: Restore OEM PARAM_READ_WRITE framework"
770f136a342aa qcom: qpnp-fg-gen4: Dehardcode couple properties when not using ext fg
9594c26a0b4e5 bq27541: Return -ENODATA when DASH charging
97350778be22f Implement KCAL color calibration
b52980bd67c87 aw8697: add haptic level adjustment
1a70dbb77d237 input: touchscreen: Expose every possible gesture
51aed5acaecd8 drm: msm: Remove DMS internal mode flag after switching
ecf91f197bef3 drm: msm: Implement codepath variations for cont-splash DMS
10d123cd60bc3 msm/sde: prevent double register of input handler
fa5a52da0037a arm64: dts: Drop ana6706 1080p timings
8645a887cf183 arm64: dts: Switch ana6706 to 1440@120
e7cf1dbf6d171 techpack: audio: Remove Android.{bp,mk}
4ad40eef391b7 headers_lib: rename Android.bp
73f328e145efa Android: Add empty Android.mk file
7ac77a3519ab7 Revert "qcacld-3.0: Update WCNSS config path for OxygenOS"
a8dd57bec818b Revert "scripts/dtc: Update to upstream version v1.6.0-11-g9d7888cbf19c"
====================
03-07-2021
====================
* android
540e7c3 Merge 'lineage-18.1' into 11.0
* art
0b7d26153a Merge 'lineage-18.1' into 11.0
* bionic
886f77d25 Merge 'lineage-18.1' into 11.0
* build/make
4bae91a77 Merge 'lineage-18.1' into 11.0
* build/soong
ae81cb03 Merge 'lineage-18.1' into 11.0
* frameworks/av
93db23255e codec2: Avoid sending input done event for incomplete work
bba4092ccc CameraDeviceClient: fix recognition of Y16 format due to unmatching sizes
7ad37cb21e libstagefright: Use regex patterns for libyuv functions
6cc11b3df5 xmlparser: Add support for parsing target specific xml
dff6a1b38f libcameraservice: add TARGET_CAMERA_NEEDS_CLIENT_INFO
7365c3f4e5 CameraDeviceClient: make mPrivilegedClient static
03612b4966 Camera: Skip stream size check for whitelisted apps.
163c9b7fd3 libcameraservice: Don't pass NULL args on setCallbacks call
30f64bdaa9 av: camera: catch mad hals that mess up buffer time
b5de12ff5d audiopolicy: try again with trimmed audio port name if not found
4ea1e80de9 audiopolicy: No longer make re-assigning legacy audio groups fatal.
3c7d715946 nuplayer: Renderer: force negative media time to zero
c2b405062f Codec2: Initialize InputSurfaceWrapper::Config structure fields
fb7a8cc2bc Nuplayer: Handle a corner case during stop
* frameworks/base
e3cec72149b2 Theme settings dashboard icons [1/3]
aaa2b9f812f2 New Crowdin updates (#611)
c046637a5caf Update Crowdin configuration file
69509ed603ad Add option to vibrate when fully charged [1/2]
dd6f091ac3d1 Battery Fully Charged Sound [1/3]
265f071966ab Fix setType() return value for high angle sensor
21d2fe6b48db Fixed Handler Leak on RecyclerView
8c08e6d2b69b Fixed Handler Leak on WrapperInit
ba4a28e4e6bb Persist screen brightness setting through upgrade
8032ae078e5c KernelWakelockReader: provide class level lock when updates staleStats
62d9ef0d3b05 HwBlob: explicit size check
f838831dd91e Add synchronized to make sure data correctness
abb689c0f345 Prevent going through unnecessary networks
a18030435cb9 Use name instead of package name
76566ff15269 Fix NPE
4c48fc8a4813 Fix guest icon is not clickable after adding user
2751fc0f1428 Fix to attach listener to transient session
4b298b2c7e62 Fix renaming file and moving file issue in MTP
3f94588f867c Fix a possible race condition in updateDynamicSensorList().
c8874a8bcac5 Fixed a race contidion in StorageManagerService
c8df602921cd Catch IllegalStateException when verify APK
520c1f7afb67 Cache stream volumes to prevent ANR
036a7b30169e AMS: Disallow requestSystemServerHeapDump on non-eng builds
feffd38f7cef SystemUI: Fix brightness slider paddings when autobrightness icon is hidden
b178d1ee1ad4 SystemServer: Only enable fd leak tracker on eng
ce660e0b5027 core: jni: Switch to -O3
de7118c56b4e core: Shorten network transition timeout
193193a9863e ViewRootImpl: Set max fling ticks per sec to 24
5262898c1260 AbsSeekBar: Fix growRect computation
2e742ac74665 AbsSeekBarTest: Fix dpToPixel computation
47ed572cd07d IDEClock: Fix preview not displaying
a68f753adeac QS rows&columns: use fixed values if landscape and playing media
4a21c77fd335 base: SystemUI: Allow user to add/remove QS with one click
84186e3c1e50 Clock: Introduce 404 IDE Clock
780a0e827cb3 AutoFillUI: Don't show a "null" toast
52397a169649 SystemUI: use OnePlus drawables for autobrightness icon
7ed286b2a80d SystemUI: Add side paddings for brightness slider
603a0ae34c18 Rename file name for op8 icon
a44843ca181d PebbleBerry: Switch styles [1/4]
160a20e64917 Toast: Add proper handling for toggling icon
81b7506bfd04 Add QS Tile tinting config
df2d82248269 Show toast icon only if enabled
1c1569ebfb41 Add toggle for floating notification dismiss button [1/2]
a7623380194d SystemUI: Introduce OOS style notification clear all button
1584f92565a6 ActivityManagerService: dont be so hectic on cpu battery stats
dc8af4482b6c SystemUI: Add tuner switches for privacy icons
90b08c67dd9b Camera: Ignore torch status update for aux or compsite camera
d7f4ab18aaff Make sensor block package list configurable [1/2]
1f4dbcf5a3f5 base: Add Accelerometer and Linear Acceleration sensors in blocking list
8f46820b55a6 base: Sensor block per-package switch (1/2)
0598c6f90b1b Camera: Don't throw exceptions when value pairs have spaces in them
1bfa1792154a Guard in short-circuit evaluations for stringSplit methods.
902771436842 core: Materialize Toast notifications
3c7fd99f1bb4 base: media_seekbar: make it sexy
7b6988633c31 Bring back "Post a silent notification if screenshot is dismissed"
e1312a30be3d Apply bilinear filter for Ninepatch.
9c1f66b5b3ab Check ProjectBackwards property for childrens after children's syncProperties().
115c36902a69 Fixed to prevent usagestats file corruption when writing
bf2d502f43e3 Allow 0.8 font scale without crashing
e7bbdcb50443 ScreenRecord: Improve low quality screen record
51b66788fb7a Don't change public API
befd71f257f3 Phone ringtone setting for Multi SIM device [1/3]
412bc8db628d Screenrecord: add blinking stop dot and low quality options
06e597050cb1 PebbleBerry: Add QS tile styles [1/3]
0a1515a7f93c Add deep sleep preference controller [1/2]
d5cf9f1934cc Ambient Music Ticker - Allow to pulse on new tracks [1/2]
3f85ced3c067 SystemUI: Allow additional padding for center clock
5590cf0af056 SystemUI: Make center clock follow paddingTop
721d4ef210c9 QSB: Redirect dateview to calender view
b106015354d8 AmbientPulse: Clean up and misc fixes
923619e180b6 AlertSlider: Support slider actions without broadcast from device
77f4fc8b630b AlertSlider: Fix layout for 180 rotation
6b10513618f8 SystemUI: tiles: Open display settings on long clicks for livedisplay tiles
9d5206754cc6 Make using light sensor for pocket lock optional
7cbcb658ba95 Fix statusbar icons padding
fe98d798bfbd SystemUI: add more FOD icons [1/2]
1917ba656564 SystemUI: add more FOD animations [1/3]
a1c17e560c14 AlertSlider: Add more resources
14b9784c41e3 AlertSlider: Prevent crash in case of incomplete broadcast
f82ba50c94a6 base: AlertSlider: update resources
f5563f88e87b AlertSlider: refactor to reflect slider state
b0978809ee6b Alert Slider: Improve layout
baa3b589d326 Alert Slider: Add toggle to disable notifications [1/2]
a31efb53eba0 Alert slider: Use default position behaviour if position not specified in intent
e2bdfb1b5193 Alert slider: Do not hardcode slider position based on ringer mode
1a325e600776 Alert slider: Work better with Key Handlers
19328640a0d5 SystemUI: Make tri-state SystemUI dialog dimensions conditional
55db9ab8a96a SystemUI: Improve alert slider dialog
bb1ea2f68cc2 SystemUI: Introduce user interface for Alert Sliders
21d7fc07e5d5 GlobalScreenshot: Fix old screenshot preview appearing in screenshots
bf7acc29c3a3 GlobalScreenshot: Reduce screenshot dismiss delay to 3 seconds
a18e49a588f8 GlobalScreenshot: Speed up actions expansion animation
958324065a29 Screenshot: Add delete action chip intent
ed7f2a129896 base: Revert secondary home handle
c2771d14acf9 LockIcon: refresh icon on overlay changes
ca6dd572c2c7 Move delete screenrecord strings to allow translations
16c80ba10ed9 base: Add back the delete action for the screen recorder notification.
bd415ec79b2e Allow to suppress notifications sound/vibration if screen is ON [1/2]
cd2437ab2520 SystemUI: Ambient Edge Pulse layout [1/2]
ff7100fe1c86 SystemUI: Allow changing duration of ambient edge light [1/2]
9f95f8b5d848 SystemUI: Replace pulse light drawable with our own vector
13b6c58c00f7 base: Add ambient pulse notification [1/2]
b55852bd3aba QSFooterImpl: Slight improvements and fixes
2d1833f807d2 QS footer icon visibilities [1/2]
f9a117177f7b QSFooterImpl: Animate multiuser avatar
5403e9f2d64c Allow to quickly open Running Services from QS panel [1/2]
833ce2c7c777 SystemUI: Remove tuner icon from QS Panel
31f81f5bbdb1 Extend Pulse to Ambient Screen [1/2]
9c5c8426acad Doze-on-charge: Improvements
58781b0970f8 Add option to enable AOD on charging only [1/2]
4730fba4c444 SmartCharging: Clean up redundant settings define
d02bed70eee2 FOD icon for oneplus 8 series
c8d13d9a6802 SystemUI: Add anti flicker tile
9f507baeb199 QuickStatusBar: Check for privacy chip indicators earlier
97fee5261485 Reload QS tiles after applying tint
3f00340fc9e2 Set custom QS panel columns for QS Customizer too
c3e22ae2bb30 base: Tint QS Tile with accent color [1/2]
14b1fad32630 KeyStore: Report rate limited instead of not implemented
c84b5d5fb3b3 FaceService: save ourselves from NPE
a2eb7de44f07 wm: Passing a new ArraySet instance to avoid crash
ba168a6e72e2 DragSurface: destroy surfacecontrol in view site
3a04661354e2 SystemUI: Face Unlock animation
972306b22ef0 Move Swap capacitive buttons to Settings [1/3]
ec0773f17204 NotificationShadeDepthController: updateShadeBlur if keyguard is going away
046dc2a14503 base: Incall vibration options [1/3]
54add32f11fd PhoneWindowManager: Properly consolidate screenshot function calls
ee197851d0b0 SystemUI: Don't shift KeyguardSecurityContainer when FOD isn't available
874a20af37a4 EdgeBackGestureHandler: Change back gesture height intervals
768f4480ecb0 base: Navigation mode settings [1/2]
140775cceafe Avoid interface name copy in HwParcel
e4f4c2d7b672 Binder interface tokens: remove extra mallocs
ae9d9cad8c5d Avoid potential fd leaks from jniCreateFileDescriptor (2/2)
e771e899f7b2 Avoid potential fd leak from jniCreateFileDescriptor (1/2)
befbce048d90 Avoid allocation on Java Binder fast path
c93d627a10e4 core: Defy usage of NGA in Google Assistant
8bbfe03f7191 NetworkTraffic: Remove screen on/off triggers
9a3aa34f8851 Revert "Revert "Restore preferred activity filter if it not inside""
8744635fc375 Fix black screen issue due to wallpaper decoding exceptions
bba60cffa454 Try to fix upstream status bar+keyguard bug
ae4f478c5de0 SystemUI: QS detail improvements
d56dbb942b41 Add button to AppErrorDialog to upload crash information to dogbin
1b310abde65c base: QS status bar opacity [1/2]
7be24331a4c1 Camera: Skip stream size check for whitelisted apps
9c311f37e286 KeyStore: Block key attestation for Google Play Services
0d46c2515d4a Disable FOD animation if animation resource package not installed
be8ed82a616c Move FOD Animation resources to standalone package [1/2]
79d593b9b84f SystemUI: FOD pressed colors [1/2]
52a2f20d70aa SystemUI: Don't show FOD icon/pad keyguard if strong auth is required
4ee24ffeba1e SystemUI: FOD icon picker [1/2]
752211c9f18b FODCircleView: Hide animation when auth fails
79fde0085668 FODCircleView: changes to FOD circle and animation visibility
1e52ffa4588d fwb: Add screen off fod [1/2]
c9aeb07b8a1f SystemUI: Add OP8T Cyberpunk 2077 FOD animation [1/2]
62f230e5c108 Refactor how FOD Animation is hidden
821a6346aa61 FODAnimation: Check if view is null before adding a new one
973bfd3cadb5 FODAnimation: Allow to set vertical position offset
4e4ee31f2dec SystemUI: Add remaining FOD animations
de4a8a3c298f SystemUI: Separate FODAnimation into it's own class
2b2e15da429f FODCircleView: cleanup FOD animation implementation
6573b0b9bb97 SystemUI: Recognizing FP animation effects [1/2]
b4caa7be86fe FODCircleView: Recognizing fingerprint animation [1/2]
939a3ccaf1d4 Use FodUtils for FOD config checking
5a7f90bda5b9 Revert "FODCircleView: Hide fod while going to sleep"
ea0c69c92a29 iorap: Enable by default
6f8ba93c4aa7 fixup! SystemUI: old style mobile data indicators
bda369355d6b base: Add bool to enable/disable doze by default
c3beb4d95633 Allow tuning ambient display with sensors [1/3]
c9cd36ab71b0 Fix the wrong lastBackgroundTime in UidRecord
735de1359b7b Allow to hide arrow for back gesture [1/2]
704422d2c063 SystemUI: status bar mobile indicator - code sharing is caring
ab52bac22410 base: Allow to use old style icons as default [1/2]
d7d4eadd46f2 SystemUI: old style mobile data indicators [1/2]
ba217d9fce46 SystemUI: SIM PIN1 lock screen abnormal
55ca9b16ad55 MediaCodecInfo: do not alter performance points for 32-bit processes
cd3e1ce86001 MediaCodecInfo: limit resolution to 4K for 32-bit processes
a59b486896d1 base: Properly regenerate the share drawable.
a2038383a352 base: Allow hide gesture navbar [1/3]
0403af935ed5 base: allow customizing the length of gesture navbar [1/3]
8b4545c30806 LS/Nav Pulse: Solid render: Fix another solid render FC
032293d53f9b LS/Nav Pulse: Solid render: fix FC when changing units value
d1eeff9eb22a LS/Nav Pulse: Solid render: fix FC when changing smoothness option
d19ca23ada0b LS/Nav Pulse: Use background ui executor to link the session
b2995f729d24 LS/Nav Pulse: Clean up redundant audio session id
854bdd5f64fe LS/Nav Pulse: Consolidate functions and fix NPE
47944faa9d94 Pulse initial checkin for Android 11 [1/2]
99f4c73aebeb Revert "SystemUI: Add visualizer feature"
4dccb5b6c571 base: Allow switching to drawable for qs icons
87b09e1c72cb SystemUI: Fix display cutout handling in expanding volume panel
e268b8b50ea0 SystemUI: Improve volume panel expansion/contraction animation
3df1f7db9fc2 SystemUI: Fix bug with user_setup_complete setting
b7e5d45593d8 GamingMode: Fix initial value of gaming mode
dbd8036335d6 iorap: Terminate iorapd process when both tracing and prefetching are off.
ac78175f13a9 SFUNY Clock: Add proper preview layout
ca5b1972b921 DividerLines Clock: Fix margin issue in layout
ccb63d76c7ea Typeface Clock: update thumbnail
ab17ba471e7e KeyguardClockPositionAlgorithm: Allow forcing default clockY positioning
82c7236749c8 SystemUI: fix binary clock update
424cf40e0a4d Add a Tux clock controller
405cc2550206 Add time refresh capabilities for bold, digital and Samsung lockscreen clocks
89a2ffecac9b SamsungHighlight Clock: Improve layout
61a7d6614c11 Add SamsungHighlight clock
df031cf80fc6 MNML Clock: Add proper preview layout
e7011530f07a MNMLBox Clock: Clean up hacky layouts
82384eb70e41 Add MNML based clock desgins
9610182ae128 Add SFUNY clock
7b0023fe5cf9 DividedLines Clock: Add proper preview layout
d9c45beee61e DividerLines Clock: Set 24-hr time format as well
ab0bc7af0dda Add DividedLines Clock
105e8fdf1d42 Add center style Typographic clock
13a0034e4c0d SystemUI: Improve Samsung clock layout
eb09abb9ee83 Introduce bold digital and Samsung like lockscreen clocks
e94935be2bfb Keyguard: add binary custom clock face
d34b5080d2f9 TypeClock: Properly calculate the height
bb02957285b4 Add TypeClock for translations
df95a8877d5d SystemUI: Restore typographic clock face
58ab5e56ea81 FaceUnlock: Update authentication method
8632d3c6ac2d SystemUI: AssistDisclosure respect device corners
074330a1b002 Language toggle QS
6a55e797db83 Disable long click for Compass tile
fd83eed94374 CompassTile: Add a device supports compass check
409864b488c9 CompassTile: Do not use slashed icon
724584fc1c52 CompassTile: Set default state inactive
8ee010607645 Add Compass tile
af721ba0f0de SoundTile: Make default state inactive
5f1100f3b048 QS: Add Sound tile to Quick Settings
0782bc028db3 RebootTile: Make default state inactive
8ddd6d18e9c6 Extend reboot tile to add power off
155009d273af RebootTile: Fix gradient message display for reboot to recovery
3d7fb119f6bd Add Reboot/Recovery QS Tile
f86bfb0f3cbf SystemUI: Disable blur wakeup animation
d9ed0d98c703 Show USB icon in ADB notification
d42089e63bf3 overlays: Fix inactive state Wifi Icon in Circular,Filled Kai Icon Pack
0eede5c8f94e Navbar: Introduce navbar styles [1/4]
6679e14549ba Toast icon switch [1/2]
2ad7964fa7b9 Fix: No text in toast for RTL layout
c0629a95608d Show icon of package associated with Toast
2f2cc0d7b1c4 Fixed Handler Leak on DistanceClassifier
41e4d05c9a50 FaceUnlock: Drop lockouts completely
8f6a9ca3a460 Fix long click intent for Smart Pixels tile [1/2]
26440fae42ca Smart Pixels: Dynamically register receiver
56b24aee45ef SmartPixels: Add config to enable smartpixels support
0c028ba3626e Add smart pixels [1/2]
9479b44517e1 PocketJudge: allow register vendor pocket sensor
0adabd8983dd PocketLock: fix flickering on animations
199eff414af6 Pocket lock: Add config_pocketModeSupported overlay
9842da63109e SystemUI: Block face authentication when device is in pocket mode
6c0f1386d70a pocket: Reduce sleep timeout for pocket lock
3127084af4db pocket: Use MD2 lock drawable
f55e3e4f6031 Pocket lock improvements
5b920b771a91 pocket: Fix pocket lock view for display cutouts
588161db0f12 pocket: Adjust sleep timeout for pocket lock view to 10 secs
26de982bca7d pocket: introduce pocket bridge
e4b36d15feef PocketService: Adjust light sensor rate to 400ms
207326ead33b pocket: Add hardware acceleration and properly maintain SYSTEM_UI flags
065ea5bef482 policy: introduce pocket lock
f470eaf82009 pocket: introduce pocket judge
7ecb0f849547 Battery light: 100% charged level (1/3)
d1c9f57f2643 Nfc adapter randomly returns null on devices having Nfc
3254dbe6888c Improve NfcAdapter APIs to report correct nfc state
7f219e356b33 base: weather panel improvements
16ac4d6d6524 SystemUI: Uncouple the temperature from the image
d3e9afe8068d base: SwipeToScreenshot: Import MIUI implementation
c6cdab4d0b56 base: Improvements for swipe to screenshot
ac3e9459f033 base: Add three-fingers-swipe to screenshot [1/2]
c717ac8bc8bb base: Smart Charging (1/4)
90e2abc8d531 frameworks: Reset battery stats
4324b1f625e6 Less boring headsup: allow any sms/dialer app set as default by user
277e7d36685c Less boring heads up option [1/2]
2ea57fac98ae Bring back Gaming mode [1/3]
f125cebac69e SystemUI: FPS Info Overlay & Tile
30122de0e9b8 Disable long click for CPU Info tile
632cb0eccd07 QS: Add CPUInfo toggle tile
3a7616fe8568 Add SystemSetting class analogous to SecureSetting
b209d2bd66ec base: add CPU info overlay
2ccf510b4cec SystemUI: update Bluetooth battery level assets.
7fc1277bf0bb SystemUI: Update NFC tile drawable
77689d398f85 SystemUI: FingerprintDialogView: Use accent color instead of teal
0cf7de951b4d Use proper coded alphabet when a contact is written into EF_ADN of USIM.
6ef1c4313789 Use mContext directly
0c0c69f5331c Fix NetworkPolicyManagerService deadlock
eb3c0aa6ad7c Properly set fonts and icons on keyguard when changing styles
c1b6a0d45648 VibratorService: implement OnePlus proprietary vibrator format
45deaee883a5 Adaptive Playback: Convert to seconds
97a6f2340ecc SystemUI: Introduce Adaptive Playback [1/2]
37ad533c64c1 Volume dialog timeout (1/2)
dea5984bb253 Live Volume Steps [1/2]
ff118a858d51 Disable/Enable screenshot sound [1/2]
34c49fbe05da power: Re-introduce custom charging sounds
c9fcdf7eb33a overlays: Extend prev commit to Google's new icon packs
f5ac3414ae87 overlays: Fix background colouring for settings themed icons
97b58ca01bde SystemUI: Update automatic brightness drawables
16167fa6b186 Navbar: Switch gesture navbar to new navigation bar key event source
104349f6fa55 NPMS lock improvement.
5c14334226b5 Improve notification/headsup group header layouts
9575e40d406b SystemUI: Move charging animation above FOD icon if In-display fingerprint is active
6fef2dc32c68 SystemUI: Update keyguard indication margin when fod is in use
e7aa1e8cf214 KeyguardUpdateMonitor: Fix race condition before listening for biometrics
aa004a9d1c79 SystemUI: Allow listening for face only on pin/pass view
7290d8cefc54 base: add more notification channels to blockable
7c9926c06a77 base: fix google copy pasta error :)
e24401f78190 Base: fix facelock crash when lock screen is disabled
947478d63a20 Keyguard: Actually kill the Fancy Colon
cdd9665389ee SystemUI: Fix SystemUI Crash
7cdca1c46e17 SystemUI: thread protect keyguard callbacks
b7253672fd7b BatteryService: Add VOOC charging support
0b8bb25fc4f7 BatteryService: Add Warp charging support
83d7b5c603f2 BatteryService: add dash charging support
4edde589ae1c DisplayManager: Fix synchronization issue
0e5faf7c3fa7 CarrierConfigManager: Enable payphone call blocking option
08946161d12b Port face unlock feature
326a2c994198 base: fix tapered rect overlay
c297570eeb89 base: Supress telephony crashing platform
b57f66ab53af Fix NPE with void android.view.VelocityTracker.clear()
4de4d8b9b71d Fonts: Restore light font styling of AOSP
8fdefb2ca55e Fonts: Add regular / light font config
ff4c93b26e0e Update default config for headline fonts
41a428309506 Wire up default fonts with font engine
2a4cb981b4c8 base: Add more custom actions [1/3]
7a9e41f8a75d base: Add device key action to expand notifications panel [1/3]
df3670eed70c base: Add device key action to Clear all notifications [1/3]
b1630824e907 base: Add device key action to toggle volume panel [2/3]
421cdb7dbe16 Utils: Add toggleVolumePanel action
9038745669b0 Add device key action to take screenshot [2/3]
0b102cb1d0bc Add device key action to toggle flashlight [2/3]
de1da22cc253 Add api to toggle flashlight
4305ccb89441 Add customizable action for back long press button [2/3]
757dfbcd3bac PhoneWindowManager: Clean up arguements in MSG_CAMERA_LONG_PRESS
6752547ff541 Add device key action to kill app [2/3]
fc36b47d2f55 base: Micro optimization for accidental touch prevention
* frameworks/native
a6457e6d9 InputDispatcher: allow to intercept a specific event key
0ab3cce45 Check for focused window before raising 'no focused window' ANR
acbcc8c10 Check window token when extending timeout
af6efab56 Ensure mNoFocusedWindowTimeoutTime is null when new Focused Window come
7032dc1d5 SurfaceFlinger: VSyncPredictor should be robust with inconsistent vsyncs
2f7c7cfd9 libbinder: writeInterfaceToken char16_t* variant
7d05097cd libbinder - avoid pthread_cond_broadcast per call
b343e0390 gralloc4: fix PlaneLayout encode typecasting
c4f54c7da libbinder: support inheriting realtime priority
ceef6105f sf: Validate layer bound before access
9bcef3927 RenderEngine: Rev down blur filter shader when device is legacy
a4644cbe5 SurfaceFlinger: use TFD_TIMER_ABSTIME for VSP timer
9f047b105 touch response optimizations
e27973361 Add dalvik-heap device configs for 8/12/16 GiB devices
dd513edcb SF: Add retry to EventThread postEvent
* frameworks/opt/net/wifi
b31aee63c Merge 'lineage-18.1' into 11.0
* frameworks/opt/telephony
9f153dbad Merge 'lineage-18.1' into 11.0
* hardware/interfaces
c790e5264 Merge 'lineage-18.1' into 11.0
* kernel/oneplus/sm7250
904cb1ed69d2 touchscreen: Enable all the gestures
1b0271a6fe39 Revert "selinux: Relocate ss_initialized and selinux_enforcing to separate 4k"
691c4de3ea09 arm64: dts: lito: Don't ratelimit userspace kmsg logging
e898518d13cb arm64: dts: lito: Disable broken IRQ detection
e67fc38adc4f arm64: dts: lito: Power off DSI PHY during idle PC
84ec07b97cfb arm64: dts: lito: Optimize frequency tables and energy model
f748778eea81 arm64: dts: lito: Add full CPU frequency tables
7a5469853097 cpufreq: qcom-hw: Allow overriding CPU frequency tables in DT
728c4d0d62ba techpack: audio: Remove build timestamps
c03e554cc79d arm64: dts: lito: Allow big cluster to idle in USB perf mode
cf096bb817cc disp: msm: sde: Only clear dim layers when necessary
46bd2f3f39fa lito-perf_defconfig: Configure optimal min CPU freqs for sm7250
e3e245b6aca1 cpufreq: Allow configuring default minimum frequencies in Kconfig
e2ac2641e0e2 lito-perf_defconfig: Configure CPU cluster masks for lito (sm7250)
8a77136ebb50 cpumask: Add cpumask for the Prime CPU cluster
6296c58db56b cpumask: Add cpumasks for big and LITTLE CPU clusters
a25d9bcdaf92 arm64: dts: lito: Remove display ramdump memory region
58a8732244f6 arm64: dts: lito: Remove useless 40 MiB memory dump region
0ba809c32771 cpuidle: don't disable cpuidle when entering suspend
0c18bfd0c945 arm64: lse: Prefetch operands to speed up atomic operations
6d158382b96f lito-perf_defconfig: Regenerate
9d2f170fe6a8 FROMLIST: arm64: kernel: implement fast refcount checking
09242693eb12 arm64: debug: Separate debug hooks based on target exception level
415700e78cfc cpufreq: Kill userspace CPU boosting entirely
cffc9e030075 cpuidle: lpm-levels: Allow exit latencies equal to target latencies
0d8181669d4c msm: kgsl: Relax CPU latency requirements to save power
570f9f6a60cf qos: Don't allow userspace to impose restrictions on CPU idle levels
20b650a96754 scsi: ufs: Only create one pm_qos object for the IRQ
b7cdb74d40ad scsi: ufs: Only apply pm_qos to the CPU servicing UFS interrupts
be5bf2d5e7cf scsi: ufs: Remove 10 ms CPU idle latency unvote timeout
d7cc59187f02 selinux: Remove audit dependency
084dbf1aca02 regulator: core: Set more descriptive device names
de9987e04d48 UPSTREAM: of: property: Add device link support for pinctrl-0 through pinctrl-8
8e0da9b740fe arm64: dts: lito: Disable expedited RCU grace periods
641cf788b227 proc: cmdline: Patch vbmeta device state flag for SafetyNet
f106a78d744c proc: cmdline: Patch SafetyNet flags
4e680ccaeae8 kernel: Use the stock config for /proc/config.gz
f839ba2e5c51 lito-perf_defconfig: Switch to Simple LMK
53a77e91a63c mm: vmpressure: Don't export tunables to userspace
6eb170bb8174 simple_lmk: Update Kconfig description for VM pressure change
084fd576a321 simple_lmk: Add !PSI dependency
0805eeb2e944 simple_lmk: Print a message when the timeout is reached
538c69eb1d83 VFS: use synchronize_rcu_expedited() in namespace_unlock()
ac8be87b0c6a simple_lmk: Remove unnecessary clean-up when timeout is reached
d40d439c7fc9 simple_lmk: Hold an RCU read lock instead of the tasklist read lock
1d4193cd8918 mm: Don't stop kswapd on a per-node basis when there are no waiters
52a457ce72a0 simple_lmk: Consider all positive adjs when finding victims
3e7d29d77ff4 mm: vmpressure: Ignore allocation orders above PAGE_ALLOC_COSTLY_ORDER
f9538db6188e mm: Don't warn on page allocation failures for OOM-killed processes
1cf0b84d296d mm: Adjust tsk_is_oom_victim() for Simple LMK
baa2c3f5c67d mm: vmpressure: Don't cache the window size
5d00776f7581 mm: vmpressure: Interpret zero scanned pages as 100% pressure
9b54f4215641 mm: vmpressure: Don't exclude any allocation types
4faee61001db simple_lmk: Update adj targeting for Android 10
816fc0889307 simple_lmk: Use vmpressure notifier to trigger kills
57a49891315e mm: vmpressure: account allocstalls only on higher pressures
f611a0bf66e0 mm: vmpressure: scale pressure based on reclaim context
bcffab9f0b4c mm: Stop kswapd early when nothing's waiting for it to free pages
0ece0fb15a79 simple_lmk: Include swap memory usage in the size of victims
cf3d18e3bdfa simple_lmk: Relax memory barriers and clean up some styling
6068a1b9dea2 simple_lmk: Place victims onto SCHED_RR
4abb9c758e88 simple_lmk: Add a timeout to stop waiting for victims to die
823f891ac5ce simple_lmk: Ignore tasks that won't free memory
7c7d6681714b simple_lmk: Simplify tricks used to speed up the death process
e3fcf6369258 simple_lmk: Report mm as freed as soon as exit_mmap() finishes
c294ec74a527 simple_lmk: Mark victim thread group with TIF_MEMDIE
312e8532475d simple_lmk: Disable OOM killer when Simple LMK is enabled
e07cc72bcb87 simple_lmk: Print a message when there are no processes to kill
7f1cf03633de simple_lmk: Remove compat cruft not specific to 4.14
f0952b806f46 simple_lmk: Update copyright to 2020
048aff0be7bb simple_lmk: Don't queue up new reclaim requests during reclaim
c9de6db11fcf simple_lmk: Increase default minfree value
b33735f98213 simple_lmk: Clean up some code style nitpicks
582860acffbe simple_lmk: Make reclaim deterministic
47d52373d771 simple_lmk: Fix broken multicopy atomicity for victims_to_kill
bbf4b7b719f9 simple_lmk: Use proper atomic_* operations where needed
9820b76adbd2 simple_lmk: Remove kthread_should_stop() exit condition
259e28e1ceed simple_lmk: Fix pages_found calculation
60b2e12bbf15 simple_lmk: Introduce Simple Low Memory Killer for Android
57e2c4505505 UPSTREAM: timekeeping: Boot should be boottime for coarse ns accessor
425df84a61f1 UPSTREAM: timekeeping: Add missing _ns functions for coarse accessors
17d4c5caf145 UPSTREAM: crypto: poly1305-x86_64 - Use XORL r32,32
13eaabcb0386 UPSTREAM: crypto: curve25519-x86_64 - Use XORL r32,32
af7a6937b7f7 UPSTREAM: crypto: arm/poly1305 - Add prototype for poly1305_blocks_neon
53b0b68ff4e9 UPSTREAM: crypto: arm/curve25519 - include <linux/scatterlist.h>
7c483cec79f0 UPSTREAM: crypto: x86/curve25519 - Remove unused carry variables
44f3e64701a9 FROMLIST: crypto: arm64/poly1305-neon - reorder PAC authentication with SP update
ff5da45b2f12 UPSTREAM: crypto: arm64/chacha - fix chacha_4block_xor_neon() for big endian
c5a40df8eda6 UPSTREAM: crypto: arm64/chacha - fix hchacha_block_neon() for big endian
c8007c1aa8c9 UPSTREAM: crypto: chacha-generic - fix use as arm64 no-NEON fallback
141385a6cab4 UPSTREAM: crypto: x86/chacha-sse3 - use unaligned loads for state array
b2deb5ffbf60 UPSTREAM: crypto: lib/chacha20poly1305 - Add missing function declaration
42075ad95e54 UPSTREAM: crypto: arch/lib - limit simd usage to 4k chunks
4a37059108bd UPSTREAM: crypto: arm[64]/poly1305 - add artifact to .gitignore files
c62aeb839af7 UPSTREAM: crypto: x86/curve25519 - leave r12 as spare register
337addc7aadb UPSTREAM: crypto: x86/curve25519 - replace with formally verified implementation
e40ac933cd7c UPSTREAM: crypto: arm64/chacha - correctly walk through blocks
6eab3f2fb50f UPSTREAM: crypto: x86/curve25519 - support assemblers with no adx support
87a5309fbc45 UPSTREAM: crypto: chacha20poly1305 - prevent integer overflow on large input
560bd919f32b UPSTREAM: crypto: Kconfig - allow tests to be disabled when manager is disabled
51bd46958938 UPSTREAM: crypto: arm/chacha - fix build failured when kernel mode NEON is disabled
78ff1e4ceaf0 UPSTREAM: crypto: x86/poly1305 - emit does base conversion itself
895ed82ebe7a UPSTREAM: crypto: chacha20poly1305 - add back missing test vectors and test chunking
c4945e1483fb UPSTREAM: crypto: x86/poly1305 - fix .gitignore typo
617549f2213b UPSTREAM: crypto: curve25519 - Fix selftest build error
fb42c3210d18 UPSTREAM: crypto: {arm,arm64,mips}/poly1305 - remove redundant non-reduction from emit
93a2debf7069 UPSTREAM: crypto: x86/poly1305 - wire up faster implementations for kernel
4a2bd53256c2 UPSTREAM: crypto: x86/poly1305 - import unmodified cryptogams implementation
13645995a10a UPSTREAM: crypto: poly1305 - add new 32 and 64-bit generic versions
cfa52720dcea UPSTREAM: crypto: lib/curve25519 - re-add selftests
1b58be28b175 UPSTREAM: crypto: arm/curve25519 - add arch-specific key generation function
b52b83476856 UPSTREAM: crypto: chacha - fix warning message in header file
b39bb607fbb8 UPSTREAM: crypto: arch - conditionalize crypto api in arch glue for lib code
d91341322d0c UPSTREAM: crypto: lib/chacha20poly1305 - use chacha20_crypt()
422b1c6bcc3c UPSTREAM: crypto: x86/chacha - only unregister algorithms if registered
9984a41511ce UPSTREAM: crypto: chacha_generic - remove unnecessary setkey() functions
e20ce818792d UPSTREAM: crypto: lib/chacha20poly1305 - reimplement crypt_from_sg() routine
cdbcd4ea8bb0 UPSTREAM: crypto: chacha20poly1305 - import construction and selftest from Zinc
4d461507a606 UPSTREAM: crypto: arm/curve25519 - wire up NEON implementation
a9064dd5be01 UPSTREAM: crypto: arm/curve25519 - import Bernstein and Schwabe's Curve25519 ARM implementation
05fb991a8974 UPSTREAM: crypto: curve25519 - x86_64 library and KPP implementations
2103765e26e7 UPSTREAM: crypto: lib/curve25519 - work around Clang stack spilling issue
e04651241508 UPSTREAM: crypto: curve25519 - implement generic KPP driver
7a3ace241ef1 UPSTREAM: crypto: curve25519 - add kpp selftest
70b107d80af2 UPSTREAM: crypto: curve25519 - generic C library implementations
cebef58f257f UPSTREAM: crypto: blake2s - x86_64 SIMD implementation
931440a9ead4 UPSTREAM: crypto: blake2s - implement generic shash driver
a581e9c6b5d6 UPSTREAM: crypto: testmgr - add test cases for Blake2s
09015227b153 UPSTREAM: crypto: blake2s - generic C library implementation and selftest
b698742c9f32 UPSTREAM: crypto: mips/poly1305 - incorporate OpenSSL/CRYPTOGAMS optimized implementation
28b82b20f775 UPSTREAM: crypto: arm/poly1305 - incorporate OpenSSL/CRYPTOGAMS NEON implementation
51dcb77afe9f UPSTREAM: crypto: arm64/poly1305 - incorporate OpenSSL/CRYPTOGAMS NEON implementation
24a90855566e UPSTREAM: crypto: x86/poly1305 - expose existing driver as poly1305 library
cfa4a93b5351 UPSTREAM: crypto: x86/poly1305 - depend on generic library not generic shash
33808a07c964 UPSTREAM: crypto: poly1305 - expose init/update/final library interface
4c2ca7beebfe UPSTREAM: crypto: x86/poly1305 - unify Poly1305 state struct with generic code
7b7d0a5ac627 UPSTREAM: crypto: poly1305 - move core routines into a separate library
c4d815bc3cfb UPSTREAM: crypto: chacha - unexport chacha_generic routines
7903536cfb5b UPSTREAM: crypto: mips/chacha - wire up accelerated 32r2 code from Zinc
634f297483b0 UPSTREAM: crypto: mips/chacha - import 32r2 ChaCha code from Zinc
7d772413785b UPSTREAM: crypto: arm/chacha - expose ARM ChaCha routine as library function
c5b905ff4a14 UPSTREAM: crypto: arm/chacha - remove dependency on generic ChaCha driver
12ee3df7e2ef UPSTREAM: crypto: arm/chacha - import Eric Biggers's scalar accelerated ChaCha code
f25453d53ea4 UPSTREAM: crypto: arm64/chacha - expose arm64 ChaCha routine as library function
68aec63d751c UPSTREAM: crypto: arm64/chacha - depend on generic chacha library instead of crypto driver
f1042d5f6fba UPSTREAM: crypto: arm64/chacha - use combined SIMD/ALU routine for more speed
bfd7ab8af664 UPSTREAM: crypto: arm64/chacha - optimize for arbitrary length inputs
c9e11bfe029a UPSTREAM: crypto: x86/chacha - expose SIMD ChaCha routine as library function
8bc02fe52165 UPSTREAM: crypto: x86/chacha - depend on generic chacha library instead of crypto driver
6be19b55e970 UPSTREAM: crypto: chacha - move existing library code into lib/crypto
1f4974e2763b UPSTREAM: crypto: lib - tidy up lib/crypto Kconfig and Makefile
92aaaff686de UPSTREAM: crypto: chacha - constify ctx and iv arguments
50457d6d413a UPSTREAM: crypto: x86/poly1305 - Clear key material from stack in SSE2 variant
4558b213cfd8 UPSTREAM: crypto: xchacha20 - fix comments for test vectors
31e2b4a3e0b8 UPSTREAM: crypto: xchacha - add test vector from XChaCha20 draft RFC
a00f987c0770 UPSTREAM: crypto: arm64/chacha - add XChaCha12 support
78011c468b0e UPSTREAM: crypto: arm64/chacha20 - refactor to allow varying number of rounds
0780bd348c7e UPSTREAM: crypto: arm64/chacha20 - add XChaCha20 support
c15679a5c120 UPSTREAM: crypto: x86/chacha - avoid sleeping under kernel_fpu_begin()
9d3f0ec2f318 UPSTREAM: crypto: x86/chacha - yield the FPU occasionally
d795d38c0c5d UPSTREAM: crypto: x86/chacha - add XChaCha12 support
45687c8a2c70 UPSTREAM: crypto: x86/chacha20 - refactor to allow varying number of rounds
ed27778a1bb2 UPSTREAM: crypto: x86/chacha20 - add XChaCha20 support
fc86d7c4e767 UPSTREAM: crypto: x86/chacha20 - Add a 4-block AVX-512VL variant
169699f88d9b UPSTREAM: crypto: x86/chacha20 - Add a 2-block AVX-512VL variant
7a8755ab2973 UPSTREAM: crypto: x86/chacha20 - Add a 8-block AVX-512VL variant
d2dee951283d UPSTREAM: crypto: x86/chacha20 - Add a 4-block AVX2 variant
064062abb6fe UPSTREAM: crypto: x86/chacha20 - Add a 2-block AVX2 variant
0ecae4117961 UPSTREAM: crypto: x86/chacha20 - Use larger block functions more aggressively
71c4b29fb3af UPSTREAM: crypto: x86/chacha20 - Support partial lengths in 8-block AVX2 variant
1a903fb0f1d1 UPSTREAM: crypto: x86/chacha20 - Support partial lengths in 4-block SSSE3 variant
d098677ba87b UPSTREAM: crypto: x86/chacha20 - Support partial lengths in 1-block SSSE3 variant
b903a2acf871 scripts/dtc: Remove redundant YYLOC global declaration
7e7090089104 dtc: Silence warnings
9ca004ada4c9 lib/string.c: implement stpcpy
921ba16e3a70 StormBreaker Bringup
3946bb2af834 lito-perf_defconfig: Regenerate
1c88c1a5cfe5 bq27541: Return -ENODATA when DASH charging
2e82f9da6b31 Makefile: Fix GCC_TOOLCHAIN_DIR prefix for Clang cross compilation
17dabcfdc226 platform: msm: gsi: Fix symbol versioning failure for gsi_write_channel_scratch
eef46dad7b9a lito-perf_defconfig: Enable CONFIG_SECTION_MISMATCH_WARN_ONLY
469b05529887 Add toggle for disabling newly added USB devices
d45ea2f1d366 input: touchscreen: Expose every possible gesture
67e774e73f2e drm: msm: Remove DMS internal mode flag after switching
67290733a88a drm: msm: Implement codepath variations for cont-splash DMS
6cd6bd5bd8e1 msm/sde: prevent double register of input handler
621c8b1e5d49 defconfig: Enable CONFIG_BUILD_ARM64_DT_OVERLAY
0fbb73b3ecbd headers_lib: rename Android.bp
6b869eebc963 Android: Add empty Android.mk file
8490d6438712 lito-perf_defconfig: Build all modules inside kernel
fef9aadeb57e defconfig: Enable QCACLD
77d0096ff98d drivers: staging: Include qcacld-3.0 source
7ea71c76ea87 qcacld-3.0: Reverse fw-provided mac addr
30e8407a455f qcacld-3.0: Disable build tagging.
61cb6220606b qcacld-3.0: Only call hdd_debugfs_process_mib_stats if debugfs is enabled.
bf384282bc2c qcacld-3.0: Tone down debugging.
068941c7d3a3 qcacld-3.0: Fix regulatory domain country names.
43928164679f qcacld-3.0: Nuke rx_wakelock code entirely.
aedf95d9ea81 qcacld-3.0: Defer HDD initialization.
f1bd269c90c2 qcacld-3.0: Discard wlan_boot sysfs code on !CONFIG_MODULES.
74f986c0b6a5 qcacld-3.0: Initialize variables to avoid errors during compilation.
564d1d46546f qcacld-3.0: Do not manually re-enable -Wmaybe-uninitialized.
37aec9103fc2 qcacld-3.0: Always force user build.
696a4daae1da qcacld-3.0: Nuke Kconfig-based configuration entirely.
772ab4b851a8 cnss2: Add cnss_smmu_unmap API
f119986e6a63 techpack: audio: Build modules inside kernel
38aca899dc2d techpack: makefile: do not export all the variables
eddf5a8e0d9a techpack: audio: Add support to compile statically on lito
2b12e47d8fd2 techpack: audio: Build tfa9894
d113b5bbc22b techpack: audio: Correct symlinks
cee4b55ff190 techpack: audio: Remove Android.{bp,mk}
3fc4f1879e73 techpack: audio: Import OnePlus Changes
a873f66c3f1d Add 'drivers/staging/qcacld-3.0' from commit '4408d6780817e981e370918924f1e22a1742d850'
97780a21191d Add 'drivers/staging/qca-wifi-host-cmn' from commit 'e1d18d14668e58c0fda368b93b0af86d8b11fe29'
c3938e8a5562 Add 'drivers/staging/fw-api' from commit 'ef7945bc4a292c7232ceba5585719ea8ce3af6a2'
aac8152b3b5e Add 'techpack/audio' from commit 'ceda5e46bbf8aff53ef7f3f9585c23c0c09399dd'
09c6efe6499e treewide: Import OnePlus Changes
* libcore
ab9a412dbf Merge tag 'android-11.0.0_r32' into 11.0
* lineage-sdk
bcc701a7 Merge 'lineage-18.1' into 11.0
a7fcf81f Merge 'lineage-18.1' into 11.0
* packages/apps/Contacts
5af73fdd4 Contacts: Fix light dropdown lists on dark theme
90c58fa3a Contacts: Fix light dialogs on dark theme
73f3ed9d9 Contacts: Fix light popup menu on dark theme
97a0f3f62 Contacts: style fast scroll thumb like in Dialer
d888499df Contacts: Do not use accent color for dark style
7b7d379b7 Contacts: add dark mode support
* packages/apps/Dialer
f82951a88 Dialer: Dont change accent color for dark theme
c6b94e213 CallLogFragment: Move Un-registering call log observer to destroy
3a160f4e7 Fix Dialer memory leaks
7882cac16 AospThemeImpl: fully white might NOT be uninitialized!
91bfe23e1 Improve contatcts layout
279f0a8a1 Add ability to set full screen photos for calls
ae29ca197 Dialer: use system round corner values for searchbox
8b738323e Dialer: Fix dark dialogs on light theme
0f7a89066 Dialer: theme fixes
56c7d43c0 Dialer: welcome to night mode
2abf5001f CallRecordingAutoMigrator: Handle all exceptions
3d8b0446b Dialer: Make recording names sortable
296676c9c Add autorecord feature
eb02aa8ed Dialer: Enable call recording for all
90bc244bb Fix selecting phone account dialog show error.
* packages/apps/Launcher3
0d9f9b876 AppsSearchContainerLayout: avoid npe
4793a1dd9 Launcher3: Make strings translatable
16157ff54 Launcher3: Just say "System" instead of "Unknown" for app source
f08644516 Launcher3: Fix up widget theming
bd05a7b1b Launcher3: Do not attempt to show promise icon when info is null
d0b53c839 Launcher3: Fix font family for App Info sheet
6bb69a24f Attempt to open market when clicking on Source in app info
fc20e7d38 Use THREAD_POOL_EXECUTOR for InfoBottomSheet.java
4fbaf244c Extract app metadata in bottom sheet on background thread
49a435a59 Launcher3: Remove separate appinfo icon pack pref
cf79d5b22 Launcher3: Add AppInfo Bottom Sheet from Shade Launcher
d2a77dafb Launcher3: Support more intents for icon pack
644346663 Addd our string for icon pack
5b3662362 New Crowdin updates (#131)
933cc3cf7 Update Crowdin configuration file
2220dc0b1 Launcher3: Add app drawer opacity
f0f82981c Launcher3: Delink font size settings
236f92c92 Launcher3: Use custom seekbar for icon size
1282d167a Launcher3: Import CustomSeekBarPreference from crdroid
b0443f417 Launcher3: Add option to change icon size
433be5def Update string for close app action in recents
51a59e423 QuickEvents: Clean up unused functions and fixes
b5d770b6c Launcher3: Fix IntentFilter leak in QuickEventsController
93b74b8dd Quickspace: Add contextual messages/greetings event
88c459838 Launcher3: Reduce app label text size for 5x5 grid (#116)
ad9591e59 Launcher3: Let's bring back device introduction action
9503624e6 Launcher3: Fix alt double line layout
9ef9d9416 Launcher3: Add alternate Quickspace layout
898955a1e Launcher3: Honor desktop show labels preference for folder icons
e69d53922 Launcher: Fix gesture navigation fail to move to bottom
cefebf128 Launcher3: Use MODEL_EXECUTOR directly
2a6792973 Launcher3: move kill all button in middle
5e1d7c184 Launcher3: Add back button in home settings.
9051db744 Launcher3: Add MANAGE_ACTIVITY_STACKS permission
af03b6b1a Launcher3: Add READ_FRAME_BUFFER permission
23efd21d6 Make double tap to sleep gesture optional
bc29dd72e Launcher3: double tap on home screen to turn off screen
083222f31 QsbContainerView: Fix NPE in preview mode
f479f342d Launcher3: Update default workspace
d82eecebb Launcher3: Use app opening animation for notification opening
7c781ed00 Quickstep: Fix crash in StaggeredWorkspaceAnim
224ed40e8 Quickspace: Use system font
6e28f50fc quickspace: Remove the dividers
b15360cd6 Quickspace: Toggle the Now Playing status
66445a6b1 quickspace: add some subtle spacing
32340afe2 Launcher3: The return of the Now Playing
1735a0485 Add Quick events support in Quickspace
3ea2edccd Launcher3: Introduce Quickspace [squashed]
03143b3fa Launcher3: Extend notification listener with proxy
398752f8c Launcher3: Expose feature flag UI on user builds
3521f0a40 Launcher3: Re-add priv app permissions
495348384 manifest: update usage permissions
30e59451a Launcher3: Add permission to allow updating database
075409298 Recents: add kill app button
6ae4a75fe Launcher3: move clear all button to actions view
ffea8a0f9 Launcher3: Add restart action for toggling settings
c7899c7df Launcher3: Rearrange settings
17ac2d1bb Elevate to 'core/platform' app'
a33b83a37 Launcher3: Use system fonts
3bd6d2576 Launcher3: Fix colors on light style
f6e8f460b Launcher3: Follow system color for dark style
1b11301b1 quickstep: Bump max blur radius to 175 px
fef02a619 Add back button to Settings
f5efddeb0 Launcher3: use common style for recents task menu divider
ba46da969 Launcher3: Let's make the search bar on all apps round
52a4b759e Launcher3: Update adaptive icon
d12d2696b Launcher3: Homecoming
* packages/apps/LineageParts
98ce755 Add support for anti flicker mode in LiveDisplay
7dfee62 Move Swap capacitive buttons to Settings [3/3]
468891e LineageParts: Tweak default charging sound path
1e0dfd6 Disable unused components
1232f51 Charging Sounds: Consider null uri as silent
0d582be Kill redundant search fun party
279f3f8 Make trust interface less boring
c8c7ad8 Add initial crDroid stats support
833f0eb stats: Mod version switched to crdroid version
adbb33f Ship as crDroid based on LOS
* packages/apps/Messaging
adad324 Messaging: fix dark mode ExpandableListView e.g. vcf card attachment
f18b03b Messaging: fix dark theme of settings dialogs
c164aa7 Messaging: use config_dialogCornerRadius for contacts popup
2a02cb8 Messaging: Adapt night mode for new changes
d69601c Dark theme: Clean up
174c348 Messaging: add night mode
85aa8fc Messaging: Add "Mark as read" quick action for message notifications
* packages/apps/Settings
7691e45f95 Theme settings dashboard icons [2/3]
3b80f64ba3 Settings: Use correct icon to reset battery stats
c81198f455 Settings: Reset battery stats [2/2]
aedfb1b3be Battery: show battery temp on power summary
120952cdea Settings: PowerUsageSummary: open advanced usage on header click
1928e91b97 Settings: Battery: tune design
9df6b24c89 Settings: Battery: Redesign BatteryMeterView
0d1c9f1c40 Settings: Fix crash when going back from battery
c18b64857c fuelgauge: add back battery level animation
0bf2f74461 Remove BatteryStatusFeatureProvider and BatteryHeaderPreferenceController
13512b961e InstalledAppDetails: Fix refreshing storage summary after force stop
a763117633 Settings: Move custom density settings to Display
dce08b04de Phone ringtone setting for Multi SIM device [2/3]
f7dc6113fa Add deep sleep preference controller [2/2]
0167e89bc6 Allow to quickly open Running Services from QS panel [2/2]
0d602872e5 Make selectable consistent with prefs on screen
ebc93c28cc AboutDevice: Use ro.product.device
5e7886db19 Settings: Add platform and RAM to Model & Hardware
5bc12a533c Settings: display fstype for mounted volumes
a7ac429ef3 Settings: Show full proc/version information
3a913b6b43 Settings: Add Device codename to Firmware version window
664bbb5947 Fix crash on "Connection preferences"
63419c226a Settings: Match shortcut colors with settings icon
97d8edfcd6 Allow tuning ambient display with sensors [3/3]
b6f631847c Settings: Show media cover art and pulse toggles for lockscreen
a007f0fc40 Settings: Add screen off fod [2/2]
e826dfab85 Settings: Use global fonts in styles
9fa858560d Give new life to reset buttons
3bc60c89e7 NightDisplay Settings: Use List Preference for NightLight settings
5013aea27b Settings: Move blur toggle to Display options.
8ae3e9fba0 Settings: Use actual default refresh rate
e7bbfcd26a Fix long click intent for Smart Pixels tile [2/2]
143a329347 Bring back Gaming mode [2/3]
83e9af966b Settings: Hide AOSP auto-rotate option hide quickly
abaa3c3935 Port face unlock feature
ae4c9a0272 Settings: Fix NPE with customdialogpref for backlight settings
1d23afbb44 Make Quick Unlock compatible with long PIN/Password [2/2]
16165dcb24 Settings: Add back arrow to Desktop backup password
24ad53a238 Settings: fix hardcoded black text in storage summary
124aa45b02 Settings: Fix icon tinting in power detail pages
648f590d07 Settings: Address a memory leak
2d24fff653 Settings: add missing android title for top_level_settings
6b99236c30 Settings: Fix dismissal card bg color
993fc08fe8 Slices: use the same string for BT and Wifi master switch
fa772ab014 panels: Add Bluetooth panel
585496d8f5 QS panels: Improvements
38634af7d6 panels: Add Mobile Data panel
d0ebe1baeb Settings: add back weather parts [2/3]
33401f9ba7 Revert "Settings: adaptive icon"
0f98b7e551 Keyguard: Forward port lockscreen quick unlock (2/2)
764927f3dc Settings: Enable advanced reboot by default
f0dcf7d9d3 Settings: Remove duplicate tap to sleep under display
c1af799699 Settings: show battery times in summary
154f2ac873 AnimationSeekbar: Accept digit vales in the hundredths
2380e57ced Settings: Use seekbar to allow setting arbitrary animation values
7bad64ff8e search: Impliment external searching
7e65dbce1e Port "Battery Usage Alerts" feature from factory images
c9f84326a3 fuelgauge: Fix possible memory leaks
7a740d70ec fuelgauge: Implement Early Warnings
e896609b78 fuelgauge: Use Enhanced Battery Prediction from Turbo
cba0f8523f Open app when clicking on icon in App Info
cfac2f4965 InstalledApp: show link to Google Play
17d818e67b Settings: Add missing gesture and battery animations
f00db9beb7 Settings: Remove all initialExpandedChildrenCount
bfd8c98aec Settings: Make dashboard search bar round like stock
f127f72dae DisplaySettings: font size in 5% steps from 80% to 130%
576d739b4d SlicesDatabaseHelper: Re-index databases when version changes
0608bdfb67 Enable FeatureFlags on "user" builds too
a419ead18a DarkMode Settings: Use List Preference rather ugly Drop Down
e08fc20573 DarkMode Settings: Include pref for selecting dark mode style
c8b068ae87 Settings: Hide settings moved to crdroid
b584e4dc47 Settings: Move gesture settings under crdroid
5f901f1b96 Settings: Integrate crDroidSettings into Settings
50d55ea949 Temp: Hide legal info for now
605a1919ef Settings: Hide lineage black theme toggle
ac84c289d3 Settings: Use crdroid legal url prop
d3915df3d3 Settings: hide automatic system updates preference
e756109e89 Settings: disable all bugreport settings
4d344f2896 Hide API version
782b4e947f Settings: Add back crdroid logo
5b1d539c00 Settings: Disable Google Play system update check
5b54de2d68 Settings: Fix CR version in About menu
* packages/apps/SetupWizard
96d72dc SUW: Use correct updater package
a9472cc SetupWizard: Bring it on our side
57a5e38 Ship as crDroid based on LOS
* packages/apps/ThemePicker
970c8ad Don't trash whole theme when missing icon preview.
3d00fa8 Revert "Hide clock option when there is only 1 option[1/2]"
8ce5e6f Add an exported flag in manifest.
403e5a2 Add LockClockPickerActivity
* packages/apps/WallpaperPicker2
af01e76 WallpaperPicker2: Fix race condition for fast-loading wallpapers
* packages/apps/crDroidSettings
126375bf Theme settings dashboard icons [3/3]
ae67334c crdroid: Add screen off fod strings
* packages/inputmethods/LatinIME
032929abd Add Hardslog light theme
77d0ce31f New theme: BLACKOUT
924277d89 Add new hardslog_dark theme
f0c140551 Revert "LatinIME: Do we really still want Holo?"
46d99e198 Fix NPE in KeyboardTheme
6a805ff4d Change keyboard height
68ec26889 Update rows_east_slavic.xml
d2c9c6c80 Fixing layouts and adding 5th row to QWERTZ.
70c531bc5 Add 5th number row to keyboard.
d8441b83c Latin IME bug with deleted text will reappear after screen orientation changes
c9225b73c LatinIME: Fix to English dictionary can be added after deleting
* packages/services/Telecomm
c13354be Phone ringtone setting for Multi SIM device [3/3]
d445e405 Telecomm: Incall vibration options [2/3]
* prebuilts/clang/host/linux-x86/clang-proton
245df57 Update to 20210306 build
* system/core
3c0c29440 logcat: Mark as recovery_available
84b0fee91 fastboot: Don't fail when unable to get boot partition size
ca081d194 init: Set properties to make SafetyNet pass.
25fd2cdec health: Add CAP_BLOCK_SUSPEND
473020c92 LockscreenCharging: squashed (2/3)
1ddbd9f57 healthd: cover devices that have voltage_max file with value of 0
6e68aae4e init: Weaken property override security for the init extension
805f8b35f Special tombstone delivery
47519d230 Modifying /dev/memcg permissions.
* system/iorap
2616ff2 Merge tag 'android-11.0.0_r32' into 11.0
* system/netd
76a9e86c Merge 'lineage-18.1' into 11.0
* system/security
a4df931 Merge tag 'android-11.0.0_r32' into 11.0
* vendor/lineage
b749ae63 crdroid: Bump to version 7.4
====================
03-06-2021
====================
* device/oneplus/sm8250-common
9d38494 sm8250-common: sepolicy: dontaudit untrusted_app denials
2e7f656 sm8250-common: sepolicy: Address gmscore_app.te denials
d9aee2f sm8250-common: manifest: Label missed entry for vendor.oneplus.fingerprint.extension
f588513 sm8250-common: Build Mock Powerstats HAL
f831ce2 sm8250-common: init: tweak 12gb performance
0c31382 sm8250-common: ueventd: Properly label /sys/kernel/qvr_external_sensor/fd
79c0a5e sm8250-common: Drop no longer existing BluetoothQti
0fa927d sm8250-common: amplifier: Fix device list initializations
e229716 sm8250-common: amplifier: Clean up makefile.
f91ad61 sm8250-common: Add custom audio amplifier for TFA amp feedback
38e998a sm8250-common: Correct media codecs copy destination
* frameworks/base
55e56094d5b6 base: Add accidental touch prevention for assist key
22de3adf4e82 base: Introduce Accidental Touch
fed59da509cc base: Introduce new navigation bar key event source
01707249f9bf Add toggle to disable HW keys [1/2]
a7d5741f988d SystemUI: Hide back icon when screen pinned and gestural mode enabled
071c374a1e6b Add tunables for navbar layout customization [1/2]
c9ba15345d5a Revert "SystemUI: Implement hide gestural navigation hint bar [1/5]"
42900e0c3b12 Make Quick Unlock compatible with long PIN/Password [1/2]
d89ea8fde4f8 audio: Don't play sound effects if stream is muted
d76c248effa3 QS: Add and use Bluetooth Panel instead of full Settings
a2565a064d52 QS: Use Mobile Data panel for CellularTile
4a36d86fe189 QS: Add and use Mobile Data panel
f90620109a41 DataSwitchTile: dont show toast on click
996efdd139ef DataSwitchTile: collapse notification panel onClick
5e4fb0d9ae0b SystemUI: Introduce DataSwitchTile
39fa296b30a4 QS: Use Settings.Panel intent for Volume Tile
ea5e6045d3c6 QS: Use Settings.Panel intents for WiFi and NFC
d752f562b502 AODTile: Improve code
0bd622007c04 DefaultPermissionGrantPolicy: Silence harmless errors
658b4feb486b base: Add permissions for Google Chrome to sign in
875cc81dfb9f base: Grant storage permissions to Google Markup
e1ec1e197549 base: Grant wallpaper permissions to prebuilt wp picker
001fe230c759 base: Grant suspend permission to Wellbeing
411a8ef29fca base: Grant storage permission to ThemePicker
26ace8293275 Fix Google dialer FC due to missing permissions
c82fa0744499 Allow chromium to sign in
524cb441e1ea Fix Google Calendar FC
562454284ecb Fix Fi permissions
8a28cf001250 Fix Android 7.0 GApps permisions which were causing F/C
084679b04a34 base: Add permissions for OmniJaws
0475c72e25ca SystemUI: make qs weather page follow system font setting
b51efe45b0c5 Lockscreen Weather: Improvements
afce07966a3c KeyguardSlice: Fix up changing icon pack
0a2901e45df6 WeatherTile: Do not show if not installed
6b0c2739ac7f base: add keyguard weather style [1/2]
444e93affa19 base: add weather to keyguardSlice
7c6aaa0b54f2 base: keyguard weather view [1/2]
5493afd11988 base: add back weather parts [1/3]
d322738cbf23 Add an option to ask pin for shutdown/reboot on secure lockscreen [1/2]
db5081c4879a Fingerprint authentication vibration [1/2]
9b66b3d63cea Disable PIN entry after successful quick unlock
17e8bbae5bf0 Keyguard: Forward port lockscreen quick unlock (1/2)
82f3fa1f2755 Hide power menu on secure lockscreen [1/2]
adbe5853b849 Disable QS pulldown on secure lockscreen (1/2)
035003964490 Add toggle to hide lock icon on lockscreen [1/2]
f07625c9528f SystemUI: hide lock icon while dozing
f97155f5b25b Add lockscreen battery info as TunerService tunable
f952c85213f9 SystemUI: KG Charging Animation: Add more animations [1/3]
4ae3460fb561 Add toggle for charging animation [1/2]
480f354245af SystemUI: Animate the keyguard when charging
b9c3810765ac Add Lockscreen album art filter [1/2]
ff8c516c8e10 Lockscreen charging info: show decimal in battery temperature
05a2039b508b SystemUI: keyguard show charging watt
e883dbea7231 LockscreenCharging: squashed (1/3)
da03542155fe SettingsLib: Don't show system overlays on apps list
a527238fedea Add toggle to completely hide status bar on lockscreen [1/2]
88128bb10198 Separate double tap to sleep on lockscreen [1/2]
0aa66a23ead6 PebbleBerry: Remove black/white accent check on theme change
e7902163c92a Disable double tap power button camera gesture by default [1/2]
bb811602c0ea AdvancedReboot: Adjust dimensions to match main menu
6ea25a4a3b8e SystemUI: increase global action icon size