forked from GravityBox/GravityBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
3623 lines (3427 loc) · 193 KB
/
CHANGELOG.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
Changelog 10.1.2 - 07/03/2021
--------------------------------------
- Clock: reverted to old hooking strategy for better compatibility
- Dialer: adjusted for compatibility with the latest Google Dialer
--- fixes muting Dialpad tones during UNC Quiet Hours
Changelog 10.1.1 - 07/02/2021
--------------------------------------
- Added support for LSPosed module scope feature (auto-whitelist)
- BatteryPercent: fixed percent text injection not working on some systems
- BatteryPercent: follow status bar clock appearance
- Navbar: avoid cursor control keys in gestural navbar
- Dialer: adjusted for compatibility with the latest Google Dialer
- Updated Russian translations (thanks to gaich)
Changelog 10.1.0 - 27/12/2020
--------------------------------------
- Added compatibility with EdXposed v0.5
- Maintains backwards compatibility with EdXposed v0.4
- TrafficMeter: improved to avoid double counting in case of VPN traffic
IMPORTANT: Module settings are reset when EdXposed is upgraded from v0.4 to v0.5
due to changes in preferences storage location for modules in EdXposed v0.5.
It is recommended to create a backup of GravityBox settings before upgrading to EdXposed v0.5.
Changelog 10.0.1 - 24/10/2020
--------------------------------------
- General improvement of compatibility with Pixel devices (Google OS)
- Lockscreen: improved positioning of application bar
- Fixed status bar state change handler on Pixel devices:
--- fixed Media Visualizer not showing in lock screen
--- fixed Download progress bar not showing in lockscreen
--- fixed Data taffic meter not showing in lockscreen
- BatteryStyle: fixed color theming of custom battery in notification panel header on Pixel devices
- CLock: fixed positioning of clock in notification panel header on Pixel devices
- Ultimate notification control:
--- fixed Heads Up policy feature on Pixel devices
--- fixed dialer keypad muting during Quiet Hours (compatibility with the latest Google Dialer app)
- Fixed XSharedPreferences Unexpected EOF errors showing in Xposed log
- Updated Chinese (Simplified) translations (thanks to tuchit)
- HUGE THANKS TO FRANK93 FOR DONATING PIXEL 3A FOR DEVELOPMENT
Changelog 10.0.0-beta-7 - 21/06/2020
--------------------------------------
- Clock: changed hooking strategy to avoid EdXposed ART crashes
- Clock: keep master switch for Clock tweaks off by default (thanks to aviraxp)
- TrafficMeter: fixed not working when data saver is enabled
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 10.0.0-beta-6 - 23/12/2019
--------------------------------------
- Location tiles: adjusted for changes since SDK 28:
--- fixed GPS tile to show proper state when location is fixed
--- adjusted SlimKat style tile to work with Location providers instead of deprecated modes:
------- Battery saving: uses network provider
------- Device only: uses GPS provider (GPS sensor)
------- High accuracy: uses both providers
------- (provider modes are deprecated as well which means SlimKat tile will be removed in the future)
- Adjusted device locked state related features for the recent Android 10 changes:
--- fixes QS Tile protection
--- fixes Lockscreen Direct and Smart unlock
--- fixes other related features such as GravityBox Action protection on lock screen
- Added logic for identifying OnePlus7T/7Tpro as device running OxygenOS ROM
--- should fix/improve features that contain OxygenOS specifics on OnePlus 7T/7Tpro
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 10.0.0-beta-5 - 27/10/2019
--------------------------------------
- QuickSettings: added option to show Memory usage bar in QS panel
- TrafficMeter: added "Right edge" position as an alternative to existing Right position
- Settings: removed forced Go Home action from FingerPrint launcher quick-tap on OxygenOS
- Trusted WiFi: warn about Location permission requirement
- Massive update to Italian translations (thanks to Fs00)
- Updated Turkish translations (thanks to Fatih Firinci)
- Updated Russian translations (thanks to gaich)
Changelog 10.0.0-beta-4 - 13/10/2019
--------------------------------------
- Lockscreen: added option for hiding media art
- QS: RingerModeTile: synchronized with native ringer mode management
- StatusbarClock: respect time zone changes when showing seconds
- TrafficMeter: use right edge of status bar for right position
- Optimization: significantly reduced number of GravityBox related broadcast receivers
in SystemUI and Android process by implementing centralized broadcast mediator
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 10.0.0-beta-2 - 05/10/2019
--------------------------------------
- Improved compatibility with Pixel and other AOSP devices:
--- BatteryStyle: removed obsolete "Stock battery with percentage" (stock battery no longer has percent text inside the icon)
--- Navbar: do not show custom key in gestural navbar
--- Navbar: fixed swapping back and recents
--- Navbar: fixed color tinting of GravityBox navbar elements
--- Navbar: improved custom coloring of icons
--- Navbar: fixed "Always show menu key" option
- ExpandedDesktop: Allow gestures while "Hide navigation bar" expanded desktop mode is active
- Key Actions: Fixed Kill foreground app action
- Media: Added option for choosing audio streams in expanded volume panel
- Media: OxygenOS: Linked expanded volume feature with existing expand button
Changelog 10.0.0-beta-1 - 28/09/2019
--------------------------------------
- Initial beta version for Android 10
Changelog 9.1.1 - 14/06/2019
--------------------------------------
- QuickSettings:
--- fixed dual tile expand indicator color tinting/visibility (OxygenOS)
--- added tile for toggling screen refresh rate (OnePlus 7 Pro)
------ experimental full 90Hz mode can be enabled in Tile specific settings
--- added tile for toggling screen resolution (OnePlus 7 Pro)
--- added new icon for Stay Awake tile active mode
- Fixed layout/scaling of all GravityBox view elements affected by DPI change when screen resolution changes
- Media: option for setting volume panel timeout is back
- Lockscreen: added option for turning off alarm info showing in lockscreen status area
Changelog 9.1.0 - 10/06/2019
--------------------------------------
- Oneplus 7/7Pro OxygenOs fixes and adjustments:
--- fixed OnePlus 7/7Pro OOS system detection logic
--- fixed theming of QuickSettings tile detail dialogs
--- fixed navigation bar custom key layout (for standard navigation bar only)
--- fixed dynamic color tinting of GravityBox navigation bar elements
--- fixed option for hiding brightness slider in QS panel
--- fixed recents key default single-press action not working when navbar master switch is enabled
--- fixed double vibrations when using Key actions
--- fixed muting Dialpad tones during Quiet Hours
--- Visualizer: adjusted margins of header elements in dimmed screen
- StatusBar: redesigned and improved logic related to hiding system icons
--- fixes mysterious Alarm icon showing on some systems
- Keys: improved reliability of Torch on power long-press
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 9.0.0-beta-11 - 17/05/2019
--------------------------------------
- Fixed volume panel sliders visibility logic
Changelog 9.0.0-beta-10 - 10/05/2019
--------------------------------------
- Fixed custom wallpaper showing in Ambient screen when using Live wallpapers
- Added support for resource overlays:
--- improves Advanced Tuning compatibility with systems using Theme overlays
--- fixes "Remove corner padding" option on Nokia (and other) devices
--- fixes hiding navigation bar by disabling "Enable navigation bar" option in Navbar tweaks
- Media tweaks:
--- redesigned option for unlinking ring/notification volumes to allow default system behavior
--- added option for unlinking ring/system sounds volumes
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 9.0.0-beta-9 - 28/04/2019
--------------------------------------
- OxygenOS specific adjustments:
--- fixed fast charging detection logic
--- fixed option for disabling fast charging sound
--- fixed option for enabling call recording feature (requires reboot)
- Statusbar: added option for removing max notification icon restriction
- Media: added back option for unlinking ringer & notification volumes
--- does not require resource hooking support
--- accessible only from SystemUI volume panel (cannot be managed in the system's Sound settings)
- Media: added option for enabling expanded volume panel
--- Shows volume sliders for all general stream types even if they are not currently active
- Advanced tuning: fixed crashes in the settings
- Power: Fixed exception for Samsung devices (thanks to Firefds)
Changelog 9.0.0-beta-8 - 18/04/2019
--------------------------------------
- TrafficMeter: fixed visibility in lock screen
- Advanced power menu: fixed scary "Factory data reset" dialog title when rebooting to recovery
- Key actions: fixed default home key long-press action triggering after custom action when navbar master switch is disabled
- Lockscreen:
--- fixed SystemUI crash loop in case of using very large images for custom lockscreen background
--- fixed custom bottom actions not working on some systems due to ART optimizations
- Media: improved compatibility of More music volume steps feature
- Navbar: fixed navbar layout in case of using custom navbar key on OxygenOS
- Updated Italian translations (thanks to ghost-45)
Changelog 9.0.0-beta-7 - 03/04/2019
--------------------------------------
- Resource replacement:
--- redesigned for better compatibility and performance
--- implemented support for aliased resources pointing to Framework resources
- BatteryStyle: added action to open power usage summary to custom battery icon/percentage in header
- Fixed tinting of GravityBox status bar elements when notch is hidden on OxygenOS
- Fixed circle battery and percent text tinting when lockscreen is in dark mode
- Fixed stock battery icon not refreshing when switching between Stock and Stock with percentage
- Fixed SystemUI crash when power menu disabled in lock screen
- Display: fixed "Unplug turns on screen" not working on some devices
- Advanced tuning:
--- fixed main screen preferences not fitting the screen on devices with large font size
--- better compatibility thanks to resource replacement redesign (e.g. config_enableLockScreenRotation now works)
- Updated Russian translations (thanks to gaich)
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 9.0.0-beta-6 - 26/03/2019
--------------------------------------
- Clock: do not propagate date and day of week to statusbar header clock (was redundant)
- Clock: added option for controlling statusbar header clock position independently of statusbar clock position
- BatteryPercent: added option for choosing whether to show GB's percent text also in statusbar header
- BatteryStyle: added option for choosing whether to apply battery indicator style also to statusbar header
- Navbar: fixed expanded desktop behavior when navbar tweaks master switch is off
- ExpandedDesktop: improved layout when navigation bar hidden by expanded desktop
- Fixed tiles per header not updated after reboot for Samsung devices (thanks to Firefds)
- Fixed exception throwing when QuickSettings management is enabled on Samsung devices (thanks to Firefds)
- Fixed brightness bar tweaks for Samsung devices (thanks to Firefds)
- Fixed recent key not working on Samsung devices when enabling navigation bar tweaks (thanks to Firefds)
- Updated French translations (thanks to instazedd)
Changelog 9.0.0-beta-5 - 20/03/2019
--------------------------------------
- Clock: added positioning support to clock in header of expanded statusbar
--- for consistency with statusbar clock
--- also inherits features such as "Show date", "Day of week"
--- (does not support hiding clock nor showing seconds)
- BatteryStyle: added support for battery style in header of expanded statusbar
--- for consistency with status bar battery
- Navbar: fixed long-press action on Home key invoking original action after custom action
- Navbar: improved dynamic tinting of custom key and cursor control keys
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 9.0.0-beta-4 - 18/03/2019
--------------------------------------
- Volume key cursor control is back
- Fixed Torch on Power long-press
- Phone tweaks: fixed Increasing ring feature
- Clock: redesigned positioning in status bar
--- now supports default/left/right/center positions
- Fixed double-tap on Home button for Samsung devices (thanks to Firefds)
- About: PayPal donation now allows custom amount in case premium is already unlocked
- Updated Russian translations (thanks to gaich)
Changelog 9.0.0-beta-3 - 14/03/2019
--------------------------------------
- Fixed missing Alert Slider statusbar icons on OxygenOS
- Settings: Removed Advanced Power Menu options on Samsung devices
- Fixed Samsung device detection logic (thanks to Firefds)
- Fixed Lockscreen App Bar on Samsung devices (thanks to Firefds)
- Advanced Tuning: fixed missing SystemUI parameters on some devices
- Fixed dynamic color tinting of GravityBox related icons/views in statusbar
- CircleBattery: adjusted outline color for visibility on white background
- QuickSettings: fixed Tiles Per Header in landscape orientation
- Settings: fixed incorrect value of "Enable navigation bar" option
Changelog 9.0.0-beta-2 - 11/03/2019
--------------------------------------
- Fixed Fingerprint Launcher not working on some systems
- Key Actions: fixed haptic feedback issues
- CircleBattery: improved percentage font style
- Potential fix for tile protection not working on some systems
- Settings: allow Advanced Power Menu settings on OxygenOS
- Potential fix for Tiles per header option not working on some systems
- Attempt to fix QuietHours icon showing on some systems when it shouldn't
- Attempt to use native system screenshot functionality
- Reset of trial periods of UNC and Advanced Tuning
- Fixed showing battery style on lockscreen for Samsung devices (thanks to firefds)
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 9.0.0-beta-1 - 08/03/2019
--------------------------------------
- Migrated to Android Pie
Changelog 8.5.0 - 20/01/2019
--------------------------------------
- Introducing Advanced tuning (premium feature)
--- dynamically extracts boolean and integer configuration parameters from the Framework and System UI
--- presents parameters and their values within GravityBox Settings interface
--- allows overriding parameters with user-defined values
--- designed for power users - use with caution
- Improved Allow all rotations feature
--- when enabled, it is possible to apply rotation lock to landscape orientation
Changelog 8.4.1 - 08/12/2018
--------------------------------------
- Improved compatibility with Moto G5 Plus:
--- QuickSettings: Fixed SystemUI crash when expanding tile detail
--- Navbar: improved layout related to custom key/cursor control keys
--- Dialer: fixed Show dialpad automatically feature
- OnePlus: removed extra padding from the custom battery icons
- OnePlus: fixed crash related to button backlight notification feature (feature won't work on some OP devices anymore)
- Potential improvement of custom key/cursor key layout on other devices having extended navbar
Changelog 8.4.0 - 12/11/2018
--------------------------------------
- Migrated from Eclipse to Android Studio
- Lockscreen: reworked background opacity feature (now also supports default wallpaper)
- BatteryBar: added option for showing in lock screen only
- WiFi priority: changed obsolete priority feature to Trusted WiFi
- Added support for disabling "Wake on plug" on Touchwiz (thanks to Phoenix09)
- Reverted to old method for always expanded notifications on Samsung devices
- Updated Malay translations (thanks to zamzameir)
- Updated Turkish translations (thanks to Fatih Firinci)
- Updated French translations (thanks to Choukajohn)
- Updated Russian translations (thanks to gaich)
Changelog 8.3.0 - 09/09/2018
--------------------------------------
- QuietHours: additional enhancements and redesign
--- rules for ligts/vibrations/sounds/ringer whitelist can now be set for each time range independently
--- manual mode has its own set of rules that are independent of automatic time ranges
--- initial ringer whitelist for newly created time range is inherited from manual mode settings
--- added option for controlling current mode directly from the QuietHours settings
--- improved user present detection logic for Interactive mode
--- reorganized settings
--- !!! data structure changes render existing time ranges incompatible - need to be reconfigured !!!
- Made always expanded notifications collapsible (thanks to Caagr98)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Russian translations (thanks to gaich)
- Updated Turkish translations (thanks to Fatih Firinci)
- Updated Malay translations (thanks to zamzameir)
- Updated Ukrainian translations (thanks to burunduk)
Changelog 8.2.1 - 29/06/2018
--------------------------------------
- QuietHours: added support for multiple time ranges:
--- allows to set multiple time ranges for automatic quiet hours together with days which they apply to
--- change requires setting up new time ranges; as the previous ones are not preserved due to design changes
- QuietHours Interactive Mode: treat session as interactive when device is locked during phone call
- OOS Call Recording enabler:
--- reworked to support all OP devices/OOS variants
--- enabled call recorder specific options in Phone settings (auto call recording, etc.)
--- should survive firmware updates
- Search: include all children of matching preference categories
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 8.2.0 - 13/06/2018
--------------------------------------
- Settings: added search feature
--- filters the list of all enabled preferences based on specified keyword
--- maintains tree structure of filtered preferences for a user to better understand context
--- matching preference groups will show all child preferences
- QuickSettings: enabled detail view for CellularTile (non-OOS only)
- Ultimate notification control:
--- fixed crash during screen orientation change
--- redesigned Search functionality in per-app list
- UNC QuietHours:
--- added phone ringer whitelist management:
------ allows to manage list of contacts for which not to mute phone ringer during quiet hours
--- added per-app option for respecting quiet hours ignore rules during interactive mode
- Advanced reboot: fixed Reboot not working on LineageOS based ROMs
- Fixed status bar DnD system icon misbehavior on OP6
- Call recording on OOS:
--- adjusted for OP3T Beta 27 and 28
--- adjusted for OP5T Beta 8
--- adjusted for OP5 Beta 11
- APK size increased due to inclusion of necessary Android Support libraries
- Updated Turkish translations (thanks to Fatih Firinci)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Ukrainian translations (thanks to burunduk)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to Choukajohn)
Changelog 8.1.1 - 24/04/2018
--------------------------------------
- StatusBar: added option for removing rounded corner padding (8.1 only)
- QuickSettings: added option for number of quick tiles in header
- BatteryBar: added option to show bar only while charging
- Visualizer:
--- added option to show visualizer in navigation bar (thanks to @Dark_Eyes_ )
--- additional fixes and improvements (thanks to @Dark_Eyes_ )
- Pie: fixes and improvements:
--- increased max value for trigger size
--- fixed previous view flicking on activation
--- unpin currently pinned task on back long-press (has priority over custom long-press action)
- Increased lethality of Kill foreground app action
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated French translations (thanks to Choukajohn)
- Updated Russian translations (thanks to gaich)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 8.1.0 - 01/04/2018
--------------------------------------
- QuickSettings management:
--- added Ambient Display tile (Controls whether received notifications activate ambient screen)
--- added Heads Up tile (Controls whether to show heads up for notifications globally)
- Media tweaks: Visualizer extensions:
--- added option for header showing current time and battery level on dimmed screen
--- added option for media controls on dimmed screen
--- added option to show artwork as background of dimmed screen covering lock screen contents
--- improved layout and transition animations
- Power: fixed dynamic theming of Advanced Power Menu
- Dialer: adjusted for compatibility with the latest Google Dialer app
- Updated French translations (thanks to Choukajohn)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 8.0.3 - 26/03/2018
--------------------------------------
- Media tweaks: added Visualizer feature (basic functionality ported from LineageOS)
--- shows in lock screen during media playback
--- supports static as well as dynamic color (extracted from artwork of current media)
--- supports Active mode - keeps lock screen on while Visualizer is showing
--- supports Lock screen dimming with adjustable dim level (based on user interaction)
--- supports showing media info on dimmed screen
--- deactivates automatically during power saving mode
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to Choukajohn)
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 8.0.2 - 17/03/2018
--------------------------------------
- Lockscreen shortcuts:
--- added additional slot
--- added option for scale correction
- QuickSettings management:
--- fixed wallpaper-based dynamic theming of tile dialogs
--- added option for Haptic feedback (vibrate on tile press)
--- QuickAppTile: use dark theme by default for better contrast
- Battery settings: added master switch for battery settings
- Actions: improved killing of foreground apps
--- kills only what's really visible to the user
--- removes killed task from the recents panel
- Navbar: fixed light bar key color when power saving indication disabled
- GB's App Launcher: added option for choosing theme
- Media: allow volume keys skip track for music playing remotely
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Turkish translations (thanks to Fatih Firinci)
- Updated Ukrainian translations (thanks to burunduk)
Changelog 8.0.1 - 23/02/2018
--------------------------------------
- Recents: added option for always visible Clear All button (non-OOS only)
- QuickSettings:
--- fixed QuickApp tile icon appearance
--- improved scaling correction
- Screenshot: use native method if available (e.g. uses OnePlus screenshot on OOS)
- Improved handling of GravityBox services (Torch,...)
--- they should work with Battery Optimization turned on for GravityBox
- Improved handling of explicitly triggered SystemUI restarts
- BatteryStyle adjustments for Samsung devices (thanks to Firefds)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Russian translations (thanks to gaich)
Changelog 8.0.0 - 11/02/2018
--------------------------------------
- Statusbar: added option for hiding Data Saver icon (thanks to Rijul-A)
- Lockscreen:
--- fixed shortcuts initialization on file-based encrypted devices (thanks to Phil Freeman AKA GT500x)
--- fixed custom bottom shortcuts showing on ambient screen
- QuickSettings:
--- fixed QuickApp tile initialization on file-based encrypted devices (thanks to Phil Freeman AKA GT500x)
- fixed GB not receiving Unlocker response early after boot resulting in frozen screen
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 8.0.0-beta-2 - 31/01/2018
--------------------------------------
- General:
--- fixed battery percentage disappearing in status bar header
--- slightly decreased size of CircleBattery to match other status bar elements
--- don't show expanded desktop status line in 8.1 power menu
--- QS: simplified and improved dimming of protected tiles
--- fixed collision of notification icons with center clock
--- bold font for percent text (except for OOS)
--- Navbar: improved key icon scaling on 8.1
- OxygenOS specific (OOS 5.0.1/OP3T):
--- fixed Lockscreen tweaks
--- fixed positioning of custom battery icon
--- fixed option for hiding vibrate icon
--- fixed muting dash charge sound during Quiet Hours
--- QS: added OOS theming support to tile detail dialogs
--- QS: enabled detail dialog for WiFi tile
--- fixed statusbar header clock actions
- Samsung specific (thanks to firefds):
--- fixed Samsung device identification
--- fixed LTR enforce
--- fixed Advanced power menu
--- fixed Lockscreen bottom shortcuts
--- fixed volume dialog tweaks
Changelog 8.0.0-beta-1 - 24/01/2018
--------------------------------------
- Initial release for Android Oreo
Changelog 7.0.6 - 24/11/2017
--------------------------------------
- Moto specific adjustments:
--- QS: added protection support to Cellular data tile
--- QS: fixed scaling of signal tiles (WiFi, Cellular)
--- QS: fixed panel top padding when brightness slider hidden
--- SignalCluster: fixed option for hiding empty SIM slots
--- SignalCluster: fixed option for disabling exclamation marks
--- SignalCluster: fixed data activity indicators
--- SignalCluster: fixed option for showing H+
--- SignalCluster: added option for using AOSP mobile type icons
--- ExpandedDesktop: fixed isNavigationBarOnBottom error
--- Power: fixed Proximity Wake Up feature
--- Key actions: fixed Torch on power long-press feature
- Updated Spanish translations (thanks to manos78)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 7.0.5 - 17/11/2017
--------------------------------------
- Image chooser:
--- improved compatibility (thanks to Ashtrix for testing and providing logs)
--- custom icon picker now allows to use uncropped (original) images
- QS: reduced QS panel top margin when brightness slider hidden
- Added switch for Error logging in About section (off by default):
--- module logs errors to Xposed log only when switch is enabled
--- avoids flooding Xposed log happening on unsupported devices
- Permissions: added back WakeLock permission
--- needed by Camera2 Torch API on some legacy LineageOS devices (blame LOS devs)
- Updated Turkish translations (thanks to Fatih Firinci)
- Updated Russian translations (thanks to gaich)
- Updated Polish translations (thanks to kkthx)
Changelog 7.0.4 - 29/10/2017
--------------------------------------
- QuickSettings management:
--- Added option for Locked tile indication (none, dimmed icons, padlock, key)
--- WiFi tile: added option for quick mode
--- Bluetooth tile: added option for quick mode
--- CellularTile: fixed click actions working while tile locked
--- DnD tile: fixed click actions working while tile locked
- Key actions:
--- recents long-press action is back
--- added Split screen action
- GB Actions: added Split screen action (shortcut)
- OxygenOS: fixed missing vibrate icon in vibrate only mode
- Fixed advanced power menu for some Samsung devices (thanks to Firefds)
- Fixed Force LTR for RTL locales on Samsung devices (thanks to Firefds)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 7.0.3 - 23/10/2017
--------------------------------------
- General fixes and improvements:
--- QS: improved reliability of NFC tile and GravityBox NFC Actions
--- QS: reworked Protected mode of tiles
--- QS: fixed protected tiles showing wrong color after unlocking
--- QS: fixed some long-press actions still working on protected tiles while locked
--- QS: fixed press actions still working for header tiles while locked
--- QS: removed info icon showing for protected tiles
--- Improved image choosing/cropping to eliminate direct file access causing problems on some systems
--- ProgressBar: fixed not showing for apps targeting old versions of Android
--- GB Torch: fixed auto-off feature to use Alarm (does not require WakeLock permission anymore)
--- Phone: adjusted for the latest version of Google Dialer
- OxygenOS improvements:
--- Added OOS theming support to GravityBox tiles
--- Added option for enabling built-in call recording
--- Added option for disabling Dash charging sound
--- Made Dash charging sound respect GB Quiet Hours
- Samsung fixes and improvements (provided by Firetds)
--- Fixed duplicate reboot confirmation
--- Added Samsung specific strings for rebooting into Download mode
--- Fixed disabling safe media volume warning
--- Fixed duplicate notification slider showing in Volume panel
- Updated Russian translations (thanks to gaich)
Changelog 7.0.2 - 14/10/2017
--------------------------------------
- General fixes:
--- fixed image chooser to use proper cache
--- VolumePanel: changed auto-expand behavior
------ fixes closing volume panel on outside touch
------ has a side effect in form of 2-step animation which does not have a solution
--- QuietHours tile: fixed switching modes
--- Fixed hidden status bar clock showing after reboot
--- Fixed navbar key colors not fully applied after reboot
--- Adjusted Force LTR for RTL locales feature
- OxygenOS fixes:
--- Fixed stock battery icon showing when Dash charging
--- Added option for hiding Dash charge icon in Status Bar (for stock battery indicator)
--- Circle battery indicates Dash charging by faster charging animation (keeps dash icon hidden)
--- Fixed double vibrate icon
- Samsung fixes (provided by Firefds)
--- Fixed coloring of settings button
--- Fixed reboot to download (bootloader) mode
--- Fixed lockscreen carrier text
--- Fixed manipulation of lockscreen bottom shortcuts
--- Fixed Circle battery size
--- Fixed battery style not updating in lockscreen
Changelog 7.0.1 - 11/10/2017
--------------------------------------
- Fixed bug which resulted in all devices being identified as running OxygenOS
- Use protected storage for GravityBox preferences and other GravityBox files
--- allows devices with file-based encryption to read preferences at boot (Pixel, OP5, ...)
--- !!! this change causes reset of all the GravityBox settings !!!
Changelog 7.0.0 - 11/10/2017
--------------------------------------
- Nougat specific fixes
- Compatible with AOSP 7.0/7.1 and OOS 4.5
Changelog 7.0.0-alpha-01 - 09/08/2017
--------------------------------------
- Initial release for Android Nougat
Changelog 6.3.7 - 29/05/2017
--------------------------------------
- Lockscreen tweaks: use stock icon for bottom action in case of Phone app
- QuickSettings management:
--- added another 2 QuickApp tiles
--- added Bluetooth Tethering tile
- GravityBox Actions: added SIM settings shortcuts (dual SIM only)
--- allows quick changing default SIM for calls/messages/cellular data
--- allows automation apps to change SIM settings based on user-defined conditions
--- supports interactive shortcuts (shows dialog for choosing SIM)
--- supports direct change shortcuts (without user interaction)
- Dialer tweaks:
--- show dialpad feature adjusted for compatibility with the latest Google Dialer
--- removed no longer supported unknown caller photo feature for SDK25 Google Dialer
- Quiet Hours Wear Mode: don't vibrate watch when user present on a phone
- Updated Russian translations (thanks to gaich)
Changelog 6.3.6 - 19/04/2017
--------------------------------------
- Lockscreen tweaks:
--- Added option for custom bottom-right action
--- Added option for hiding bottom actions
--- Added option for Direct Unlock See Through transparency level
- QuickSettings management:
--- Reintroduced brightness slider options on OOS 3.5
--- Improved GPS tile (CM style) with proper location fix indication
- Ultimate Notification Control:
--- Adjusted form compatibility with Vernee Apollo
--- QuietHours: implemented Wear mode:
------ mutes notification sounds and device-wide vibrations while preserving vibrations on a paired watch
------ can be toggled from QuietHours tile or via dedicated GravityBox Action
------ available only when Android Wear app is installed
- CircleBattery: fixed icon tint in status bar header
- Made screenshot faster by introducing dynamic context-aware delay
- Adjusted for compatibility with the latest GravityBox Unlocker v1.4.2
--- improved reliability of license validation
--- !!! won't work with older versions of the Unlocker !!!
- Updated Russian translations (thanks to gaich)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Turkish translations (thanks to Fatih Firinci)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 6.3.5 - 12/03/2017
--------------------------------------
- Download Progress Bar: implemented extensions from SBDP module
--- added support for multiple concurrent progress bar notifications
--- keeps track of all available progress bar notifications and switches between them
--- added support for clearable notifications containing progress bar
--- added logic for auto-hiding progress of idle notifications
--- added option for sound notification
--- added option for playing sound only when screen is off
- Lockscreen shortcuts:
--- improved notification badge layout
--- added support for missed call count showing for default dialer app
--- fixed bug in icon not being updated when changing app
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 6.3.4 - 26/02/2017
--------------------------------------
- preparations for upcoming changes in Google Play refund policy
- all upcoming GravityBox versions will allow premium features only while Unlocker is installed
- PayPal method is preserved but requires reactivation using valid transaction ID
Changelog 6.3.3 - 18/02/2017
--------------------------------------
- Lockscreen shortcuts: added option for showing notification count badges
- Statusbar clock: added option for showing seconds
- Power tweaks: added Constant battery charging LED mode (requires LED driver support)
- Media tweaks:
--- improved Force music volume control option
--- restrict MX player pro from utilizing swapped volume keys (thanks to Forever-Young)
- Fingeprint Launcher: improved quick tap/swipe detection on some devices
- Updated Russian translations (thanks to gaich)
Changelog 6.3.2 - 25/12/2016
--------------------------------------
- Added support for additional OP devices running OOS 3.5
--- OnePlus 3 OOS 3.5 (beta 7)
--- OnePlus 2 OOS 3.5.5 (official)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 6.3.1 - 22/12/2016
--------------------------------------
- OnePlus3T adjustments:
--- improved identification of OP3T devices running OOS 3.5
--- GravityBox tiles now follow display theme color accent
--- Key actions: fixed double haptic-feedback on capacitive keys
- Improved audio quality of QuickRecording tile
- Updated Ukrainian translations (thanks to burunduk)
Changelog 6.3.0 - 12/12/2016
--------------------------------------
- Adjusted for compatibility with OxygenOS 3.5 (OnePlus 3T)
--- visit support thread at XDA for more info
- Fixed action for expanding notification panel not working on some devices
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated German translations (thanks to Basti1512)
- Added Persian translations (thanks to sami akherati)
Changelog 6.2.1 - 06/11/2016
--------------------------------------
- Fingerprint launcher extended:
--- allows per-finger actions - each enrolled fingerprint can have own action
--- allows quick tap (or swipe) action (experience depends on hardware capabilities)
--- added command to pause launcher until next screen off/on cycle
------ useful in case other app needs sensor for a longer time period, e.g. during fingerprint enrollment
--- made status messages (toasts) optional
--- improved reliability
- GravityBox Actions:
--- added explicit expand/collapse notification panel actions
--- added explicit expand/collapse QS panel actions
- Updated Turkish translations (thanks to Fatih Firinci)
Changelog 6.2.0 - 03/11/2016
--------------------------------------
- Fixed issue preventing module from working on some devices
- Fixed battery percent text sign showing in lock screen even if disabled
- Lockscreen tweaks:
--- Imprint mode adjusted for compatibility with newer Android 6.0.1 releases
- GravityBox Actions:
--- expand notification panel instantly instead of slow animation
--- brought back action for expanding quick settings panel
- Introducing Fingerprint launcher (available within main settings screen):
--- allows launching app/action using fingerprint sensor when screen is on
and device is unlocked
--- provides 10 second time window when other app requests fingerprint
authentication during which user must take action before Launcher tries
recapturing sensor
--- EXPERIMENTAL option for quick tap mode, which accepts
unrecognized fingerprints and quicker taps to launch app/action. Can
temporarily lock out sensor when too many subsequent auth failures occur
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 6.1.7 - 25/10/2016
--------------------------------------
- Ultimate notification control:
--- fixed bug affecting options for Lockscreen visibility, Hide persistent, Progressbar tracking indtroduced in 6.1.6
--- added option for ignoring LED for updated notifications
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 6.1.6 - 21/10/2016
--------------------------------------
- QuickSettings:
--- added option for showing brightness icon next to brightness slider
------ toggles adaptive brightness on press / opens display settings on long-press
--- added support for systems missing IntentTile
--- added support for Moto Data tile
--- fixed showing Cellular tile detail on devices that have more instances of Cellular tile (Moto)
- StatusBar colors: extended to support all system icons
- Battery settings: restrict Lenovo devices from using Percent text
- Media tweaks: restrict MX player from utilizing swapped volume keys
- Phone tweaks:
--- moved telephony features from Dialer to system level
------ flip action/call vibrations now independent of Dialer which potentially
------ makes these features work on devices having alternative Dialer
- Dialer tweaks: adjusted for compatibility with Google Dialer 4.1 and 5.1
- Ultimate notification control:
--- added option for ignoring active screen for updated notifications
--- improved LED compatibility with Vernee Apollo Lite (thanks tomidix for testing)
- Updated German translations (thanks to Basti1512)
- Updated Chinese (Simplified) translations (thanks to liveasx,ipcjs)
- Updated Russian translations (thanks to gaich)
Changelog 6.1.5 - 06/08/2016
--------------------------------------
- Phone tweaks: adjusted for compatibility with Google Phone app v4.0
- Signal cluster tweaks: improved Motorola compatibility (thanks to Kamin4ri)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Hungarian translations (thanks to benjoe1)
- Updated German translations (thanks to Basti1512)
Changelog 6.1.4 - 18/06/2016
--------------------------------------
- Lockscreen: Bottom-left action extended to support custom actions
--- note that only icons from predefined list are supported
- Statusbar: brightness control extended to work in lock screen
- Media tweaks: improved reorient volume keys feature (e.g. works with YouTube now)
- Power tweaks: added option for choosing wireless charging sound
- Updated Russian translations (thanks to gaich)
- Updated Italian translations (thanks to Fabb2303)
Changelog 6.1.3 - 03/06/2016
--------------------------------------
- About: added option for forcing AOSP device identification
- UNC: adjusted LED on/off duration limits
- Updated Hungarian translations (thanks to benjoe1)
Changelog 6.1.2 - 22/05/2016
--------------------------------------
- Navbar: extended custom key icon style to allow transparent and custom icon
- Key actions:
--- keep screen off during power key torch
--- added option to allow volume rocker wake while music is active
--- brought back toast for auto-rotation change action
- Media tweaks:
--- fixed volume adjust when volume skip track enabled and screen is off
--- adjusted volume panel timeout option to use slider
--- apply volume panel timeout even if accessibility feedback is enabled
- TorchService:
--- reworked to use Camera2 API thus increased LED response
--- adjusted to run only in case user actually uses GravityBox Torch feature
- Xperia specific adjustments:
--- improved support for Quick Settings tiles:
------ all tiles are explicitly available in QS management although some of them may
------ not be supported by particular device (thanks corrupt for testing)
--- UNC: potential fix for notification Lockscreen visibility feature (untested)
--- suppressed getFillColor errors appearing in xposed log
- Fixed SystemUI crash caused by navbar tweaks on Nvidia Shield
- Fixed Lockscreen shortcuts on Zopo Speed 7 (and potentially other MediaTek devices)
- Removed no longer needed permissions: Camera; Change WiFi state
- Updated Hungarian translations (thanks to benjoe1)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Russian translations (thanks to gaich)
- Fixed offensive typo in Indonesian translations (thanks to ja-som)
Changelog 6.1.1 - 23/04/2016
--------------------------------------
- Key actions: locskcreen torch extended to support power long-press (when screen is off)
--- screen turning on is by design, will turn off immediately after torch is activated/deactivated
--- respects proximity wake-up feature
- GravityBox Actions: made toasts optional (use check box available when creating a shortcut)
- Navbar: fixed menu key responsiveness for low navbar sizes
- QuickSettings: some Xperia specific adjustments:
--- makes GB recognize DataTraffic and Tethering tiles so it can control their visibility and order
--- forces reinitialization of tiles after device is fully booted
- Updated Ukrainian translations (thanks to burunduk)
Changelog 6.1.0 - 17/04/2016
--------------------------------------
- GB Actions extended:
--- most of the toggle actions now have explicit on/off shortcuts available
--- makes things easier for Tasker users
--- provides feedback in form of toast when action gets executed
- Statusbar: added option for hiding vibrate icon
- Navbar: added option for auto-fade show keys policy
- Ultimate notification control:
--- Added option for suppressing notification light based on system's native Do not disturb mode
--- ActiveScreen: don't perform for low priority notifications
- Key actions: suppress volume key wake while music is playing
- Fixed double-tap lock screen to sleep issue on Xperia devices introduced in 6.0.8
- Updated Malaysian translations (thanks to zamzameir)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 6.0.8 - 05/04/2016
--------------------------------------
- CircleBattery: fixed refreshing issue
- Navbar: added option for auto-fading soft keys
- Lockscreen: added option for PIN scrambling
- StayAwake tile: added option for auto-reset of screen timeout when screen turns off
- Updated Ukrainian translations (thanks to burunduk)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Malaysian translations (thanks to zamzameir)
- Updated Russian translations (thanks to gaich)
Changelog 6.0.7 - 19/03/2016
--------------------------------------
- QuickSettings management: added support for MediaTek Timeout tile
- Ultimate notification control:
--- added option for controlling notification visibility in lock screen
--- added option for hiding persistent notifications (similar to Ongoing notification blocker but on per-app basis)
--- fixed system/service notifications not being processed by notification control
- Media: fixed volume controls not working when skip track feature is enabled together with Ambient Display feature
- Improved layout of circle battery
- Fixed some Samsung Touchwiz incompatibilities (thanks to wanam)
- Updated Russian translations (thanks to gaich)
- Updated German translations (thanks to F43nd1r)
- Updated Ukrainian translations (thanks to burunduk)
- Updated French translations (thanks to ch-vox)
Changelog 6.0.6 - 12/03/2016
--------------------------------------
- Lockscreen: added option for disabling Imprint vibrations
- Quick settings management:
--- BatteryTile: made temperature and voltage optional
--- Added option for Scale correction:
----- allows fine-tuning of tile size by applying correction factor to automatic scaling factor that's based on tiles per row option
- Media tweaks: allow volume keys skip track during ambient display
- Statusbar tweaks:
--- Battery: added option for battery percent text position in status bar
--- Clock: put AM/PM in front of clock for Chinese locales (thanks to npes87184)
--- Ongoing notification blocker: include non-clearable notifications in general
- Navbar: option for larger icons reworked for MM compatibility
- Ultimate notification control:
--- added options for Replace mode of overriden vibration/sound (turned on by default)
----- applies overriden vibration/sound only in case original notification has vibration/sound
----- prevents low priority notifications from vibrating/playing overriden sound
- Updated Hungarian translations (thanks to benjoe1)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to npes87184)
- Updated Ukrainian translations (thanks to burunduk)
Changelog 6.0.5 - 09/02/2016
--------------------------------------
- QuickSettings management:
--- optimized Compass tile to avoid QS panel lockups
--- changed behavior of StayAwake tile
--- maybe improved compatibility with devices running system derived from CM (untested, without guarantee and support)
- QuietHours: added option for disabling device vibrations
--- replaces "Disable haptic feedback" option
--- turns off ALL vibrations on a device, including those coming from 3rd party apps
--- allows notifications to vibrate during QH on paired Android Wear (in case option for muting notification vibrations is disabled)
- Lockscreen: added option for defining Smart unlock policy (analogic to Direct unlock policy)
- Phone: adjusted cropping in unknown caller photo chooser to match in-call screen photo dimensions
- Key actions: don't allow actions while current foreground app is pinned
- TrafficMeter: exclude traffic from loopback and TUN (VPN) interfaces (thanks to dantmnf)
- Navbar: fixed recents doubletap action not surviving reboot
- BatteryPercent: fixed text size reverting to default
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Ukrainian translations (thanks to burunduk)
- Updated Hungarian translations (thanks to benjoe1)
Changelog 6.0.4 - 24/01/2016
--------------------------------------
- QuickSettings management:
--- Implemeted generic "detail view" support which brings new possibilities
--- Location tile (SlimKat): redesigned to support detail view, quick mode and dual mode
--- NetworkMode tile: redesigned for simplicity and flexibility:
------ allows user to freely choose network modes of interest tile should support
------ supports all currently available network modes
------ supports detail view and quick mode
------ label indicates current network mode
--- RingerMode tile: extended to support detail view and quick mode
--- StayAwake tile: extended to support detail view and quick mode
--- Do not disturb tile: extended to support quick mode
--- Hint: use "Tile specific settings" category within QS management to configure new behavior of tiles above
--- HotSpot tile: open tether settings on long-press
- Fixed Now on tap (Search) action not working when navbar disabled
- Updated Chinese (Traditional) translation (thanks to npes87184)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Small fixes in Dutch translations (thanks to Gijs Timmers)
- Updated Ukrainian translations (thanks to burunduk)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to ch-vox)
Changelog 6.0.3 - 20/12/2015
--------------------------------------
- Fixed GB settings not sticking on some devices
- Added support for auto-color inversion of GB status bar elements on white status bar (doesn't apply when icon coloring is turned on)
- Lockscreen: improved Quick unlock feature (requires user to specify PIN length)
- Power: added option for defining vibrate pattern when launching Camera by pressing power key twice
- Circle battery: improved percent text size and position (thanks to creeve4)
- Moved battery percent text to the right of battery icon for consistency with header and keyguard
- Improved support for RTL locales
- Cleaned up unused resources
- Other small adjustments (see commit history in project's github)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Vietnamese translations (thanks to TranDatDT)
- Updated Ukrainian translations (thanks to burunduk)
Changelog 6.0.2 - 08/12/2015
--------------------------------------
- Lockscreen:
--- added "Imprint mode" feature - allows changing default fingerprint behavior (Wake and unlock / Wake only)
--- added option for changing bottom-left action (currently supports: default or phone)
- QuickSettings management:
--- added long-press support to dual mode tiles
--- Cellular tile: added option for defining mobile data toggle behavior
--- Cellular tile: open cellular network settings on long-press (depends on how mobile data toggle behavior is set)
--- WiFi tile: open WiFi settings on long-press during dual mode
--- BlueTooth tile: open BT settings on long-press during dual mode
--- Added long-press actions to other non-dual stock tiles (Airplane, Cast, DoNotDisturb, Location)
- Power: improved proximity wake-up feature in combination with fingerprint sensor:
--- won't unlock in case screen stays off due to prox. sensor being covered
--- speed up: reduced unlock latency when using prox. wake-up in combination with fingerprint sensor
- GB Settings: added "Don't show again" button to permission warning dialog
- Changed style of circle battery (thanks to creeve4)
- Phone: unknown caller photo adjusted for Dialer 2.3 (thanks to romracer)
- Charger sounds: fixed plugged/unplugged sounds being played at the same time on some devices
- Recents: fixed search bar related errors showing in xposed log
- Updated Spanish translations (thanks to choldimir)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to ch-vox)
Changelog 6.0.1 - 22/11/2015
--------------------------------------
- Lockscreen:
--- reworked and optimized Quick Unlock feature (limited to work only with PINs/passwords with up to 6 characters)
--- Shortcuts: don't allow unsafe GB actions (connectivity/location related) when device locked
--- Shortcuts: dynamically show/hide unsafe GB actions based on current lock screen security state
--- Shortcuts: don't offer GB actions which don't make sense in lock screen context (kill app, switch to last app, ...)
--- Shortcuts: offer GravityBox Unlock action
--- Shortcuts: dismiss lockscreen for certain GB actions (Google Now, Show recent apps)
- QuickSettings management:
--- NFC Tile is back
--- LockScreen Tile is back
--- improved security logic
--- fixed secured tiles showing when lock screen activity is in the foreground (such as Camera)
--- NetworkModeTile: fixed for devices having TD-SCDMA default network mode preset in build.prop
- GravityBox Actions: fixed Google Now action
- Pie: fixed Search key crashing SystemUI
- AppLauncher: don't show unsafe GB actions (connectivity/location related) when device locked
- TrustedWifi:
--- adjusted for compatibility with devices running newer Android 6.0 release (N5X, N6P, ...)
--- fixed manual re-lock not working when trusted WiFi enabled
- Media: unlink ring & notification volumes feature is back
- PowerMenu: replaced "Factory reset" dialog title when rebooting to recovery
- Dialer: fixed action buttons invisible during call (when full screen caller photo enabled)
- Ultimate notification control:
--- fixed and optimized disabling touch sounds during QuietHours
--- fixed ActiveScreen
- Fixed typo in Turkish translations (Backup successful)
- Updated Hungarian translations (thanks to benjoe1)