forked from GravityBox/GravityBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.txt
1679 lines (1605 loc) · 88.7 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 3.1.8 - 16/06/2014
--------------------------------------
- Fixed brightness control and other affected statusbar tweaks for Android 4.1
- Updated French translation (thanks to ch-vox)
Changelog 3.1.7 - 15/06/2014
--------------------------------------
- Ultimate notification control:
--- added option to specify time interval for "Alert only once" option
------ update to existing notification arriving after time interval expires won't be muted
- Statusbar brightness control revised (thanks to jacknicholson)
--- Prevent brightness changes after notifications panel has been opened
--- Don't adjust brightness for swipes <45° from vertical.
- Ring targets: apply highlight color change to all icon types
- AppPicker preference: added support for choosing custom icons
--- long-press on preference icon triggers custom icon pick
--- single-press preserved (shows list of predefined icons)
--- compatible with standard Gallery only (incompatible with Google Photos)
- Added option to show short date in statusbar clock
--- with extended option for clock date allowing to choose date format (thanks to bgcngm)
- Implemented delete action within screenshot notification
- Pie controls:
--- added option for Mirrored keys (swaps key positions)
--- added option for Centered trigger - triggers pie only when swiping from center of the screen edge
--- fixed back key alt. icon not showing when IME (keyboard) is showing
- Lockscreen: added option to disable emergency call button (USE AT YOUR OWN RISK!!!!)
- Fixed bugs in autobrightness settings
--- improved sanity check for entered LUX values
--- prevent bootloop in case of invalid values
- Developer settings: added 1.25x animation scale
- Added partial Norwegian translations (thanks to Simen B)
- Updated Russian translations (thanks to gaich)
- Updated German translations (thanks to LibertyMarine)
- Updated Italian translations (thanks to pesa1234)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Russian translations (thanks to gaich)
- Updated Slovak and Czech translations
Changelog 3.1.4 - 26/05/2014
--------------------------------------
- Added alternative way of making a donation via Play Store (About / Get unlocker)
- QuickSettings:
--- fixed broken layout of signal tiles on Motorola Razr devices
--- fixed Quick pulldown misbehavior after orientation change
--- made Swipe to QuickSettings optional
--- Smart Radio tile: added indication of current/upcoming state
- Fixed couple of issues for Nexus 7:
--- clear all recents button layout (covered by navigation bar)
--- QS tiles per row in landscape orientation
- Navigation bar custom key: added option for using alternate icon
- Smart Radio: option to ignore mobile data availability
- GB Actions: added shortcut for toggling Synchronization
- Proper hide of tweaks not compatible with Acer skinned ROMs (thanks to bgcngm)
- (Potential) Fix for ongoing notification blocker on Android 4.1
- Updated Polish translations (thanks to xtrem007)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated French translation (thanks to ch-vox)
- Updated Russian translations (thanks to gaich, abusalimov)
- Updated Italian translations (thanks to pesa1234)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations (thanks to Ja_Som)
Changelog 3.1.3 - 21/05/2014
--------------------------------------
- Adjusted for compatibility with Xposed Framework 2.6
- UNC Quiet Hours:
--- fixed time ranges being affected by timezone change (requires setting ranges again)
--- fixed refreshing of statusbar icon and tile on manual time change or timezone change
- GravityBox Actions: added shortcut for setting ringer mode
- GB App Launcher:
--- added one more row for setting up 4 additional apps/shortcuts
--- improved initialization at startup
--- added logic to handle assigned apps removal/uninstall
--- optimized to use less system resources
- Notification panel: swipe to quick settings adjusted to work within whole panel area
- VolumePanel transparency: making view opaque on interaction is now optional
- Data Traffic Monitor: option to show only for mobile data
- Added new battery style: dashed circle without/with percentage
- Developer options: added 0.75x animation scale
- Ongoing notification blocker: fixed scaling of icons in the list
- Backup: prevent media scanner from scanning backup folder
- Fixed issues with launching apps/shortcuts from unlock ring
- Hide tweaks not compatible with Acer skinned ROMs (thanks to bgcngm)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Spanish translations (thanks to jvbferrer)
- Updated German translations (thanks to Minty123)
- Updated French translation (thanks to ch-vox)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Polish translations (thanks to xtrem007)
- Updated Italian translations (thanks to valerioscifoni)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Vietnamese translations (thanks to alienyd)
- Updated Slovak and Czech translations
Changelog 3.1.1 - 03/05/2014
--------------------------------------
- Phone tweaks: Added option for ascending (increasing) ring tone
- Lockscreen tweaks:
--- Fixed issues with launching activities from "slide before unlock" ring (double-ring anomaly)
--- Allow safe GravityBox Actions to be run from unlock ring and navbar ring when lock screen is secured
--- Anti-aliased Battery Arc for better visual quality
- GB App Launcher:
--- Allows app launcher to be triggered from unlock/navbar rings on secured lock screen
--- Will request unlock prior to launching activity - prompts user to unlock before running activity
- GravityBox Actions: Added action for toggling Airplane Mode
- Statusbar tweaks: Added option for controlling Bluetooth icon visibility
- SignalCluster: Added muting mechanism to eliminate log spamming
- Navbar tweaks: Don't show search icon hint when navbar ring is disabled (4.2+)
- Key actions: Added action for in-app search (works in apps that support it)
- Launcher tweaks: Adjusted for compatibility with the latest obfuscated version of GNL
- Power Menu: Improved option to disable power menu while locked:
--- Won't allow power menu while activity that's allowed to be running
during keyguard lock is in the foreground (e.g. emergency dialer or camera app)
- Icon Picker: Added icon for Snapchat (thanks to jacknicholson)
- Misc tweaks: Option to force LTR layout direction for RTL languages (4.2+)
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Italian translations (thanks to pesa1234)
- Updated German translations (thanks to LibertyMarine, Minty123)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Russian translations (thanks to gaich)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Polish translations (thanks to xtrem007)
- Updated Slovak and Czech translations
Changelog 3.1.0 - 25/04/2014
--------------------------------------
- Hide tweaks not compatible with Lenovo VibeUI ROMs (thanks to bgcngm)
- QuickSettings management:
--- added Quiet hours tile:
------ single-press cycles between QH on/off (manual mode)
------ long-press turns on QH auto mode (follows time ranges defined in QH settings)
------ long-press during auto mode opens QH settings
- UNC Quiet hours:
--- fixed bug in time range handling for Friday/Sunday
--- added option for ignoring QH on per-app basis:
------ allows ignoring QH for all notifications arriving from particular app
------ allows defining keywords for which to ignore QH (QH will be ignored for notifications containing keywords)
- GravityBox Actions:
--- added Quiet hours shortcuts:
------ one for toggling manual on/off, another one for switching to AUTO mode
------ 3rd party control via intent available:
--------- Intent: gravitybox.intent.action.ACTION_TOGGLE_QUIET_HOURS
--------- Extra param (optional): qhMode (case sensitive string; supported values: ON, OFF, AUTO)
--- fixed Google Now action not launching on devices without navigation bar
--- fixed bug in launching GB Actions from unlock ring (toggle actions were affected)
--- prevent unsafe GB actions from launching from navbar ring or unlock ring when keyguard is secured (security measure)
- Display tweaks: Changed unit of pulse notification delay to allow values < 1s
- Improved support for RTL languages (4.2+)
--- proper cursor control arrows in navigation bar
--- proper mobile signal icons (e.g. when statusbar coloring is on)
--- switching between RTL/non-RTL system language requires reboot for GB to load proper resources
- Updated Italian translations (thanks to pesa1234)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Japanese translation (thanks to WedyDQ10)
- Updated French translation (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated German translation (thanks to LibertyMarine)
- Updated Slovak and Czech translations
Changelog 3.0.4 - 17/04/2014
--------------------------------------
- Media tweaks:
--- fixed bug affecting safe media, volume orientation switcher and force music control options (thanks to bgcngm)
--- option for adjusting volume panel transparency
- StatusBar:
--- fixed data traffic monitor positioning on Android 4.1 (thanks to Mr.Its for testing)
--- fixed Quiet hours statusbar icon to match JellyBean theme
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Slovak and Czech translations
- Updated Italian translations (thanks to pesa1234)
- Updated Portuguese (PT) translation (thanks to bgcngm)
Changelog 3.0.3 - 15/04/2014
--------------------------------------
- Ultimate Notification Control:
--- Quiet hours: option to show icon in status bar during Quiet hours
--- Quiet hours: additional time range for weekends with automatic smart logic for Friday/Sunday
--- Active Screen: optimized proximity sensor usage
--- fixed handling of LED settings during Quiet hours
--- fixed UNC settings not being backed up/restored
- BatteryPercentText: option for choosing charging color
- Option for forcing English locale (under About menu)
- ModClearAllRecents: fixed rare FC occurring under special conditions ( https://plus.google.com/104339936357527615598/posts/BYdGbSrQXHj )
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Spanish translations (thanks to jvbferrer, cgrs)
- Updated French translation (thanks to ch-vox)
- Updated German translation (thanks to Minty123)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Indonesian translation (thanks to awaaas)
- Updated Slovak and Czech translations
Changelog 3.0.2 - 08/04/2014
--------------------------------------
- Ultimate Notification Control extended:
--- Implemented default settings:
------ when enabled, all apps that have no active explicit settings will automatically use default settings
--- Active Screen:
------ automatically turns on screen every time new notification arrives
------ optionally expands notification panel automatically
------ takes into account whether device is in the pocket or case
------ master switch + configuration on per-app basis
--- Quiet hours:
------ mutes sounds/vibrations for all notifications arriving within defined time range
------ optionally mutes LED (won't pulse when notification arrives)
------ mutes also GB's charger plugged/unplugged/battery charged sounds
--- More control over LED settings:
------ allows preserving original LED settings coming from a particular app
------ allows overriding LED settings to provide custom behavior
------ allows turning LED off for a particular app
- Power Menu:
--- improved detection of airplane mode icon color for new icons coloring purposes (thanks to bgcngm)
- Statusbar signal cluster view:
--- fixed broken mobile icons on some MTK devices (thanks to bgcngm)
- Updated French translation (thanks to ch-vox)
- Updated Japanese translation (thanks to WedyDQ10)
- Updated Spanish translation (thanks to jvbferrer)
- Updated Russian translation (thanks to gaich)
- Updated Chinese (Simplified) translation (thanks to liveasx)
- Updated Chinese (Traditional) translation (thanks to momomok)
- Updated Polish translation (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Italian translation (thanks to pesa1234)
- Updated Dutch translation (thanks to Martinusbe)
- Updated German translation (thanks to Minty123, LibertyMarine)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Indonesian translation (thanks to awaaas)
- Updated Ukranian translation (thanks to Vavooon)
- Updated Slovak and Czech translations
Changelog 3.0.1 - 01/04/2014
--------------------------------------
- Power Menu: graphical UI optimization (thanks to bgcngm)
--- colorize icons to make them look good on light backgrounds
--- added new icons to match Lenovo VibeUI ROMs resolution
- Statusbar signal cluster view:
--- fixed WiFi signal coloring on MT6592 (thanks to bgcngm)
--- code reworked to better handle all MTK platforms (thanks to bgcngm)
--- don't reduce wifi and signal icons spacing on Lenovo VibeUI ROMs (thanks to bgcngm)
- Lockscreen custom carrier texts:
--- added compatibility with MT6592 (thanks to bgcngm)
- Clear all recents:
--- fixed clear all key being stuck in navbar under certain conditions
--- workaround for AOSP bug that kept recents panel active in the background under certain conditions
--- fixed clear all key coloring in Pie (thanks to SilentException)
--- further optimizations (thanks to SilentException)
--- fixed broken feature on Android 4.1 (thanks to bgcngm)
- Media: take increased music volume steps into account for safe headset volume
- Reorganized Clock settings (thanks to Minty123)
- Added Malay translations (thanks to zamzameir)
- Updated German translations (thanks to Minty123, LibertyMarine)
- Updated French translation (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Traditional) translations (thanks to knight00931)
- Updated Chinese (Simplified) translations (thanks to liveasx, logicmd)
- Updated Vietnamese translations (thanks to alienyd)
Changelog 3.0.0 - 18/03/2014
--------------------------------------
- Introducing Ultimate Notification Control
--- premium feature (with trial period to allow users to check if it works on their device)
--- allows notification LED color and duration control on per-app basis
--- allows overriding notification sounds and vibrations on per-app basis
--- supports "Alert only once" and "Insistent" notification features
--- workaround for AOSP bug preventing LED from working for missed calls
------ activates by enabling Notification Control for "Phone" app
- New clear all recents style: clear all button in Navigation bar/Pie (thanks to SilentException)
--- replaces recents button with clear all button while recents panel is showing
- Lockscreen: option to hide red trail when wrong pattern is entered (thanks to SilentException)
- Omni traffic monitor: added option for auto-hiding on inactivity based on user-defined speed threshold
- Navigation keys: added option for specifying virtual key vibe pattern
- Icon Picker: added icons for Chrome and Spotify (thanks to Jason_MCG, jacknicholson)
- Handle MT6572, MT6582 and MT6592 devices the same way (thanks to bgcngm)
--- all new MediaTek platforms share the same updated framework, so handle them the same way
- Potential fix for invisible custom carrier texts reported on some MTK devices
- Updated German translations (thanks to Minty123, Wikiwix)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated Russian translations (thanks to gaich)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Indonesian translations (thanks to awaaas)
- Updated Slovak and Czech translations
Changelog 2.9.9 - 14/03/2014
--------------------------------------
- QuickSettings management:
--- Option for choosing timeout modes for Stay Awake Tile (thanks to JayT5)
--- Added Lockscreen Tile: allows enabling/disabling lockscreen
--- Added Alarm dynamic tile to the list of manageable tiles:
------ allows Alarm tile enable/disable/reorder
------ option for assigning app/shortcut on single-tap (not available for MTK devices)
------ option for assigning app/shortcut on long-press (not available for MTK devices)
--- Added long-press action to Airplane mode tile (thanks to SilentException)
--- Added long-press action to Auto-rotate tile (thanks to SilentException)
--- Added long-press action to Settings tile (opens GB) (thanks to SilentException)
--- Added long-press action to Brightness tile (thanks to SilentException)
--- Reorganized tile specific settings for better user experience
- Data traffic monitor revamped:
--- Added new style (Omni) that can show download/upload separately
--- Option to show traffic monitor only while there are ongoing downloads (Android 4.3 only) via Android's Download Manager (CPU/battery friendly)
- Unlocked signal cluster auto-hide feature on MT6572 devices (thanks to bgcngm)
- Lockscreen tweaks: removed "Allow any widget" option due to lockscreen widget API breakage
- Battery charged/charger plugged/unplugged sounds:
--- Linked to notification stream instead of media stream
--- Ogg files are now stored in the filesystem thus can be easily replaced with custom ones:
------ stored in /data/data/com.ceco.gm2.gravitybox/files
------ when replaced, correct file permission mode must be set for files to be readable by everyone
--- Falls back to system notification sound in case ogg is missing or is not readable
- Icon Picker: Added icons for Calculator, Skype and Viber
- New permission: RECEIVE_BOOT_COMPLETED needed for preparation of assets at boot (e.g. ogg files)
- Fixed error in computation of auto-brightness spline (when Brightness tweaks are active)
- Updated Russian translations (thanks to gaich)
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Italian translations (thanks to pesa1234)
- Updated Polish translations (thanks to xtrem007)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Indonesian translation (thanks to awaaas)
- Updated Slovak and Czech translations
Changelog 2.9.8 - 04/03/2014
--------------------------------------
- Volume Panel: option to disable volume adjust vibrate (thanks to JayT5)
- Added title line for master switches in GB settings (thanks to Minty123)
- Don't play Battery charged/Charger plugged/unplugged sounds when Phone's not idle (e.g. while in call)
- Fixed undesired back/recents keys actions triggering when swiping for navbar ring
- QuickSettings management:
--- Ringer Mode Tile: preserve vibrate state when switching to silent mode (thanks to jacknicholson for pointing out)
- Statusbar tweaks / Clock settings:
--- Added master switch for Clock settings
--- Added option for controlling day of week text size
--- Added option for controlling AM/PM text size
- Navigation bar tweaks: option to disable navigation bar ring (disables navbar gesture)
- Lockscreen tweaks / Unlock ring targets:
--- Added 2 more unlock ring targets
--- Disabled magnetic targets (targets won't snap to current touch position)
- Compatibility fixes related to signal cluster hiding (thanks to bgcngm, C3C0)
- Fixed issues with custom carrier texts on certain MTK devices (thanks to bgcngm)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated French translation (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated German translations (thanks to Minty123, calav3ra)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Korean translations (thanks to SDKoongchi)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Polish translations (thanks to xtrem007)
- Updated Slovak and Czech translations
Changelog 2.9.7 - 20/02/2014
--------------------------------------
- Fixed mysterious bootloops occurring since 'Last screen' feature was added
- Fixed option for enabling/disabling menu overflow button
- Fixed notification icons overlapping with centered clock
- QuickSettings management:
--- Stay Awake tile extended to allow cycling through common screen timeout modes (long-press switches directly to Stay Awake and back)
--- Added tile for toggling Smart Radio feature on/off on the fly (relevant when Smart Radio master switch is enabled)
--- Default (English) labels adjusted to be consistent with AOSP tile labels
--- Fixed coloring on USB tethering tile (thanks to bgcngm)
- Icon Picker:
--- Improved alternative icon handling to maintain used icons across GB updates (change requires to set currently used icons again)
--- Created and added icons for Tapatalk and Whatsapp
- Lockscreen tweaks:
--- Added option for double-tap to sleep on unlock ring
--- Last screen:
------- don't reduce image quality
------- fixed scaled images (thanks to bgcngm)
- Power tweaks:
--- Added option for charger plugged/unplugged sound (plugged sound relevant only for AC/USB as wireless has its own sound)
--- Changed battery charged sound for more audible one
- Smart radio:
--- Fixed undesired switching to power saving mode when "Power save when screen off" disabled
--- Implemented toggle for toggling Smart Radio feature on/off on the fly (using tile or GB action)
- Statusbar: Added option for assigning app/action to long-press on notification panel clock
- Brightness settings: Allow lower values for minimum brightness level (changed from 5 to 1 - use with caution)
- GB Actions:
--- Added action for toggling Smart Radio feature on/off on the fly (relevant when Smart Radio master switch is enabled)
- Updated Polish translations (thanks to xtrem007)
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated French translation (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Indonesian translation (thanks to awaaas)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Slovak and Czech translations
- Updated Vietnamese translations (thanks to alienyd)
Changelog 2.9.6 - 10/02/2014
--------------------------------------
- Application picker: added support for alternative icons
--- allows to assign alternative icons from the predefined list
- Lockscreen/navbar ring targets: implemented dynamic icon highlighting (focusing)
- Lockscreen tweaks:
--- fixed freeze when slide before security unlock used in combination with maximized widgets
--- fixed unlock ring size issues when slide before security unlock is active
--- added independent option for slide before security unlock
--- reorganized Lockscreen tweaks menu
- Navbar ring: added option for Haptic feedback
- Quick Settings:
--- Auto-switch QS extended: added option that ignores persistent notifications
--- added option to specify Quick pulldown size
- Statusbar tweaks:
--- added option for double-tap to sleep
- Launcher tweaks:
--- added additional options for desktop grid size
--- fixed intent receiver leak introduced by "Show launcher drawer" action
- Key Actions:
--- added action to open brightness dialog (4.3 only)
--- action for expanding QS hidden on Android 4.1 (thanks to bgcngm)
--- action for opening app drawer hidden if supported launchers are not installed (thanks to bgcngm)
- GB Actions: added shortcut to open brightness dialog (4.3 only)
- Compatibility improvements for Lenovo devices (thanks to mrjavum)
--- Included detection of Vibe UI and ROW firmware
--- Fixed disabling data network type icons on devices with Vibe UI
--- Fixed bug that prevented the use of custom actions on HOME button on devices running ROW firmware
- Fixed issues with recents soft key occurring on some devices when key remapped (thanks natezire71 for testing)
- Fixed issues with recents soft key when double-tap on home enabled
- Fixed issues with custom carrier texts
- Added Hebrew translations (thanks to daxgirl)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Russian translations (thanks to gaich)
- Updated Greek translations (thanks to CTCaer)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Slovak and Czech translations
- Updated Indonesian translation (thanks to awaaas)
Changelog 2.9.5 - 04/02/2014
--------------------------------------
- Fixed crash when power menu disabled on lockscreen
- Smart Radio:
--- improved and simplified decision logic
--- won't switch to power saving mode while tethering over mobile network is active
--- independent option to delay switch to power saving mode after screen turns off (up to 30 minutes)
--- added GSM/WCDMA preferred and LTE Global modes
--- fixed compatibility with Android 4.1 (EXPERIMENTAL)
- Lockscreen tweaks:
--- Allows slide to unlock before security unlock when unlock ring targets are enabled (ported from SlimKat)
--- Last screen:
------- remove overhead from lockscreen by performing blur immediately after screen is captured
- Pie controls:
--- added option to disable system info slice
--- added option for adjusting long-press delay
- GravityBox Actions:
--- added shortcut for GSM/WCDMA preferred network mode (type 0)
--- added shortcut for LTE Global network mode (type 10)
--- added shortcut for opening launcher's app drawer
- Navigation key actions:
--- added action for opening launcher's app drawer
- Launcher tweaks: added option to resize any widget (thanks to JayT5)
- Custom carrier texts (on Lockscreen / Notification drawer):
--- added support for Mediatek devices (thanks to bgcngm)
--- hide options for WiFi-only devices (thanks to bgcngm)
- Added premium backup and restore settings feature (requires valid PayPal transaction ID)
- Implemented interface for verifying PayPal transaction IDs to unlock premium features (requires internet access)
- Updated French translation (thanks to ch-vox)
- Updated Italian translation (thanks to pesa1234, valerioscifoni)
- Updated Russian translations (thanks to gaich)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Spanish translations (thanks to jvbferrer, herbeerth)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translation (thanks to Eric850130)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Indonesian translation (thanks to awaaas)
- Updated Polish translations (thanks to xtrem007)
- Updated Slovak and Czech translations
Changelog 2.9.4 - 26/01/2014
--------------------------------------
- Smart Radio reworked from scratch - based on connectivity manager events
--- Option to force power saving mode when screen turns off
--- Option to ignore switching to normal mode after screen turns on until device is unlocked
--- Option to set delay of network mode change to filter out temporary connection state changes
- Lockscreen tweaks:
--- Added option for custom carrier text (default/custom/empty: when space entered as value)
--- Last screen:
------- preserves original orientation regardless of lockscreen orientation (won't rotate with lockscreen)
------- fixed orientation for devices having flipped screen (thanks to superdragonpt for hints)
------- fixed blank screen on some 4.2.1 devices
--- Added option for specifying blur effect intensity
- QuickSettings tiles:
--- Sync tile: added long-press action to open sync settings
--- Network mode tile: added long-press action to open mobile network settings
- Pie Controls: Implemented support for handling long-press on pie keys
- Phone tweaks
--- Unblocked SIP calls over mobile network
- Power tweaks: Added option for battery charged sound
- Key actions and GB Actions:
--- Added action for taking screenshot
--- Added action for showing volume panel
- Display tweaks:
--- Added option for controlling pulse notification light delay (frequency)
- Misc tweaks:
--- Added setting to change tap vs long-press modes of clearing recent tasks (thanks to scaryuncledevin)
--- Extended option for controlling overflow menu button
- Notification drawer style:
--- Added option for custom carrier text
- Added option to disable power menu on lockscreen
- Added delay to screenshot action
- Hide 'Torch auto off' option if device has no flash (thanks to bgcngm)
- Fixed data traffic monitor not showing values on some devices (thanks to PeterCxy)
- Fixed button backlight issues on Android 4.1
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Indonesian translation (thanks to awaaas)
- Updated Vietnamese translation (thanks to alienyd)
- Updated Spanish translation (thanks to jvbferrer)
- Updated Polish translation (thanks to xtrem007)
- Updated Chinese (Simplified) translation (thanks to liveasx)
- Updated Chinese (Traditional) translation (thanks to Eric850130)
- Updated Italian translation (thanks to pesa1234, valerioscifoni)
- Updated Japanese translation (thanks to WedyDQ10)
- Updated Russian translation (thanks to gaich)
- Updated French translation (thanks to ch-vox)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Slovak and Czech translations
Changelog 2.9.3 - 19/01/2014
--------------------------------------
- Lockscreen tweaks:
--- Added option for blur effect - applicable to any custom background style
--- New custom background style: Last screen (captures screen while it's turning off and uses it as custom background)
--- Fixed unlock ring targets positions for lockscreen in landscape mode
- Navigation bar tweaks:
--- Option to make navbar always on bottom regardless orientation
--- Option to swap positions of menu key and custom key (custom key on the right now possible)
--- Fixed issues with ring targets positions in landscape mode
- QuickSettings management:
--- Disabling tile spanning in landscape mode is now optional
--- Option brought back to Lenovo smartphones (thanks to bgcngm)
- Hardware/software key actions:
--- Added 100ms and 150ms options for double-tap speed
--- Native home key double-tap is now customizable (4.3 only)
- GravityBox Actions: redesigned icons (requires redefining of existing shortcuts)
- Larger icons on navigation bar ring and unlock ring
- Option for forcing menu overflow button
- Data traffic monitor improved to support older devices (thanks to PeterCxy)
- Improved titles and summaries of GravityBox settings menu items
- Added support for MT6592 (thanks to bgcngm)
- Enabled auto-hide signal icons feature on MT6582 (thanks to bgcngm)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Korean translations (thanks to SDKoongchi)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Portuguese (BR) translation (thanks to RaphaDroid)
- Updated Russian translations (thanks to gaich)
- Updated Vietnamese translations (thanks to alienyd)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Slovak and Czech translations
Changelog 2.9.2 - 12/01/2014
--------------------------------------
- GravityBox Actions:
--- Improved handling of launching actions (e.g. actions performed on unlock ring won't dismiss keyguard)
--- Added action for launching Google Now
--- Added actions for media control: play/pause,previous,next (available within GB features only)
--- Added action for killing foreground app (available within GB features only)
--- Added action for switching to previous app (available withn GB features only)
- QuickSettings management:
--- Added USB Tethering tile
--- Added secondary QuickApp tile
- Added battery percent text charging styles: none, static, animated
- Lockscreen tweaks:
--- Added option for adjusting opacity of custom background
--- Option for setting statusbar clock visibility policy (thanks to bgcngm)
--- Improved handling of unlock ring torch: prevents torch from turning on when swiping across unlock ring
- Media tweaks:
--- Option to force control of music volume instead of ringer volume
--- Option for volume keys swap based on display rotation (thanks to evant)
- Misc tweaks:
--- Option to disable fullscreen keyboard
--- Option for defining Torch Auto Off (LED protection)
- Fixed Xperia transparency issues (thanks to bgcngm)
- Improved soft reboot function for better compatibility with different devices
- Added Korean translations (thanks to SDKoongchi)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Italian translations (thanks to pesa1234)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Slovak and Czech translations
Changelog 2.9.1 - 07/01/2014
--------------------------------------
- Introducing GravityBox Actions
--- Interface for providing GravityBox specific functions to third party apps
--- Any app that can utilize shortcuts can use GravityBox Actions (taskers, launchers, ...)
--- Accessible from Launcher's list of widgets
--- Actions can be used within GB App Launcher, lockscreen ring targets, navbar ring targets, QuickApp Tile, basically within any option that launches apps/shortcuts
--- Available actions:
------ show GB app launcher, toggle BT/WiFi/Mobile data/WiFi AP/NFC/GPS, set network mode,
------ toggle expanded desktop, expand notifications panel, expand quicksettings,
------ show recent apps, show power menu, toggle rotation lock, toggle screen recording, take screenshot,
------ go to sleep, toggle torch
- Navigation bar ring targets
--- Allows up to 5 apps/shortcuts/GB Actions on navigation bar ring
--- Customizable icon background (none, light, dark, black)
- QuickSettings Tiles:
--- Tiles per rows option applies to any orientation mode in case of tablet devices (thanks to bgcngm)
--- Fixed Mobile signal tile hiding panels when Hide on Change off
--- Network mode tile: option to use CDMA network modes instead of GSM
- Battery percent text:
--- Added non-intrusive battery charging animation
--- Added one more size step to the list of sizes (larger)
- Hardware Key Actions:
--- Added action for toggling Rotation Lock (thanks to maqr)
--- Added action for showing Power Menu
--- Added action for expanding notifications panel
--- Added action for expanding QuickSettings panel
- Lockscreen tweaks:
--- Option to allow any widget on lockscreen
--- Hide clock for Zopper, Android Weather & Clock, Timely widgets
- Implemented Smart Radio feature (EXPERIMENTAL) (under Phone tweaks/Mobile data category)
--- Allows defining action to switch to one of common network modes when mobile data enabled or disabled
--- EXPERIMENTAL: may affect/interfere with manual network mode switching under certain (untested) circumstances
- Moved Pie Controls menu under root preference screen
- Clear all recents:
--- Long-press on clear all recents button removes all but current task
------ Current task will be automatically brought into front after clearing
- Fixed screenshot from Power Menu and Tile for Moto X devices
- Updated Chinese (Simplified) translation (thanks to liveasx)
- Updated Chinese (Traditional) translation (thanks to Eric850130)
- Updated Japanese translation (thanks to WedyDQ10)
- Updated Polish translation (thanks to xtrem007)
- Updated Spanish translation (thanks to jvbferrer)
- Updated Portuguese (BR) translation (thanks to LaraCraft304)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Hungarian translation (thanks to ronin790)
- Updated Russian translation (thanks to smb.roman AKA romashko)
- Updated French translation (thanks to ch-vox)
- Updated Italian translation (thanks to pesa1234)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Slovak and Czech translations
- Updated Indonesian translation (thanks to awaaas)
Changelog 2.8.5 - 29/12/2013
--------------------------------------
- Navigation bar: implemented cursor control keys
- QuickSettings tiles:
--- implemented Camera Tile:
------- single-tap starts in-tile preview
------- single-tap while preview is showing takes picture
------- long-press opens camera in normal mode
--- implemented Hide on Change (works also for stock tiles that have default behaviour overriden)
--- behaviour override option extended to support: GPS, rotation lock
--- under-the-hood code optimization (thanks to bgcngm)
- Hardware Key Actions:
--- reworked option for volume rocker wake
--- previous AppLauncher navbar key turned into fully customizable custom navbar key
- Advanced reboot menu:
--- new high res icons for reboot actions
--- option to choose whether to ask for reboot confirmation
--- option to choose whether allow reboot on lockscreen
- Clear all recents: added visual effects for better feedback
--- visual feedback when button is pressed
--- list of tasks will scroll to the first task that clearing will start from
- AppLauncher improvements:
--- visual feedback when app is pressed
--- improved layout: bigger icons and texts
- Data traffic monitor improvements:
--- option for inactivity mode: default, hide on inactivity, show summary and hide
- Make color picker appear correctly on non-standard resolutions (thanks to gerhardol)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Polish translations (thanks to xtrem007)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Russian translations (thanks to smb.roman AKA romashko)
- Updated Italian translations (thanks to pesa1234)
- Updated Slovak and Czech translations
- Updated Indonesian translation (thanks to awaaas)
Changelog 2.8.4 - 23/12/2013
--------------------------------------
- AppLaucnher: fix missing apps after reboot on some devices
- Fixed launching custom app from Notification Panel Clock on Android 4.1
- Updated Italian translation (thanks to pesa1234)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Polish translations (thanks to xtrem007)
- Updated French translation (thanks to ch-vox)
Changelog 2.8.3 - 21/12/2013
--------------------------------------
- QuickSettings:
--- Swipe notification panel handle to switch between notifications/tiles
--- QuickRecord tile will create new file for each new recording. Recordings are stored under "AudioRecordings" dir
- Screen-off effect:
--- Now uses system default by default
--- Allows choosing between CRT or Fade effects
- Launcher tweaks:
--- Option to choose desktop grid size
--- Applies to Google Experience Launcher only
--- Menu available only when GEL is installed (thanks to bgcngm)
- Option to set battery percent text size (thanks to bgcngm)
- Option to set battery percent text style (with or without % sign) (thanks to bgcngm)
- Battery indicator related tweaks moved under dedicated preference screen (thanks to bgcngm)
- Fixed Lockscreen Torch being dependent on Battery Arc option
- Improved App Launcher initialization (potential fix for paid apps not being visible after reboot)
- Further improvements regarding support of Lenovo devices (thanks to bgcngm)
--- Don't load QS submodule on smartphones due to different implementation
--- Fix data network type icons hiding
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Polish translations (thanks to xtrem007)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Hungarian translation (thanks to benjoe1)
- Updated Italian translation (thanks to pesa1234)
- Updated Slovak and Czech translations
Changelog 2.8.2 - 17/12/2013
--------------------------------------
- Fix for wrong distance calculation (Android 4.2.1 and MTK only) (thanks to bgcngm)
--- implements a workaround for Android 4.2.1 JIT bug, which mainly affects sports tracking apps
--- no need for disabling Dalvik JIT anymore
- Added support for shortcuts to all App Picker preferences
--- allows launching shortcuts from App Launcher, HW key actions, QuickApp tile, etc.
- Improved 'disable data network type icons' feature (thanks to bgcngm)
--- now supports and overrides behaviour of any operator plugin (OPxxPlugin.apk) installed
- QuickSettings management:
--- Added master switch for turning QS management on/off
--- Option to choose modes of Ringer Mode tile (silent/vibrate/sound/sound&vibrate)
--- Disabled tile spanning in landscape mode
--- Fixed launching apps from QS panel while keyguard is showing
- Added "gravitybox.intent.action.TOGGLE_EXPANDED_DESKTOP" to be utilized by taskers
- Navigation Bar: option to swap Back and Recents keys
- Further compatibility improvements for Lenovo devices running stock ROMs (thanks to bgcngm)
--- another (eventual) fix for notification panel layout
- Lockscreen: Option to toggle torch on unlock ring handle long-press
- Option to set dialog timeout of Volume Panel
- Fixed Battery Arc level indication issues
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Polish translations (thanks to xtrem007)
- Updated Russian translations (thanks to smb.roman AKA romashko)
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated German translations (thanks to Cthulhux & Napzter)
- Updated Spanish translations (thanks to jvbferrer)
Changelog 2.8.1 - 08/12/2013
--------------------------------------
- Torch improvements
--- added partial wakelock that prevents torch from turning off when screen is off on some devices (thanks to Adam3Sixty for testing)
--- requires new permission: "Prevents phone from sleeping" - but only while torch is on
- HW Key Actions:
--- option to choose activation of torch on lockscreen (either by home key long-press or volume down long-press)
--- added info dialog telling about required "Override system defaults" option to be enabled to support actions on navigation bar
- Reboot menu prevented from being accessible while keyguard is showing (security)
- Added option to disable data network type icons (MTK only) (thanks to bgcngm)
--- allows to disable 3G/G indicators next to signal bars
- Fixed wifi and signal cluster spacing (thanks to bgcngm)
- Compatibility fixes for MT6582 devices (thanks to bgcngm)
- Improved compatibility with Lenovo devices running stock ROMs (thanks to bgcngm)
--- fixed notification panel layout
--- removed preferences not compatible with it
- Updated French translation (thanks to ch-vox)
- Updated Russian translations (thanks to smb.roman AKA romashko)
- Updated Spanish translations (thanks to Pr0wleR and jvbferrer)
- Updated Portuguese (BR) translation (thanks to LaraCraft304)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Japanese translations (thanks to WedyDQ10)
Changelog 2.8.0 - 03/12/2013
--------------------------------------
- Removed previously added KitKat functionality (thanks to bgcngm)
- Added restriction for max supported SDK - module now can't be installed on KitKat
- Network mode tile: improved support for LTE
- Network mode tile: added option to choose whether to use LTE or not
- Added NFC tile
- Fixed crash in Autobrightness dialog
- About: added shortcut to GB Google+ community
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Greek translations (thanks to CTCaer)
Changelog 2.7.6 - 26/11/2013
--------------------------------------
- Secondary signal icon color overrides stock orange signal icon independently of SIM Slot (MTK Dual SIMs)
- Adjusted app launcher layout for HDPI devices
- KitKat compatibility improvements:
--- support for rotation lock tile
--- support for location (stock GPS) tile
--- option to choose QS tile style (JellyBean or KitKat)
--- white colors for statusbar elements by default on KitKat when statusbar coloring is off
--- fixed battery style options
--- option to adjust bottom margin of RAM bar and clear all recents button
--- disabled phone and messaging tweaks (require rework)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Italian translations (thanks to pitone02)
- Updated Russian translations (thanks to smb.roman AKA romashko)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated French translation (thanks to ch-vox)
Changelog 2.7.5 - 24/11/2013
--------------------------------------
- Fixed misbehaviour of MENU key in some apps when double-tap is enabled
- Improved compatibility with KitKat:
--- disabled statusbar BG coloring
--- disabled "Follow stock battery" option
--- improved QuickSettings compatibility
--- improved compatibility with stock battery
Changelog 2.7.4 - 24/11/2013
--------------------------------------
- Initial support for KitKat [EXPERIMENTAL]
- Added support for MT6582 (thanks to bgcngm)
- Improved compatibility with Lenovo devices (thanks to bgcngm)
- Improved support for MT6572 devices
- Fixed Circle Battery not being vertically centered on some devices
- Status bar icon coloring:
--- improved icon layout and alignment
--- added option for choosing status icon style (JellyBean or KitKat style)
- Hardware Key Actions:
--- improved handling of Back long-press
--- improved handling of Menu double-tap
--- added Back key double-tap support
--- added Go Home and Go Back actions
- New GravityBox icon (thanks to Jerber)
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated German translations (thanks to samsonbear)
- Updated Indonesian translations (thanks to awaaas)
- Updated Japanese translations (thanks to WedyDQ10)
Changelog 2.7.3 - 18/11/2013
--------------------------------------
- New battery style: KitKat battery with or without percentage and coloring support
- Adjusted WiFi icon alignment
- Reduced space between WiFi and mobile signal icons on MTK Dual SIMs
- Fixed undesired replacement of icons coming from other packages than SystemUI (e.g. Play store icon replaced with BT icon)
- Fixed statusbar icons not returning to stock after coloring is turned off
- Updated French translation (thanks to ch-vox)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Polish translations (thanks to xtrem007)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Italian translations (thanks to pitone02)
Changelog 2.7.2 - 15/11/2013
--------------------------------------
- Statusbar icon coloring improvements:
--- added original signal icons from KitKat
--- added "partially-connected" state signal icons created from original KK icons
--- added xxhdpi high-res signal icons
--- fixed bluetooth icon shape
--- added support for coloring airplane mode icon
--- added option for secondary signal icon color that overrides default MTK orange icon (MTK Dual SIMs only)
--- added option for secondary data activity color (MTK Dual SIMs only)
- Transparency management improvements
--- improved compatibility with Xperia devices
--- statusbar and navbar settings grouped and moved to the root of the settings hierarchy
--- navbar transparency settings made independent of navbar tweaks
--- option to set transparency manager mode:
------ disabled - completely disables transparency related functions
------ statusbar - applies transparency to statusbar only
------ navigation bar - applies transparency to navbar only
------ both - applies transparency to both
--- improved navbar transparency handling (theoretically, may improve compatibility with Android 4.3)
- Option for enabling/disabling navigation bar colors
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Indonesian translations (thanks to awaaas)
- Updated Italian translations (thanks to pitone02)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Ukrainian translations (thanks to egor4yk90)
- Updated French translation (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Russian translations (thanks to smb.roman AKA romashko)
Changelog 2.7.1 - 12/11/2013
--------------------------------------
- Fixed wallpaper scrolling when navbar transparency is on
Changelog 2.7.0 - 12/11/2013
--------------------------------------
- Improved transparency management:
--- Wallpaper now correctly scales behind navbar when it has transparency set. Works for majority of launchers, including Google Experience Launcher (KitKat)
--- Support for animated transitions between transparent/non-transparent states
- Statusbar Icon Colors:
--- Improved icon quality (fixed blurriness)
--- Support for coloring bluetooth, alarm, ringer vibrate, headset icons
- Navigation Bar Tweaks:
--- Reorganized menu
--- Options for navigation bar colors (key color, glow color, navbar background color)
- Lockscreen:
--- Option for disabling lockscreen shade (removes dark tint from lockscreen)
--- Hide statusbar clock support added for common 3rd party widgets (Chronus, DashClock, DeskClock)
- Pie: improved sensitivity by being less strict about swiping direction
- Improved detection of existing battery percent text (fixes double percent on some devices)
- Improved determination of Circle Battery size (fixes circle being too small on some devices)
- Increased Circle Battery left margin
- Application launcher: run app immediately when it's the one and only app in the list
- Updated Master Key Vulnerabilities patch (thanks to bgcngm and tungstwenty)
- GravityBox Settings improvements:
--- Enabled color hex value editor for all color pickers
--- Added fine-tuning up/down buttons for sliders
- Added Greek translations (thanks to vagosofron)
- Updated French translation (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Polish translations (thanks to xtrem007)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Italian translations (thanks to pitone02)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Portuguese (BR) translation (thanks to bgcngm)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Russian translations (thanks to smb.roman AKA romashko)
Changelog 2.6.9 - 03/11/2013
--------------------------------------
- Fixed battery percent text issue introduced in v2.6.8
Changelog 2.6.8 - 02/11/2013
--------------------------------------
- Fixed SystemUI crash when changing Pie properties while Pie is not active
- Fixed glitch (buttons disappearing) in navigation bar introduced by app launcher key
- Fixed volume panel expansion on Xperia devices (thanks to MohammadAG)
- Improved navigation bar app launcher key layout for non-AOSP devices (Xperia)
- Added option to make the panel fully expand to take up all the wasted space (thanks to MohammadAG)
- Improved and simplified battery style tweaks (potentially eliminates phantom circle battery/percentage on some ROMs)
- QuickSettings tiles: improved tiles layout for Android 4.3 (thanks daniil1410 for testing)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Italian translations (thanks to pitone02)
- Updated French translation (thanks to ch-vox)
- Updated Indonesian translations (thanks to awaaas)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
Changelog 2.6.7 - 31/10/2013
--------------------------------------
- Fixed SystemUI crash on tablet devices
- Improved navigation bar app key layout injection
--- fixes navbar keys layout on Xperia and other non-AOSP devices
--- navbar layout is modified only in case app key is enabled
- Fixed app launcher not launching some apps correctly (e.g. RootExplorer)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Portuguese (BR) translation (thanks to bgcngm)
- Updated Chinese (Traditional) translations (thanks to Eric850130)