-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangelog.txt
More file actions
1973 lines (1477 loc) · 62.4 KB
/
Changelog.txt
File metadata and controls
1973 lines (1477 loc) · 62.4 KB
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
====================
09-17-2015
====================
* device/google/sprout-common/
aed2304 sprout-common: update kernel
* device/google/sprout4/
8501f67 sprout4: update
* device/oneplus/bacon/
91b3491 ownkernel
66211ae bacon: add maintainer
938c254 bacon: goodbye oppo_msm8974-common
dc920ea bacon: Update extract file script
5d93561 bacon: Import msm8974-common items
* device/samsung/jf-common/
c7e8adc sepolicy: remove duplicate livedisplay entry
* device/samsung/jfltexx/
83ea03c Update BoardConfig.mk
* frameworks/av/
c1fc813 Merge remote-tracking branch 'CyanogenMod-upstream/cm-12.1' into 5.1
* frameworks/base/
9342c8d framework: add string for wifi subscription change notification
2ffd469 SystemUI: don't show recents if not provisioned
283c17d Fingerprint wakeup: more consistent behavior
5b0388e Allow disabling the privacy guard notification (2/2)
674c2c2 Fixed: Wrong status bar notification layout width.
b414698 Missing variable declaration
d32ff4c fix
6888490 Lockscreen colors [1/2]
1a99cf9 fingerprint wakeup: improve state and error handling
0cedd49 QS: Make WiFi and Bluetooth tile detail view consistent
c0b7327 Recents: Delay cleanup of remaining tasks when dismissing
* frameworks/opt/net/wifi/
1392c1a Merge branch 'LA.BF64.1.2.1_rb2.33' of git://codeaurora.org/platform/frameworks/opt/net/wifi into cm-12.1
* kernel/samsung/jf/
ee73432 Merge pull request #3 from CyanogenMod/cm-12.1
* packages/apps/CMFileManager/
7676605 [CMFileManager] Fix fail to move a folder
* packages/apps/Contacts/
bdf8bbf Merge branch 'cm-12.1' of https://github.com/CyanogenMod/android_packages_apps_Contacts into HEAD
* packages/apps/ContactsCommon/
f1481d6 Merge branch 'cm-12.1' of https://github.com/CyanogenMod/android_packages_apps_ContactsCommon into HEAD
* packages/apps/Gallery2/
b00985f Gallery2 : Drm file can be set as wallpaper
4f3e496 Gallery2 : Drm lock icon added on Photo widget for drm content
f5b491b Gallery2 : GIF animated drm file can be visible in Gallery app
01f5f34 Gallery2 : Uses internal Drm image decoder api in Gallery app
43044da Gallery2 : Added support for Oma drm (CD and SD)
829f9ad Gallery2: Make Gallery2 support OMADRM feature
* packages/apps/Settings/
d29d0c0 Setting: Match brightness override padding to volume override
fb64f25 APN: Fix typo
e3b16e9 Remove 'Pulse if battery low' option if unsupported
* system/core/
54521d0 Revert "Add HTC Logging functions to support newer HTC props."
====================
09-17-2015
====================
* device/qcom/sepolicy/
0f009b0 sepolicy: Include qcom-specific sepolicy from vendor/cm
ce47ba2 SEPolicy : Added policy for oma drm
* frameworks/av/
e299e7c frameworks/av : Drm media file uses mm-parser sniffer
d2612cc Media: Make media support DRM file's playing
* frameworks/base/
49261c4 Consider using app adj to identify if it is a B-service
77777e1 Replacing FloatMath native implementation with calls to Math
4308cb9 DocumentsUi : Drm lock icon can be shown on documnets picker view.
552ee09 DocumentsUi : Drm lock icon is added for drm content
bb99d79 frameworks : Introduced new private DRM APIs in graphics library
92e1cd5 frameworks/base : Added support for OmaDrmEngine
2732550 frameworks/base : Remove drm api entries from current.txt
8ce49ab libdrm: Added support for Combined Delivery and Separate Delivery
902c6fd Revert "Remove obsolete OMA-DRM support".
357b345 Added Changes for Custom Resolver Activity
3f696d5 Fingerprint wakeup: don't count failed attempts when screen is off
1129152 Wallpaper: Create new WallpaperObserver on user switch
ffd6f1a SystemUI: Fix NPE
f7d4e3e telephony: Handle NPE in setDataEnabledUsingSubId()
b5124c0 Lights with screen on: Don't disable leds after the lockscreen
42e1b34 Automatic translation import
f571a56 core: Reduce mutex contention in ActivityManager
588825a fingerprint: wakeup and unlock
eb66492 fingerprint: add generic set parameters
ce72df3 SystemUi: Prioritize call notifications which interrupt.
ca84124 vibrator: Add a way to run the vibrator with reduced priority
865de54 Revert "Notifications: Only check for spam if new"
719c338 SettingsProvider: change default battery style to portrait
9d9c8ae Themes: Use current user ID when getting ThemeConfig
9a4967a Prevent insanely long passwords from crashing SystemUI
dbd65b4 DO NOT MERGE: Ensure that unparcelling Region only reads the expected number of bytes
9a5bc38 Check that the parcel contained the expected amount of region data. DO NOT MERGE
d08ade8 Fix Custom Resolver Theming
b439222 Revert a couple of badly-behaving ActivityManager patches.
1d11b5e Compilation fixes
05b12f5 Add network policy for each sub on powerup
82e3aae Camera: Longshot with Burst Functionality.
d042dba Themes: Don't use themed fonts for non themable packages
8dc38a7 Add broadcast and query API for AudioSource.HOTWORD.
bb63bbc base: report wtf for external cm services
67dc63f SpamFilter : Avoid a requery for each item
ee0e45d base: start nfc service prior to systemui
a9eee41 SystemUI: unregister visualizer on hide
accb9d7 SystemUI: fix potential divide by 0 exception
934b296 SystemUI: hide visualizer when keyguard is occluded
079121e power: Boost improvements
755c2f1 Add basic support for VorbisComment DATE tags
a67e4d0 SystemUI: Fix blinking when reported battery level is 0
2483ad6 systemui: left hand navigation ring
1e2c614 systemui: respect navigation rings configuration
ff5c70d Ringtones: Allow excluding from removable storage
b8f6d76 Allow CAPTURE_AUDIO_HOTWORD to be whitelisted by signature.
59c214b power: Add a new power hint for application launches
ab5111f SystemUI: fix NPE crash when Visualizer is not initialized
997cfc4 systemui: wait for animation end before take a screenshoot
343149a Spam: Close writable DB after use
e942c46 Change default for Override custom colors
d1e0e17 Random-Radium-1.4
130f6b3 Multiple LEDs [3/3]: Illumination Bars support
* hardware/broadcom/libbt/
6e7b90c libbt-vendor: Fix wisol string comparison
* packages/apps/Gallery2/
b00985f Gallery2 : Drm file can be set as wallpaper
4f3e496 Gallery2 : Drm lock icon added on Photo widget for drm content
f5b491b Gallery2 : GIF animated drm file can be visible in Gallery app
01f5f34 Gallery2 : Uses internal Drm image decoder api in Gallery app
43044da Gallery2 : Added support for Oma drm (CD and SD)
829f9ad Gallery2: Make Gallery2 support OMADRM feature
* packages/apps/Settings/
d29d0c0 Setting: Match brightness override padding to volume override
fb64f25 APN: Fix typo
e3b16e9 Remove 'Pulse if battery low' option if unsupported
* system/core/
54521d0 Revert "Add HTC Logging functions to support newer HTC props."
====================
09-16-2015
====================
* bootable/recovery/
53170a3 Don't remove existing explicitly stashed blocks
18b30c0 Always use strerror to report errno in recovery.
* build/
cb68d43 arm: uber 4.9 to fix ICE if using optis
701f2e6 arm64: sm if using optis
* hardware/qcom/display-caf/msm8916/
1e93f5e hwcomposer: Add support to specify dynamic FPS when idle
* manifest/
6ac09dc Update default.xml
* packages/apps/LockClock/
52d0cb8 LockClock: Force ltr on clock display.
* packages/apps/Settings/
2b53beb settings: Add device maintainer detail in About Phone
ec7ff49 Use default subscription's slot ID when showing SIM status
70275d2 Settings: reset root option selection as necessary
* packages/apps/SetupWizard/
fa1be77 Revert "Bump HOME intent priority"
* prebuilts/cmsdk/
ae4715e prebuilts/cmsdk: Update SNAPSHOT jar for api level 2.
32e0307 prebuilts/cmsdk: Prepare for api 2 release, update text.
* system/core/
eeaeeb6 cutils: Add support for BFQIO cgroups
* vendor/cmsdk/
0769cdb CMResolver: Optimize restart if we know we don't have suggestions.
0d5b0b7 CMSettingsProvider: Update app name
688a045 CMResolver: Fix bad equivalancy check by using known boolean.
3c45665 cmsdk: Make sure the ACCESS_APP_SUGGESTIONS perm is not hidden.
e78ca4d Added Application Suggestions.
====================
09-15-2015
====================
* bionic/
f62434d Merge commit '12eb9c556ad50585bf0067974c4db41ce2fe0784' into 5.1
* build/
1632248 Merge remote-tracking branch 'cm/cm-12.1' into 5.1
* frameworks/av/
eb0ddf2 Merge remote-tracking branch 'CyanogenMod-upstream/cm-12.1' into 5.1
* frameworks/opt/telephony/
1d6d2e0 Blacklist : Add helper methods
* hardware/broadcom/libbt/
04fa278 libbt-vendor: Add support for Samsung wisol flavor
* hardware/libhardware/
d6a1318 Multiple LEDs [1/3]: Illumination Bars support
3812238 fingerprint: add generic set_parameters
314d405 amplifier: add set_parameters method
670e6e3 libhardware: Add POWER_HINT_LAUNCH_BOOST for PowerHAL
25fb2c9 audio: Notify amplifier HAL of device enable/disable
62244fa Fingerprint: Add getNumEnrollmentSteps [2/2]
3f1942b Fingerprint [2/2]: Numerous Fingerprint Improvements
* packages/apps/Contacts/
6c3c589 Stop contact editor from adding empty field if no more types.
* packages/apps/DeskClock/
697a9d6 Fix wrong icon used in notification bar.
* packages/apps/Gallery2/
a5aa75d Gallery3d : Fix CROP_ACTION for third party apps
* packages/apps/Mms/
5e7c1e9 Enable ': ' added after sender in notification bar ticker
36140d3 Mms: For any working message, also use default sms sub for mms.
* packages/apps/Settings/
2361249 Settings : Add input checks for blacklist input
fd19a32 Merge commit '9e6b3e7dc1e2c02c558ccdf8a85ee228c44cbe0b' into 5.1
* system/core/
d2a5cd0 Merge commit '588f13bd320503d60e7697c7171fd3ce309041c6' into 5.1
588f13b Merge branch 'cm-12.1' of github.com:CyanogenMod/android_system_core into cm-12.1
* vendor/radium/
32edd1d Merge commit 'ed63484e8a080170af8a5bc675efc6514a40c147' into 5.1
====================
09-14-2015
====================
* build/
784fb8b build: Separate commands in recovery foreach loops
* frameworks/av/
4d97392 audiopolicy: Fix the incall fix
* packages/apps/Trebuchet/
fb2b30b trebuchet: ensure crop bounds
* system/core/
fbb3be9 rootdir: Set ioprio for SurfaceFlinger
012929d Merge branch 'cm-12.1' of github.com:CyanogenMod/android_system_core into cm-12.1
* vendor/oneplus/
f04f995 Import blobs from oppo/msm8974-common
* vendor/oppo/
82f7019 n3: Remove unused camera blobs
5e39432 find7: Update camera blobs
e8d6d20 Shuffle msm8974 blobs
====================
09-13-2015
====================
* device/qcom/common/
8a0837c power-8994: Adjust options for perf
* hardware/qcom/audio-caf/msm8994/
b1b9544 hal: notify amplifier of parameter changes
* kernel/samsung/jf/
62d9dcd Revert "msm: mdp: Scotty, moar power!"
* packages/apps/CMFileManager/
93d66a3 Automatic translation import
29cfd7e CMFileManager : Switch to checked states
* packages/apps/Contacts/
b4021e7 Automatic translation import
* packages/apps/LockClock/
db50ca9 Automatic translation import
4bdff09 LockClock : Ensure configuration screen doesn't crash on orientation
* packages/apps/Mms/
81c5033 Automatic translation import
19c8223 Mms : Fix OptionsActivity fragment instantiation
* packages/apps/Settings/
9e6b3e7 Settings: persist privacy guard dialogs across rotates
9aa71cd Settings: fix rotation for managed service warning dialog
* packages/apps/SetupWizard/
aa2af71 Automatic translation import
4fb57dc Bump HOME intent priority
* packages/apps/Trebuchet/
92bdfc0 Fix mismerge
0b1bbdb Automatic translation import
03b202e Trebuchet: Make sure callbacks are available on user change.
* packages/services/Telecomm/
1099907 Automatic translation import
* vendor/radium/
ed63484 tethering: Do not override DUN in shipping builds
====================
09-12-2015
====================
* bionic/
12eb9c5 bionic: Allow devices to add device specfic static libs
18e0b4f Merge remote-tracking branch 'cm/cm-12.1' into 5.1
* build/
9265fc6 Random-Radium-1.4
7200c9e Merge remote-tracking branch 'CyanogenMod/cm-12.1' into 5.1
58ff1ed img_from_target_files: Skip oem.img in fastboot image creation
6ff590d Merge tag 'android-5.1.1_r18' into cm-12.1
7598793 repopick: Update script with some fixes
* device/oppo/common/
8669261 Automatic translation import
* device/qcom/common/
0e72bb4 power: Cleanups and improvements
* device/samsung/qcom-common/
5ec09ee Automatic translation import
* external/skia/
8876213 Merge tag 'android-5.1.1_r18' into cm-12.1
* external/whispersystems/WhisperPush/
21cbcdc Automatic translation import
* external/wpa_supplicant_8/
34258f4 Merge branch 'cm-12.1' of git://github.com/cyanogenmod/android_external_wpa_supplicant_8 into HEAD
* frameworks/av/
34a0f54 Merge remote-tracking branch 'CyanogenMod/cm-12.1' into HEAD
613cdc2 audiopolicy: Never use low-latency audio for ringtones
d75bc98 Merge tag 'android-5.1.1_r18' into cm-12.1
* frameworks/native/
af602f1 Merge remote-tracking branch 'cm/cm-12.1' into HEAD
236ebea Merge tag 'android-5.1.1_r18' into cm-12.1
* frameworks/opt/telephony/
6ff91ff Telephony: Don't show as roaming if new state isn't in service.
5c3af54 Merge tag 'android-5.1.1_r18' into cm-12.1
* frameworks/webview/
d3c0afb Merge pull request #2 from arter97/cm-12.1
* manifest/
7a31d30 manifest: track some repos from linaro
ca9c79c Revert "Track our own SetupWizard" --> till I get time to customize it
9fa7443 because as of now only @pranav01 needs it
8c55692 Merge branch 'cm-12.1' into 5.1
45a8077 android-5.1.1_r13 -> android-5.1.1_r18
* packages/apps/BluetoothExt/
0f33547 Automatic translation import
* packages/apps/CMAccount/
a3cd431 Automatic translation import
* packages/apps/CMBugReport/
68a66c2 Automatic translation import
* packages/apps/Calculator/
57ce726 Automatic translation import
* packages/apps/Camera2/
d4f3b73 Automatic translation import
* packages/apps/Contacts/
f0f345c Contacts : Ensure query excludes LOCAL_CONTACTS
* packages/apps/ContactsCommon/
0d1284a Automatic translation import
* packages/apps/DeskClock/
cca96bb Automatic translation import
* packages/apps/Dialer/
085f9a2 Automatic translation import
* packages/apps/Gallery2/
78aee6b Automatic translation import
* packages/apps/InCallUI/
3cb0f21 Automatic translation import
* packages/apps/Mms/
c468db0 Mms: Utilize default sms sub id for mms transactions.
* packages/apps/Settings/
ca8a696 Automatic translation import
82699e9 Merge remote-tracking branch 'CyanogenMod/cm-12.1' into HEAD
* packages/apps/SoundRecorder/
278a29c Automatic translation import
* packages/apps/Terminal/
6f424a7 Automatic translation import
* packages/apps/ThemeChooser/
e8f4258 Automatic translation import
* packages/apps/TvSettings/
c3bf17d Automatic translation import
* packages/apps/UnifiedEmail/
0d6cd35 Automatic translation import
* packages/inputmethods/LatinIME/
ba848b1 Automatic translation import
* packages/providers/TelephonyProvider/
f1ac0c3 BlacklistProvider : Use helper methods from utils for validity
* packages/services/Telecomm/
d2a9065 telecom: Use the low-priority vibrator for incoming calls
* packages/services/Telephony/
c5af80d Automatic translation import
* packages/wallpapers/PhotoPhase/
4ebe904 Automatic translation import
* system/core/
8ce6fe3 Revert "libcutils/liblog: Add functions required by Huawei g620_a2 binaries"
d0b153e Merge remote-tracking branch 'CyanogenMod/cm-12.1' into HEAD
14b3b67 Merge branch 'cm-12.1' of github.com:CyanogenMod/android_system_core into cm-12.1
b767d5d Revert "Charger: Add font to show real battery capacity in charger mode."
a2e20c3 Merge tag 'android-5.1.1_r18' into cm-12.1
* system/security/
4212584 Merge tag 'android-5.1.1_r18' into cm-12.1
* vendor/cmsdk/
35df988 Automatic translation import
d39c839 Update persistent storage permission string
44b9ae4 Correct permission string.
* vendor/radium/
5688a6f Merge remote-tracking branch 'tr/5.1' into 5.1
c264558 Random-Radium-1.4
669dd8d Merge remote-tracking branch 'CyanogenMod/cm-12.1' into HEAD
====================
09-11-2015
====================
* build/
7891c6b Merge remote-tracking branch 'CyanogenMod/cm-12.1' into 5.1
05bb2bb repopick: print the status of a skipped cherry pick
f02693b Merge tag 'android-5.1.1_r13' into cm-12.1
* device/oppo/common/
b575568 oppo-common: Switch to hardware/cyanogen
* device/samsung/jf-common/
3c34d5d jf: set io scheduler using sys.io.scheduler prop
* external/libpng/
a23466e Merge tag 'android-5.1.1_r13' into cm-12.1
* external/sonivox/
80852d4 Merge tag 'android-5.1.1_r13' into cm-12.1
* external/wpa_supplicant_8/
7902b17 Merge tag 'android-5.1.1_r13' into cm-12.1
* frameworks/av/
93c657f Merge tag 'android-5.1.1_r13' into cm-12.1
* frameworks/opt/hardware/
fa7272b cmhw: Add PersistentStorage API
* frameworks/opt/telephony/
0d7a1dd Catch possible NumberFormatException in ServiceStateTracker
5a8338a Merge tag 'android-5.1.1_r13' into cm-12.1
* frameworks/webview/
0c8dbdb Merge pull request #2 from ProjectDisco/lollipop
f45e7ca Update all the things!
* hardware/broadcom/wlan/
6462419 Merge tag 'android-5.1.1_r13' into cm-12.1
* hardware/cyanogen/
744c68c cmhw: Initial import of hardware/cyanogen
* kernel/samsung/jf/
e6adfbe jf: iosched musical chairs
c2f496e block, bfq: add Early Queue Merge (EQM) to BFQ-v7r8 for 3.4.0
c7f9d38 block: introduce the BFQ-v7r8 I/O sched for 3.4
f9f8fb3 block: cgroups, kconfig, build bits for BFQ-v7r8-3.4
9b3edde sysrq: Emergency Remount R/O in reverse order
* manifest/
abf8b0b Merge branch 'cm-12.1' into 5.1
0ced69b Add hardware/cyanogen
2c98138 android-5.1.1_r6 -> android-5.1.1_r13
* packages/apps/SetupWizard/
6c1d791 SetupWizard: Allow SetupWizard to use CMHW
* packages/apps/Stk/
c54e006 Merge tag 'android-5.1.1_r13' into cm-12.1
* packages/services/Telephony/
6ff6899 TeleService: Remove HomeAsUp arrow for nested pref screens
db69251 TeleService: Remove HomeAsUp arrow for nested pref screens
* prebuilts/cmsdk/
c5f124b prebuilts/cmsdk: Update api level 2 for PersistentStorage.
* system/core/
82c2e89 Merge branch 'cm-12.1' of github.com:CyanogenMod/android_system_core into cm-12.1
6306b5e Camera: Longshot with Burst Functionality.
* system/extras/
e084215 f2fs_utils: fix block alignment calculation
* vendor/cmsdk/
9f381bc cmsdk: Update api text for Persistent Storage API.
7cef6f6 cmsdk: Add persistent properties API
087f2b5 Update API txt files for cyanogenmod.media.MediaRecorder. Update API txt files for PartnerInterface.
* vendor/radium/
e4f75ba Update SPN override for China Telecom
c37c231 vendor/cm: cmsettings -> cmpartnerinterface
a385501 cm: SELinux policy for persistent properties API
====================
09-10-2015
====================
* build/
0349651 Merge branch 'cm-12.1' into 5.1
1966a9e build: Create a oem image when BOARD_OEMIMAGE_FILE_SYSTEM_TYPE is defined
* device/oneplus/bacon/
2c3dd83 Merge branch 'cm-12.1' into 5.1
* device/oppo/common/
8d41ba1 oppo-common: Decommonize button overlays
* device/samsung/jf-common/
56b4544 jflteRIL: remove remaining code from lollipop hack
e062f4d jflteRIL: kang some stuff from hlte
e718121 jf: don't let ril set signal strength type.
48b2c85 jf: Camera: dont advertise HDR on rear cam
a8e4797 Revert "jf: camera: dont advertise HDR"
* device/samsung/qcom-common/
5878c7e SamsungDoze: fix typo
* frameworks/av/
26901f3 Merge branch 'cm-12.1' into 5.1
* frameworks/native/
8e5d14a Merge branch 'cm-12.1' into 5.1
* kernel/samsung/jf/
eb049d8 msm: mdp: Scotty, moar power!
* packages/apps/CertInstaller/
1ab4169 Catch corrupt cert error
* packages/apps/Mms/
86a2db4 Temp Fix: Localize Smilies in Ukranian
* packages/apps/Settings/
42a8ab7 Merge branch 'cm-12.1' into 5.1
970f063 Settings : Update filterSpam to new contract
* packages/services/Telephony/
301cb34 Revert "Network Settings: don't crash on bad lookup"
* system/core/
3e09a07 fs_mgr: When formating ext4 volumes, respect the length parameter
a495ae3 Merge branch 'cm-12.1' of github.com:CyanogenMod/android_system_core into cm-12.1
d551b51 fs_mgr: zram: allow specifying stream count
9872087 Merge branch 'cm-12.1' of github.com:CyanogenMod/android_system_core into cm-12.1
* vendor/cmsdk/
eabd575 Add Broadcast action and query API for AudioSource.HOTWORD.
* vendor/radium/
1fd23a9 CM SDK: rename SettingsManager to PartnerInterface
f801f23 Merge branch 'cm-12.1' into 5.1
====================
09-09-2015
====================
* build/
5dee2dd build: better zsh dopush support
d7a213b Add darwin support for f2fs host tools
f28d284 releasetools: Fix the bug when deleting files.
2eeb136 releasetools: Fix the bug in symlink deletion.
* external/f2fs-tools/
4ed43ea Fix f2fs_trim_device multiple definitions
* packages/apps/CMFileManager/
72920bf Indicate number of items to be deleted in confirmation dialog
* packages/apps/Exchange/
d78074b exchange: delay_sync_on_auth_error
* packages/apps/Nfc/
f5f5eef nfc: create a bootstrap service
* packages/apps/Settings/
6d1cdbc settings: remove contributors cloud margin/padding
* system/core/
180c1d0 Fix build break for multiple definition
0e9caa6 Fix build break for multiple definition
ef42e3d Merge branch 'cm-12.1' of github.com:CyanogenMod/android_system_core into cm-12.1
979ef7f init: Fire a trigger when a class is started/stopped
* vendor/radium/
26731f5 cm: Set the IO scheduler based on a system property
====================
09-08-2015
====================
* build/
91f91b8 build: allow using host flex binary
* hardware/qcom/display-caf/msm8916/
26056c1 hwc: Reserve pipes for video layers first
6aa55f2 hwc: Avoid MDP comp for RGB downscaled layer
59e9973 hwc: Handle multiple YUV layer use case in low end targets
99271ec hwc: Avoid updating refresh-rate if already done
a75c025 hwc: Use GPU to compose for smaller updates
e619991 hwc: Set refresh rate during idlefallback for unhandled cases
d0707e1 hwc: Donot rely on previous comp type to trigger idlefallback
8de2868 hwc: Roundoff the input fps to nearest standard fps
15b0492 hwc: Trigger dynamic refresh-rate change for more usecases
* packages/apps/Settings/
94a0c9e Settings: Only show multi-sim card configuration for owners
* packages/apps/Trebuchet/
f3c0e34 Trebuchet: fix potential NPE when info is null
====================
09-07-2015
====================
* bionic/
db3fa6f cortex-a53: Use cortex-a7/bionic/memset.S instead of cortex-a15/bionic/memset.S
* device/oneplus/bacon/
b0d6e93 bacon: remove discard android does this automatically
bacd73a bacon: Enable 12k and 24k sampling rates in offload path
1744cac bacon: support f2fs /data and /cache
* device/samsung/jf-common/
d496083 Revert "jf: update audio_policy.conf to LA.AF.1.1_rb1.18"
f1b3362 jf: update media codecs to LA.AF.1.1_rb1.18
8d38067 jf: update audio_policy.conf to LA.AF.1.1_rb1.18
0aeb8fe jf: camera: enable zsl on ffc
d428910 jf: fstab: cosmetic cleanup
* frameworks/av/
fd2e17b mediascanner: handle DATE tag
* hardware/qcom/media-caf/msm8916/
215b75e mm-video: Calculate average fps to update refresh rate
dd5bb74 mm-video-v4l2: handle flush done as buffer_done and not as cmd_done
4bc8d24 mm-video-v4l2: vdec: insert timestamps qeued by client in TS queue
* kernel/oneplus/msm8974/
f34005a cm: Update defconfigs
0c51f4d block, bfq: add Early Queue Merge (EQM) to BFQ-v7r8 for 3.4.0
5731411 block: introduce the BFQ-v7r8 I/O sched for 3.4
74bfbe2 block: cgroups, kconfig, build bits for BFQ-v7r8-3.4
5e67ae4 ALSA: compress: add num_sample_rates in snd_codec_desc
0a14d1f ALSA: compress: update struct snd_codec_desc for sample rate
edc34c5 ALSA: compress: update comment for sample rate in snd_codec
d13f061 ALSA: compress: remove the sample rate check
1ea88d4 ALSA: compress: change the way sample rates are sent to kernel
1408cb5 ARM: 7983/1: atomics: implement a better __atomic_add_unless for v6+
17248c6 ARM: 7868/1: arm/arm64: remove atomic_clear_mask() in "include/asm/atomic.h"
4f737c4 ARM: 7687/1: atomics: don't use exclusives for atomic64 read/set with LPAE
d32ddd2 ARM: fix warnings about atomic64_read
6407817 sched: Implement lockless wake-queues
f432891 futex: Lower the lock contention on the HB lock during wake up
a4cfe6d locking/rtmutex: Implement lockless top-waiter wakeup
25803b2 mm: vmpressure: account allocstalls only on higher pressures
5dc3a27 mm: vmpressure: scale pressure based on reclaim context
1773fbb lowmemorykiller: avoid false adaptive LMK triggers
7b7f0a8 rtmutex: Confine deadlock logic to futex
6420c4f rtmutex: Simplify rtmutex_slowtrylock()
0fc08ae locking/rtmutex: Drop usage of __HAVE_ARCH_CMPXCHG
8bec3613 PM / Wakeup: Use rcu callbacks for better performance
caada7a rtmutex: Plug slow unlock race
09fbc6c rtmutex: Handle deadlock detection smarter
7102f4a rtmutex: Detect changes in the pi lock chain
0e98000 rtmutex: Fix deadlock detector for real
ce2f0e4 cpufreq: interactive: don't skip waking up speedchange_task if target_freq > policy->cur
d0abade cpufreq: interactive: prevents the frequency to directly raise above the hispeed_freq from a lower frequency.
04318c2 cpufreq: interactive: Reschedule timer if min_freq is reduced
c964409 fs: introduce a generic shutdown ioctl
* kernel/samsung/jf/
a727a14 jf: defconfig: disable ksm
321013d jf: dont null out sd->v4l2_dev anymore
815eb16 jf: regen defconfig
* packages/apps/Settings/
8530327 Long press no longer copies to clipboard if there is nothing to copy
* system/core/
dfc2cee Merge branch 'cm-12.1' of github.com:CyanogenMod/android_system_core into cm-12.1
====================
09-06-2015
====================
* bionic/
3225b83 Remove pushes from memsets (krait/cortex-a9).
22ee2dc Replace bx lr with update of pc from the stack.
2e5e2d0 Use unified syntax to compile with both llvm and gcc.
02b4462 Add optimized cortex-a7/cortex-a53 memset/memcpy.
* build/
cc290e3 build: Fix SuperSU path
4e154db Merge remote-tracking branch 'cm/cm-12.1' into 5.1
23ce3e0 Merge tag 'android-5.1.1_r10' into 5.1
* device/oneplus/bacon/
1908ffc bacon: update fingerprint
* device/qcom/sepolicy/
a06d6bb sepolicy: perfd to have access to mediaserver
* device/samsung/jf-common/
eb5a063 jf: camera: dont advertise HDR
* frameworks/av/
403ef6d Merge tag 'android-5.1.1_r10' into 5.1
7d1ca9f Merge remote-tracking branch 'CyanogenMod-upstream/cm-12.1' into 5.1
* frameworks/opt/telephony/
9319b2d Telephony: Make sure we're stripping non-digits prior checkDestination.
* manifest/
8645ddc track libhardware
* packages/apps/Calculator/
f6a6522 Calculator: fix localization for the widget
* packages/apps/Mms/
61c63da Mms: Don't try to send an SMS to a null destination.
* packages/apps/Settings/
4d44d64 Merge remote-tracking branch 'cm/cm-12.1' into 5.1
18cce10 APN: Filter MVNOs by SPN, GID1 and IMSI
* vendor/samsung/
db72bd9 Merge pull request #654 from jrior001/cm-12.1
aa3cb37 espressovzw: update blobs, fix all the things
====================
09-05-2015
====================
* device/qcom/common/
fc552c7 power: Boost improvements
3c85911 power: Update boost parameters
* device/samsung/jf-common/
04d28e1 jf: move and update power management
* external/f2fs-tools/
69e9384 Add darwin support for building the host tools
* frameworks/opt/telephony/
60487ea telephony: Fix FrameworksTelephonyTests.
* kernel/samsung/jf/
cbd49ec jf: fix restart from charging mode?
* packages/apps/Contacts/
ade6210 Fix build
* packages/apps/ContactsCommon/
5efce41 TRDS: Material dark theme (2/6).
49a4d9b TRDS: Fix aapt removing the darktheme resources.
* packages/apps/InCallUI/
7db469c TRDS: Material dark theme (4/6)
9d13dd3 TRDS: Fix aapt removing the darktheme resources.
* packages/apps/Settings/
d108c69 Get a handle for UserManager at creation
5a2f627 Protected apps: fixup rotation states
* system/core/
8af7057 sdcard: Properly handle deleted nodes
4c1fa45 sdcard: Turn on noatime for fuse mounted sdcard
* system/extras/
122ac16 Add darwin support for the host tools
* vendor/cmsdk/
a458122 Allow whitelist for MODIFY_NETWORK_SETTINGS permission.
26272cd Add Hotword audio capture constants.
* vendor/radium/
cefa91c Update Spain APNs
* vendor/samsung/
ab58243 Merge pull request #653 from andi34/cm-12.1.1
a3e19e2 p31xx/p51xx: remove proprietary domx/camera blobs
====================
09-04-2015
====================
* device/qcom/common/
e9f23d7 power: Updates for msm8916/msm8939
* frameworks/base/
ed4b758 Merge remote-tracking branch 'CyanogenMod-upstream/cm-12.1' into 5.1
777ba8a zygote: fix memory leak when fork process
76133b7 Fingerprint: don't start auth if not showing
59a9055 Allow default system profile state to be overlayed
e1b61c1 Keyguard: Remove bouncer when re-registering status bar
ed93fea Show infinity for large notification counts
fa72641 Let liblights adjust the brightness of LEDs while previewing it
* frameworks/native/
5fd0dfa Merge remote-tracking branch 'CyanogenMod-upstream/cm-12.1' into 5.1
* kernel/oneplus/msm8974/
f9aae8b msm8974: add f2fs
* kernel/samsung/jf/
d298f7e jf: f2fs: bring up to date with Jaegeuk's branch
* manifest/
0ede739 Update default.xml
e2edad1 Update default.xml
05327d9 Update default.xml
0310ac6 Forgot this
8bc3779 manifest: add sabermod 4.9 toolchain for aarch64 devices
530b35c manifest: track our own stuff
9a21fac Merge remote-tracking branch 'CyanogenMod-upstream/cm-12.1' into 5.1
* packages/apps/Contacts/
c272721 TRDS: Material dark theme (1/6).
14550f2 TRDS: Fix aapt removing the darktheme resources.
40784ea Merge pull request #1 from CyanogenMod/cm-12.1
* packages/apps/Mms/
f5f16e1 Fix mms failures due to invalid mmsc url
3c75cf9 Mms: show default app icon for unresolved links
309e658 REAL_GET_TASKS > GET_TASKS
* packages/apps/Settings/
f1bf96d settings: fix fc for system apps with null applicationInfo
e99decb Settings: Avoid possible NPE if resolve infos return null.
9587549 Settings: LockscreenColors: Remove icon
52093fd Fix
458564a Lockscreen colors [2/2]
1a60e66 Multiple LEDs [2/3]: Illumination Bars support
93898d4 Merge remote-tracking branch 'cm/cm-12.1' into 5.1
9405ef9 Settings: Fix a crash caused by null pointer
* packages/apps/Stk/
2ddb566 REAL_GET_TASKS > GET_TASKS
* packages/providers/TelephonyProvider/
857572a TelephonyProvider: change default user nw mode to invalid
* packages/services/Telephony/
d529e7a Network Settings: default user mode to preferred mode
* packages/wallpapers/PhotoPhase/
54a7044 REAL_GET_TASKS > GET_TASKS
* prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/
e675c48 9-1-2015 - 4.8.5 UBERTC Snapshot
* prebuilts/gcc/linux-x86/arm/arm-eabi-4.9/
0f1ee28 9-1-2015 - 4.9.4 UBERTC Snapshot
* prebuilts/gcc/linux-x86/arm/arm-eabi-6.0/
becca30 9-1-2015 - 6.0.0 UBERTC Snapshot
* prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.8/
a62e384 9-1-2015 - 4.8.5 UBERTC Snapshot
* system/core/
96c278e Merge remote-tracking branch 'CyanogenMod-upstream/cm-12.1' into 5.1
* vendor/radium/
6c8f6e5 Merge remote-tracking branch 'cm/cm-12.1' into 5.1
b31f746 Update India APNs to YU list
44752b7 vendor/cm: add curl to build
====================
09-03-2015
====================
* build/
338b399 build: Allow QC platforms to share/customize HAL variants
665e136 Revert "msm8909 uses the same branches as msm8916"
4ad2485 msm8909 uses the same branches as msm8916
e703199 repopick: open changes are either NEW or OPEN, not just OPEN
7e980a7 Fix custom URL error. Merged from cm_build_config
529e3b2 repopick: handle hardware_ril/ril-caf
df45e9f repopick: skip abandoned commits
* frameworks/base/
da2b45a Notifications: Only check for spam if new
31eb21b Remove duplicate audio: Tejat is Argon
3d26159 Fingerprint: Allow disabling of vibration
4557053 SystemUI : Toggle nav item visibility based on IME
e61da47 PackageManager: Move fingerprint feature out of android namespace.
1cd9676 core/SystemUI: Remove zh-rHK CAF translations
95757ef Automatic translation import
* frameworks/native/
11e0aba SurfaceFlinger: Fix integer overflow in Mesh ctor
94e9c4c libgui: Clear frame number while freeing slot
* frameworks/opt/chips/
afc21fb Merge "Revert "More Chip: use pendingcount instead of counting again"" into cm-12.1
* frameworks/opt/net/wifi/
1a10ec2 Merge AU_LINUX_ANDROID_LA.BF64.1.2.1_RB2.05.01.01.081.063 on remote branch
* manifest/
12e54b8 manifest: Remove separate paths for 8610/8226 HALs
* packages/apps/ContactsCommon/
46669c6 Automatic translation import
* packages/apps/DeskClock/
c1b451b DeskClock: Externalize permissions to CMSDK.
3fc8d67 DeskClock: Utilize cyanogenmod.permission.MODIFY_PROFILES.
* packages/apps/Settings/
ebedae7 Settings: Utilize cyanogenmod.permission.MODIFY_PROFILES.
91db20a settings: check bt pan service before use it
4720d1b Automatic translation import
* packages/apps/SetupWizard/
97af685 SetupWizard: Handle xfinity captival portal
97c37be SetupWizard: Check for frp in finish receiver
* packages/apps/Stk/
6275b32 Indicate which sub-activity the app name broadcast applies to