forked from crdroidandroid/android_vendor_crDroidOTA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog_hammerhead.txt
1303 lines (1122 loc) · 57.5 KB
/
changelog_hammerhead.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
ighlights & Device Specific Changes:
Build type: Monthly
Device: Google Nexus 5 (hammerhead)
Device maintainer: Hasan Okarci (frazerecho)
VISIT XDA FORUM FOR MORE DETAILS AND JOIN TELEGRAM GROUP FOR SUPPORT
XDA: http://bit.ly/2w6wvmP
Telegram: @crdroid_frazerecho
====================
03-08-2021
====================
* build/soong
2dd28d64a soong: java: Specify larger heap size for metalava
* frameworks/base
e3cec72149b Theme settings dashboard icons [1/3]
* frameworks/native
776356f23 fix hammerhead slow boot animation (#2)
a6a1490c4 Fix hammerhead slow boot animation
* hardware/qcom/display
9edb3ab05 msm8974: display: Add display headers lib
2e6a4ed2a hwc: Validate display ID in hwc interfaces
5f31ab64f msm8974: libmemtrack: Add open method for msm8974.memtrack
75d9ac49e msm8974: hwc: Set ioprio for vsync thread
31835da76 msm8974: IQService: Allow more processes to access IPC
* hardware/qcom/gps
0ef33aa msm8974: Remove obsolete BUILD_TINY_ANDROID check
80e4e4b msm8974: Removing header copying to out folder
* lineage-sdk
bcc701a7 Merge 'lineage-18.1' into 11.0
* 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
* packages/apps/Settings
7691e45f95 Theme settings dashboard icons [2/3]
* packages/apps/crDroidSettings
126375bf Theme settings dashboard icons [3/3]
* system/bt
d33922108 Fix BLE
854375da2 hammerhead: Increase command response timeout delay
====================
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
ae81cb03b Merge 'lineage-18.1' into 11.0
* device/lge/hammerhead
5f18853 Enable FaceAuth when swiping on lockscreen
* device/moto/shamu
714b00991 enable FaceAuth only when swiping lockscreen
* device/oneplus/oneplus3
19bbd928 resolve iorapd denials
* 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
aaa2b9f812f New Crowdin updates (#611)
c046637a5ca Update Crowdin configuration file
69509ed603a Add option to vibrate when fully charged [1/2]
dd6f091ac3d Battery Fully Charged Sound [1/3]
265f071966a Fix setType() return value for high angle sensor
21d2fe6b48d Fixed Handler Leak on RecyclerView
8c08e6d2b69 Fixed Handler Leak on WrapperInit
ba4a28e4e6b Persist screen brightness setting through upgrade
8032ae078e5 KernelWakelockReader: provide class level lock when updates staleStats
62d9ef0d3b0 HwBlob: explicit size check
f838831dd91 Add synchronized to make sure data correctness
abb689c0f34 Prevent going through unnecessary networks
a18030435cb Use name instead of package name
76566ff1526 Fix NPE
4c48fc8a481 Fix guest icon is not clickable after adding user
2751fc0f142 Fix to attach listener to transient session
4b298b2c7e6 Fix renaming file and moving file issue in MTP
3f94588f867 Fix a possible race condition in updateDynamicSensorList().
c8874a8bcac Fixed a race contidion in StorageManagerService
c8df602921c Catch IllegalStateException when verify APK
520c1f7afb6 Cache stream volumes to prevent ANR
036a7b30169 AMS: Disallow requestSystemServerHeapDump on non-eng builds
feffd38f7ce SystemUI: Fix brightness slider paddings when autobrightness icon is hidden
b178d1ee1ad SystemServer: Only enable fd leak tracker on eng
ce660e0b502 core: jni: Switch to -O3
de7118c56b4 core: Shorten network transition timeout
193193a9863 ViewRootImpl: Set max fling ticks per sec to 24
5262898c126 AbsSeekBar: Fix growRect computation
2e742ac7466 AbsSeekBarTest: Fix dpToPixel computation
47ed572cd07 IDEClock: Fix preview not displaying
a68f753adea QS rows&columns: use fixed values if landscape and playing media
4a21c77fd33 base: SystemUI: Allow user to add/remove QS with one click
84186e3c1e5 Clock: Introduce 404 IDE Clock
780a0e827cb AutoFillUI: Don't show a "null" toast
52397a16964 SystemUI: use OnePlus drawables for autobrightness icon
7ed286b2a80 SystemUI: Add side paddings for brightness slider
603a0ae34c1 Rename file name for op8 icon
a44843ca181 PebbleBerry: Switch styles [1/4]
160a20e6491 Toast: Add proper handling for toggling icon
81b7506bfd0 Add QS Tile tinting config
df2d8224826 Show toast icon only if enabled
1c1569ebfb4 Add toggle for floating notification dismiss button [1/2]
a7623380194 SystemUI: Introduce OOS style notification clear all button
1584f92565a ActivityManagerService: dont be so hectic on cpu battery stats
dc8af4482b6 SystemUI: Add tuner switches for privacy icons
90b08c67dd9 Camera: Ignore torch status update for aux or compsite camera
d7f4ab18aaf Make sensor block package list configurable [1/2]
1f4dbcf5a3f base: Add Accelerometer and Linear Acceleration sensors in blocking list
8f46820b55a base: Sensor block per-package switch (1/2)
0598c6f90b1 Camera: Don't throw exceptions when value pairs have spaces in them
1bfa1792154 Guard in short-circuit evaluations for stringSplit methods.
90277143684 core: Materialize Toast notifications
3c7fd99f1bb base: media_seekbar: make it sexy
7b6988633c3 Bring back "Post a silent notification if screenshot is dismissed"
e1312a30be3 Apply bilinear filter for Ninepatch.
9c1f66b5b3a Check ProjectBackwards property for childrens after children's syncProperties().
115c36902a6 Fixed to prevent usagestats file corruption when writing
bf2d502f43e Allow 0.8 font scale without crashing
e7bbdcb5044 ScreenRecord: Improve low quality screen record
51b66788fb7 Don't change public API
befd71f257f Phone ringtone setting for Multi SIM device [1/3]
412bc8db628 Screenrecord: add blinking stop dot and low quality options
06e597050cb PebbleBerry: Add QS tile styles [1/3]
0a1515a7f93 Add deep sleep preference controller [1/2]
d5cf9f1934c Ambient Music Ticker - Allow to pulse on new tracks [1/2]
3f85ced3c06 SystemUI: Allow additional padding for center clock
5590cf0af05 SystemUI: Make center clock follow paddingTop
721d4ef210c QSB: Redirect dateview to calender view
b106015354d AmbientPulse: Clean up and misc fixes
923619e180b AlertSlider: Support slider actions without broadcast from device
77f4fc8b630 AlertSlider: Fix layout for 180 rotation
6b10513618f SystemUI: tiles: Open display settings on long clicks for livedisplay tiles
9d5206754cc Make using light sensor for pocket lock optional
7cbcb658ba9 Fix statusbar icons padding
fe98d798bfb SystemUI: add more FOD icons [1/2]
1917ba65656 SystemUI: add more FOD animations [1/3]
a1c17e560c1 AlertSlider: Add more resources
14b9784c41e AlertSlider: Prevent crash in case of incomplete broadcast
f82ba50c94a base: AlertSlider: update resources
f5563f88e87 AlertSlider: refactor to reflect slider state
b0978809ee6 Alert Slider: Improve layout
baa3b589d32 Alert Slider: Add toggle to disable notifications [1/2]
a31efb53eba Alert slider: Use default position behaviour if position not specified in intent
e2bdfb1b519 Alert slider: Do not hardcode slider position based on ringer mode
1a325e60077 Alert slider: Work better with Key Handlers
19328640a0d SystemUI: Make tri-state SystemUI dialog dimensions conditional
55db9ab8a96 SystemUI: Improve alert slider dialog
bb1ea2f68cc SystemUI: Introduce user interface for Alert Sliders
21d7fc07e5d GlobalScreenshot: Fix old screenshot preview appearing in screenshots
bf7acc29c3a GlobalScreenshot: Reduce screenshot dismiss delay to 3 seconds
a18e49a588f GlobalScreenshot: Speed up actions expansion animation
958324065a2 Screenshot: Add delete action chip intent
ed7f2a12989 base: Revert secondary home handle
c2771d14acf LockIcon: refresh icon on overlay changes
ca6dd572c2c Move delete screenrecord strings to allow translations
16c80ba10ed base: Add back the delete action for the screen recorder notification.
bd415ec79b2 Allow to suppress notifications sound/vibration if screen is ON [1/2]
cd2437ab252 SystemUI: Ambient Edge Pulse layout [1/2]
ff7100fe1c8 SystemUI: Allow changing duration of ambient edge light [1/2]
9f95f8b5d84 SystemUI: Replace pulse light drawable with our own vector
13b6c58c00f base: Add ambient pulse notification [1/2]
b55852bd3ab QSFooterImpl: Slight improvements and fixes
2d1833f807d QS footer icon visibilities [1/2]
f9a117177f7 QSFooterImpl: Animate multiuser avatar
5403e9f2d64 Allow to quickly open Running Services from QS panel [1/2]
833ce2c7c77 SystemUI: Remove tuner icon from QS Panel
31f81f5bbdb Extend Pulse to Ambient Screen [1/2]
9c5c8426aca Doze-on-charge: Improvements
58781b0970f Add option to enable AOD on charging only [1/2]
4730fba4c44 SmartCharging: Clean up redundant settings define
d02bed70eee FOD icon for oneplus 8 series
c8d13d9a680 SystemUI: Add anti flicker tile
9f507baeb19 QuickStatusBar: Check for privacy chip indicators earlier
97fee526148 Reload QS tiles after applying tint
3f00340fc9e Set custom QS panel columns for QS Customizer too
c3e22ae2bb3 base: Tint QS Tile with accent color [1/2]
14b1fad3263 KeyStore: Report rate limited instead of not implemented
c84b5d5fb3b FaceService: save ourselves from NPE
a2eb7de44f0 wm: Passing a new ArraySet instance to avoid crash
ba168a6e72e DragSurface: destroy surfacecontrol in view site
3a04661354e SystemUI: Face Unlock animation
972306b22ef Move Swap capacitive buttons to Settings [1/3]
ec0773f1720 NotificationShadeDepthController: updateShadeBlur if keyguard is going away
046dc2a1450 base: Incall vibration options [1/3]
54add32f11f PhoneWindowManager: Properly consolidate screenshot function calls
ee197851d0b SystemUI: Don't shift KeyguardSecurityContainer when FOD isn't available
874a20af37a EdgeBackGestureHandler: Change back gesture height intervals
768f4480ecb base: Navigation mode settings [1/2]
140775cceaf Avoid interface name copy in HwParcel
e4f4c2d7b67 Binder interface tokens: remove extra mallocs
ae9d9cad8c5 Avoid potential fd leaks from jniCreateFileDescriptor (2/2)
e771e899f7b Avoid potential fd leak from jniCreateFileDescriptor (1/2)
befbce048d9 Avoid allocation on Java Binder fast path
c93d627a10e core: Defy usage of NGA in Google Assistant
8bbfe03f719 NetworkTraffic: Remove screen on/off triggers
9a3aa34f885 Revert "Revert "Restore preferred activity filter if it not inside""
8744635fc37 Fix black screen issue due to wallpaper decoding exceptions
bba60cffa45 Try to fix upstream status bar+keyguard bug
ae4f478c5de SystemUI: QS detail improvements
d56dbb942b4 Add button to AppErrorDialog to upload crash information to dogbin
1b310abde65 base: QS status bar opacity [1/2]
7be24331a4c Camera: Skip stream size check for whitelisted apps
9c311f37e28 KeyStore: Block key attestation for Google Play Services
0d46c2515d4 Disable FOD animation if animation resource package not installed
be8ed82a616 Move FOD Animation resources to standalone package [1/2]
79d593b9b84 SystemUI: FOD pressed colors [1/2]
52a2f20d70a SystemUI: Don't show FOD icon/pad keyguard if strong auth is required
4ee24ffeba1 SystemUI: FOD icon picker [1/2]
752211c9f18 FODCircleView: Hide animation when auth fails
79fde008566 FODCircleView: changes to FOD circle and animation visibility
1e52ffa4588 fwb: Add screen off fod [1/2]
c9aeb07b8a1 SystemUI: Add OP8T Cyberpunk 2077 FOD animation [1/2]
62f230e5c10 Refactor how FOD Animation is hidden
821a6346aa6 FODAnimation: Check if view is null before adding a new one
973bfd3cadb FODAnimation: Allow to set vertical position offset
4e4ee31f2de SystemUI: Add remaining FOD animations
de4a8a3c298 SystemUI: Separate FODAnimation into it's own class
2b2e15da429 FODCircleView: cleanup FOD animation implementation
6573b0b9bb9 SystemUI: Recognizing FP animation effects [1/2]
b4caa7be86f FODCircleView: Recognizing fingerprint animation [1/2]
939a3ccaf1d Use FodUtils for FOD config checking
5a7f90bda5b Revert "FODCircleView: Hide fod while going to sleep"
ea0c69c92a2 iorap: Enable by default
6f8ba93c4aa fixup! SystemUI: old style mobile data indicators
bda369355d6 base: Add bool to enable/disable doze by default
c3beb4d9563 Allow tuning ambient display with sensors [1/3]
c9cd36ab71b Fix the wrong lastBackgroundTime in UidRecord
735de1359b7 Allow to hide arrow for back gesture [1/2]
704422d2c06 SystemUI: status bar mobile indicator - code sharing is caring
ab52bac2241 base: Allow to use old style icons as default [1/2]
d7d4eadd46f SystemUI: old style mobile data indicators [1/2]
ba217d9fce4 SystemUI: SIM PIN1 lock screen abnormal
55ca9b16ad5 MediaCodecInfo: do not alter performance points for 32-bit processes
cd3e1ce8600 MediaCodecInfo: limit resolution to 4K for 32-bit processes
a59b486896d base: Properly regenerate the share drawable.
a2038383a35 base: Allow hide gesture navbar [1/3]
0403af935ed base: allow customizing the length of gesture navbar [1/3]
8b4545c3080 LS/Nav Pulse: Solid render: Fix another solid render FC
032293d53f9 LS/Nav Pulse: Solid render: fix FC when changing units value
d1eeff9eb22 LS/Nav Pulse: Solid render: fix FC when changing smoothness option
d19ca23ada0 LS/Nav Pulse: Use background ui executor to link the session
b2995f729d2 LS/Nav Pulse: Clean up redundant audio session id
854bdd5f64f LS/Nav Pulse: Consolidate functions and fix NPE
47944faa9d9 Pulse initial checkin for Android 11 [1/2]
99f4c73aebe Revert "SystemUI: Add visualizer feature"
4dccb5b6c57 base: Allow switching to drawable for qs icons
87b09e1c72c SystemUI: Fix display cutout handling in expanding volume panel
e268b8b50ea SystemUI: Improve volume panel expansion/contraction animation
3df1f7db9fc SystemUI: Fix bug with user_setup_complete setting
b7e5d45593d GamingMode: Fix initial value of gaming mode
dbd8036335d iorap: Terminate iorapd process when both tracing and prefetching are off.
ac78175f13a SFUNY Clock: Add proper preview layout
ca5b1972b92 DividerLines Clock: Fix margin issue in layout
ccb63d76c7e Typeface Clock: update thumbnail
ab17ba471e7 KeyguardClockPositionAlgorithm: Allow forcing default clockY positioning
82c7236749c SystemUI: fix binary clock update
424cf40e0a4 Add a Tux clock controller
405cc255020 Add time refresh capabilities for bold, digital and Samsung lockscreen clocks
89a2ffecac9 SamsungHighlight Clock: Improve layout
61a7d6614c1 Add SamsungHighlight clock
df031cf80fc MNML Clock: Add proper preview layout
e7011530f07 MNMLBox Clock: Clean up hacky layouts
82384eb70e4 Add MNML based clock desgins
9610182ae12 Add SFUNY clock
7b0023fe5cf DividedLines Clock: Add proper preview layout
d9c45beee61 DividerLines Clock: Set 24-hr time format as well
ab0bc7af0dd Add DividedLines Clock
105e8fdf1d4 Add center style Typographic clock
13a0034e4c0 SystemUI: Improve Samsung clock layout
eb09abb9ee8 Introduce bold digital and Samsung like lockscreen clocks
e94935be2bf Keyguard: add binary custom clock face
d34b5080d2f TypeClock: Properly calculate the height
bb02957285b Add TypeClock for translations
df95a8877d5 SystemUI: Restore typographic clock face
58ab5e56ea8 FaceUnlock: Update authentication method
8632d3c6ac2 SystemUI: AssistDisclosure respect device corners
074330a1b00 Language toggle QS
6a55e797db8 Disable long click for Compass tile
fd83eed9437 CompassTile: Add a device supports compass check
409864b488c CompassTile: Do not use slashed icon
724584fc1c5 CompassTile: Set default state inactive
8ee01060764 Add Compass tile
af721ba0f0d SoundTile: Make default state inactive
5f1100f3b04 QS: Add Sound tile to Quick Settings
0782bc028db RebootTile: Make default state inactive
8ddd6d18e9c Extend reboot tile to add power off
155009d273a RebootTile: Fix gradient message display for reboot to recovery
3d7fb119f6b Add Reboot/Recovery QS Tile
f86bfb0f3cb SystemUI: Disable blur wakeup animation
d9ed0d98c70 Show USB icon in ADB notification
d42089e63bf overlays: Fix inactive state Wifi Icon in Circular,Filled Kai Icon Pack
0eede5c8f94 Navbar: Introduce navbar styles [1/4]
6679e14549b Toast icon switch [1/2]
2ad7964fa7b Fix: No text in toast for RTL layout
c0629a95608 Show icon of package associated with Toast
2f2cc0d7b1c Fixed Handler Leak on DistanceClassifier
41e4d05c9a5 FaceUnlock: Drop lockouts completely
8f6a9ca3a46 Fix long click intent for Smart Pixels tile [1/2]
26440fae42c Smart Pixels: Dynamically register receiver
56b24aee45e SmartPixels: Add config to enable smartpixels support
0c028ba3626 Add smart pixels [1/2]
9479b44517e PocketJudge: allow register vendor pocket sensor
0adabd8983d PocketLock: fix flickering on animations
199eff414af Pocket lock: Add config_pocketModeSupported overlay
9842da63109 SystemUI: Block face authentication when device is in pocket mode
6c0f1386d70 pocket: Reduce sleep timeout for pocket lock
3127084af4d pocket: Use MD2 lock drawable
f55e3e4f603 Pocket lock improvements
5b920b771a9 pocket: Fix pocket lock view for display cutouts
588161db0f1 pocket: Adjust sleep timeout for pocket lock view to 10 secs
26de982bca7 pocket: introduce pocket bridge
e4b36d15fee PocketService: Adjust light sensor rate to 400ms
207326ead33 pocket: Add hardware acceleration and properly maintain SYSTEM_UI flags
065ea5bef48 policy: introduce pocket lock
f470eaf8200 pocket: introduce pocket judge
7ecb0f84954 Battery light: 100% charged level (1/3)
d1c9f57f264 Nfc adapter randomly returns null on devices having Nfc
3254dbe6888 Improve NfcAdapter APIs to report correct nfc state
7f219e356b3 base: weather panel improvements
16ac4d6d652 SystemUI: Uncouple the temperature from the image
d3e9afe8068 base: SwipeToScreenshot: Import MIUI implementation
c6cdab4d0b5 base: Improvements for swipe to screenshot
ac3e9459f03 base: Add three-fingers-swipe to screenshot [1/2]
c717ac8bc8b base: Smart Charging (1/4)
90e2abc8d53 frameworks: Reset battery stats
4324b1f625e Less boring headsup: allow any sms/dialer app set as default by user
277e7d36685 Less boring heads up option [1/2]
2ea57fac98a Bring back Gaming mode [1/3]
f125cebac69 SystemUI: FPS Info Overlay & Tile
30122de0e9b Disable long click for CPU Info tile
632cb0eccd0 QS: Add CPUInfo toggle tile
3a7616fe856 Add SystemSetting class analogous to SecureSetting
b209d2bd66e base: add CPU info overlay
2ccf510b4ce SystemUI: update Bluetooth battery level assets.
7fc1277bf0b SystemUI: Update NFC tile drawable
77689d398f8 SystemUI: FingerprintDialogView: Use accent color instead of teal
0cf7de951b4 Use proper coded alphabet when a contact is written into EF_ADN of USIM.
6ef1c431378 Use mContext directly
0c0c69f5331 Fix NetworkPolicyManagerService deadlock
eb3c0aa6ad7 Properly set fonts and icons on keyguard when changing styles
c1b6a0d4564 VibratorService: implement OnePlus proprietary vibrator format
45deaee883a Adaptive Playback: Convert to seconds
97a6f2340ec SystemUI: Introduce Adaptive Playback [1/2]
37ad533c64c Volume dialog timeout (1/2)
dea5984bb25 Live Volume Steps [1/2]
ff118a858d5 Disable/Enable screenshot sound [1/2]
34c49fbe05d power: Re-introduce custom charging sounds
c9fcdf7eb33 overlays: Extend prev commit to Google's new icon packs
f5ac3414ae8 overlays: Fix background colouring for settings themed icons
97b58ca01bd SystemUI: Update automatic brightness drawables
16167fa6b18 Navbar: Switch gesture navbar to new navigation bar key event source
104349f6fa5 NPMS lock improvement.
5c14334226b Improve notification/headsup group header layouts
9575e40d406 SystemUI: Move charging animation above FOD icon if In-display fingerprint is active
6fef2dc32c6 SystemUI: Update keyguard indication margin when fod is in use
e7aa1e8cf21 KeyguardUpdateMonitor: Fix race condition before listening for biometrics
aa004a9d1c7 SystemUI: Allow listening for face only on pin/pass view
7290d8cefc5 base: add more notification channels to blockable
7c9926c06a7 base: fix google copy pasta error :)
e24401f7819 Base: fix facelock crash when lock screen is disabled
947478d63a2 Keyguard: Actually kill the Fancy Colon
cdd9665389e SystemUI: Fix SystemUI Crash
7cdca1c46e1 SystemUI: thread protect keyguard callbacks
b7253672fd7 BatteryService: Add VOOC charging support
0b8bb25fc4f BatteryService: Add Warp charging support
83d7b5c603f BatteryService: add dash charging support
4edde589ae1 DisplayManager: Fix synchronization issue
0e5faf7c3fa CarrierConfigManager: Enable payphone call blocking option
08946161d12 Port face unlock feature
326a2c99419 base: fix tapered rect overlay
c297570eeb8 base: Supress telephony crashing platform
b57f66ab53a Fix NPE with void android.view.VelocityTracker.clear()
4de4d8b9b71 Fonts: Restore light font styling of AOSP
8fdefb2ca55 Fonts: Add regular / light font config
ff4c93b26e0 Update default config for headline fonts
41a42830950 Wire up default fonts with font engine
2a4cb981b4c base: Add more custom actions [1/3]
7a9e41f8a75 base: Add device key action to expand notifications panel [1/3]
df3670eed70 base: Add device key action to Clear all notifications [1/3]
b1630824e90 base: Add device key action to toggle volume panel [2/3]
421cdb7dbe1 Utils: Add toggleVolumePanel action
9038745669b Add device key action to take screenshot [2/3]
0b102cb1d0b Add device key action to toggle flashlight [2/3]
de1da22cc25 Add api to toggle flashlight
4305ccb8944 Add customizable action for back long press button [2/3]
757dfbcd3ba PhoneWindowManager: Clean up arguements in MSG_CAMERA_LONG_PRESS
6752547ff54 Add device key action to kill app [2/3]
fc36b47d2f5 base: Micro optimization for accidental touch prevention
55e56094d5b base: Add accidental touch prevention for assist key
22de3adf4e8 base: Introduce Accidental Touch
fed59da509c base: Introduce new navigation bar key event source
01707249f9b Add toggle to disable HW keys [1/2]
a7d5741f988 SystemUI: Hide back icon when screen pinned and gestural mode enabled
071c374a1e6 Add tunables for navbar layout customization [1/2]
c9ba15345d5 Revert "SystemUI: Implement hide gestural navigation hint bar [1/5]"
42900e0c3b1 Make Quick Unlock compatible with long PIN/Password [1/2]
d89ea8fde4f audio: Don't play sound effects if stream is muted
d76c248effa QS: Add and use Bluetooth Panel instead of full Settings
a2565a064d5 QS: Use Mobile Data panel for CellularTile
4a36d86fe18 QS: Add and use Mobile Data panel
f90620109a4 DataSwitchTile: dont show toast on click
996efdd139e DataSwitchTile: collapse notification panel onClick
5e4fb0d9ae0 SystemUI: Introduce DataSwitchTile
39fa296b30a QS: Use Settings.Panel intent for Volume Tile
ea5e6045d3c QS: Use Settings.Panel intents for WiFi and NFC
d752f562b50 AODTile: Improve code
0bd622007c0 DefaultPermissionGrantPolicy: Silence harmless errors
658b4feb486 base: Add permissions for Google Chrome to sign in
875cc81dfb9 base: Grant storage permissions to Google Markup
e1ec1e19754 base: Grant wallpaper permissions to prebuilt wp picker
001fe230c75 base: Grant suspend permission to Wellbeing
411a8ef29fc base: Grant storage permission to ThemePicker
26ace829327 Fix Google dialer FC due to missing permissions
c82fa074449 Allow chromium to sign in
524cb441e1e Fix Google Calendar FC
562454284ec Fix Fi permissions
8a28cf00125 Fix Android 7.0 GApps permisions which were causing F/C
084679b04a3 base: Add permissions for OmniJaws
0475c72e25c SystemUI: make qs weather page follow system font setting
b51efe45b0c Lockscreen Weather: Improvements
afce07966a3 KeyguardSlice: Fix up changing icon pack
0a2901e45df WeatherTile: Do not show if not installed
6b0c2739ac7 base: add keyguard weather style [1/2]
444e93affa1 base: add weather to keyguardSlice
7c6aaa0b54f base: keyguard weather view [1/2]
5493afd1198 base: add back weather parts [1/3]
d322738cbf2 Add an option to ask pin for shutdown/reboot on secure lockscreen [1/2]
db5081c4879 Fingerprint authentication vibration [1/2]
9b66b3d63ce Disable PIN entry after successful quick unlock
17e8bbae5bf Keyguard: Forward port lockscreen quick unlock (1/2)
82f3fa1f275 Hide power menu on secure lockscreen [1/2]
adbe5853b84 Disable QS pulldown on secure lockscreen (1/2)
03500396449 Add toggle to hide lock icon on lockscreen [1/2]
f07625c9528 SystemUI: hide lock icon while dozing
f97155f5b25 Add lockscreen battery info as TunerService tunable
f952c85213f SystemUI: KG Charging Animation: Add more animations [1/3]
4ae3460fb56 Add toggle for charging animation [1/2]
480f354245a SystemUI: Animate the keyguard when charging
b9c3810765a Add Lockscreen album art filter [1/2]
ff8c516c8e1 Lockscreen charging info: show decimal in battery temperature
05a2039b508 SystemUI: keyguard show charging watt
e883dbea723 LockscreenCharging: squashed (1/3)
da03542155f SettingsLib: Don't show system overlays on apps list
a527238fede Add toggle to completely hide status bar on lockscreen [1/2]
88128bb1019 Separate double tap to sleep on lockscreen [1/2]
0aa66a23ead PebbleBerry: Remove black/white accent check on theme change
e7902163c92 Disable double tap power button camera gesture by default [1/2]
bb811602c0e AdvancedReboot: Adjust dimensions to match main menu
6ea25a4a3b8 SystemUI: increase global action icon size
54fc21a8000 SystemUI: remove black bg from power menu
da045d73e4b SystemUI: tint emergency icon only
75dbb897820 Revert "Global Actions - Remove outside touches"
e4f5ce340c5 Allow overriding default volume dialog position
3e059d2b0a1 VolumeDialogImpl: Use TunerService properly
2a015b809a2 base: QS panel opacity [1/2]
4caa15e9975 base: Add qs status bar header image [1/2]
61a804c9dc6 Quick settings: Add Haptic Feedback to tiles [1/2]
f4f219a2381 QS tile titles visibility [1/2]
357b21235f9 Add config for default QS columns and rows [1/2]
09f1ed10af1 Allow to set QS panel columns and rows [1/2]
28e2a9d6e4d Allow tapping battery icon in header to go to Power usage summary
48f48faf571 base: Disable stock accent overlays
d8f1efcd9f4 base: Add overlays from Android 10
22afe0207a3 base: add missing shape overlays
7c48d6c3485 base: themes: dont use colorPrimary for active qs
961d8e9b4f1 BatteryBar [1/2]
fdffabb2430 CollapsedStatusbar: Fix phantom spaces in status bar
c2622c219a6 Use alphaoptimized layout for icons on left
b8a331fa582 Remove unnecessary battery meter view impl in keyguard statusbar
1901f515c34 ThemedMeterDrawable: Fix system crash on theme change
01c29a358cf SystemUI: show a bolt ⚡ when charging
a49b18a03bf Prevent battery tunables crashing on first boot
f8ec9261268 BatteryMeterView: More robust for showing estimate
cf54e5a958c Add toggle to display battery in quick status bar [1/2]
1c3682deff6 Separate battery estimate from percent for QS [1/2]
0026eb1f96d base: Add Solid battery style from PA [1/2]
f8ccb3a5c37 Add battery styles and customizations for Android 10 [1/2]
040ab50c680 Revert "SystemUI: Bring back good ol' circle battery style"
23f9bd1bc03 Option to Display Data Disabled Indicator Icon [1/2]
62a7f63bdb9 Allow using 4G icon instead LTE [1/2]
a07b3e86b82 Make roaming indicator optional [1/2]
fc0915d471f SystemUI: Override VoLTE icon with VoWiFi when available [1/2]
98758aaa9ec SystemUI: Add more VoWiFi icon styles [1/2]
74efa949558 SystemUI: support VoWIFI icons
0753311c8eb SystemUI: Use old padding values for VoLTE icon
918cfd8236a Add option to select VoLTE icon [1/2]
cf789dd858f Ability to toggle VoLTE icon in statusbar [1/2]
330eba57f08 SystemUI: Use our default VoLTE icon
f3ea9a5f082 SystemUI: Fix VoLTE icon color on Light statusbar
3363d7d44b0 MobileSignalController fix corresponding to upstream FeatureConnector change
76d15671886 ImsManager.Connector became FeatureConnector.
97d05ce4d29 SystemUI: Enhancement for volte icon
0b85e786f75 SystemUI: Query IMS state after CapabilityCallback is regisered
eee07901693 SystemUI: Fix HD icon missing
5788f38e617 Adapt to IMS registration changes.
a862f224975 SystemUI: Refactor the feature of volte icon
a44f6dbea0e SystemUI: Fix volte icon doesn't update in real time
c69dc870d06 SystemUI: Add new configuration for displaying Volte icon
8347e49933d Add ability to toggle bluetooth battery level [1/2]
79eb73b1131 Network traffic mode for status bar [2/3]
4ec6da28123 base: Export bodyFontFamily and bodyFontFamilyMedium symbols
b4d33944579 Revert "SystemUI: Network Traffic [1/3]"
4389c0ccf1b SystemUI: Add case to quick pull down status bar anywhere
10f5aee7e21 Do not apply date customization to QS clock [1/2]
6435228ea56 Allow using position tunable to hide clock
c2eb56ed416 Add option to auto hide status-bar clock [1/2]
e02e9d65552 Statusbar clock customizations [1/2]
17b13b5ade4 Add separate tunable for clock seconds
01c8f1b702b PebbleBerry: Allow dark style selection and accent check
775733a017e Revert "SystemUI: support black theme for dark mode [1/4]"
3c67aa71a81 base: Improve navigation bar hiding toggle
18ec51c881b Use FORCE_SHOW_NAVBAR to actually toggle navbar
3868231ccb1 Statusbar: Fix Tunerservice usage
c88c5592559 ListView: Disable dividers by default
870aea5588c core: Add support for MicroG
a0afd6a3c17 Fix NullPointerException of AMS
a677dc972c7 Optimize AbsListView to reduce click operation latency
e3656e9a398 avoid duplicate doFrame calls.
36024ec24b9 make ui touch optimization work normally.
e6b43fcae2c add VSYNC scheduled flag and avoid two doFrame calls in one period
e00b1b41188 core: touch response optimizations
bc7b0b20bec SystemUI: Allow using tuner API for Global settings
8bfce3d1a1e TunerService: Prevent NPE with tunable
62e12a052a4 pm: Add flags for UFS card for encryption in vold
33446bb73f5 ChooserActivity: remove ugly separator
d71c2e79905 BatteryStatsImpl.java: Stop resetting battery stats after reboot with battery level >= 90
791b529aab0 telephony: URI cannot be created with negative subIds
236f34b77b5 Close file descriptor to avoid socket leak
f8226ce5e11 Quick settings: Add method for getting estimated battery time
0579d18cd7b Set alert dialog message to use system font
c8e9aa5a14b Fix list style alert dialog to use system font
4075d81fd7a services: LightsService: Mute an annoying error message.
efe1c0ba221 base: Change dividers from Holo Blue to Pixel Blue
c5bd68b871e Shorten wait time for shutdown time optimization
fa2e21389cb TelephonyRegistry: Avoid adding duplicate listener
05184676b7e Fix navigation input consumer not working when first window is invisible
fa987b2f801 Fix deadlock between AppOpsService and HistoricalRegistry.
b177933f6b4 SQLite: Do integrity_check only once
ed0d1d0fdd2 SQLiteDatabase: Catch corrupt exception during transaction
03f280f32be MountService: Prevent NPE with DropBoxManager
cb5a4df8530 Settings:Bugfix for NPE, Only valid screen power consumption need to smear
86e423fce0e ParcelFileDescriptor: can we stop the panic here?
86a8b6c2a85 FATAL EXCEPTION IN SYSTEM PROCESS: android.ui
68cd04abe36 Framelayout: Fix NPE when view is missing
16424d5730e SystemUI: Keyguard: Check for a null errString
dfce1243a70 Prevent crash in TTS engine due to improper configuration
c8af7bc0723 Fix Another SystemUI crash
353bc3998db Fix SystemUI crash
760bff73de4 CarrierConfigManager: enable LTE+ icon by default
1df424e314f screenrec: Show dialog on bottom
f5e30c87cb2 SystemUI: Remove GarbageMonitor tile
4f83bf25a8d Suppress FingerprintManager logspam
9cbddee2427 Kill off provider info logspam
251eccf73e2 Reduce log verbosity: Don't spam logcat
4657757d4a3 base: Add START_ACTIVITIES_FROM_BACKGROUND on phone priv-app whitelist
ee2eca507f3 SystemUI: Remove build version from qs footer
3e46832e0a3 Restore cache clean up code in PackageManagerService
a9e933ae8bf Add crdroid utils
39a2ddd31dd base: Add metric for crDroid Settings
0e48b220cbb base: Add stub files
d274c33a679 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* 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
87343850d Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* 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
* libcore
ab9a412dbf Merge tag 'android-11.0.0_r32' into 11.0
* lineage-sdk
a7fcf81f Merge 'lineage-18.1' into 11.0
4457a818 lineage-sdk: Fix NPE when using getPictureAdjustmentRanges()
6e644f48 Battery Fully Charged Sound [3/3]
30183123 Automatic translation import
* 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
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
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
ae67334c crdroid: Add screen off fod strings
9b33e356 Add option to vibrate when fully charged [2/2]
51f742df Battery Fully Charged Sound [2/3]
84601f17 Move charging sound settings to crdroid settings
* 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]
* 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.
38d2a0e20 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* 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
* system/vold
748ecf7 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* vendor/lineage
b749ae63 crdroid: Bump to version 7.4
====================
03-06-2021
====================
* packages/apps/crDroidSettings
602a2051 New Crowdin updates (#716)
====================
03-05-2021
====================
* android
2914b89 manifest: android-11.0.0_r29 -> android-11.0.0_r32
* lineage-sdk
4ed6b043 Merge pull request #10 from Astridxx/11.0
b0ee18fe PerformanceManagerService: Account for QCOM perf HAL 2.1 and 2.2
* vendor/nxp/opensource/pn5xx/halimpl
b5a52539 A stack OOB write vuln of nxp nfc hal library
* vendor/nxp/opensource/sn100x/halimpl
cad836ed A stack OOB write vuln of nxp nfc hal library
* vendor/qcom/opensource/commonsys/packages/apps/Bluetooth
2592b1038 Prevent drawing on top of Bluetooth activities
====================
03-04-2021
====================
====================
03-03-2021
====================
* art
aad295f10f Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* bionic
3a003876a Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* bootable/recovery
b320ec0c Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* build/make
2f686542e Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* build/soong
72b6170c4 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* external/cldr
1e4de98 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* external/icu
9631b023f Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* frameworks/av
26a64fbe1a Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* frameworks/base
d0b4d1741ef BatteryService: Mod: Check against all conditions
df71b935807 BatteryManager: Mark battery moto mods constants as hidden
* frameworks/native
9e07dbd59 Ensure that expected present time is in the future
c02140b85 SF: handle long waiting Layer sync point
* frameworks/opt/net/wifi
5f3c73c05 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* frameworks/opt/telephony
fad7a3a70 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* frameworks/opt/timezonepicker
b001963 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* hardware/google/pixel
3439a86 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* hardware/interfaces
229285d3c Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* hardware/knowles/athletico/sound_trigger_hal
339f25d Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* hardware/nxp/nfc
111aecc Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* hardware/qcom/sm7250/gps
eb3b91e Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* packages/apps/BasicSmsReceiver
24073c6 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* packages/apps/Bluetooth
4953e5bc3 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* packages/apps/CarrierConfig
f9c56d7 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* packages/apps/CellBroadcastReceiver
2daf3ecf Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32
* packages/apps/CertInstaller
615fe43 Merge tag 'android-11.0.0_r32' into staging/lineage-18.1_merge-android-11.0.0_r32