forked from GravityBox/GravityBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
1330 lines (1268 loc) · 69.1 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 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)
- Updated Ukrainian translations (thanks to egor4yk90)
Changelog 2.6.6 - 29/10/2013
--------------------------------------
- Introducing Application Launcher
--- special dialog that allows defining and launching of as many as 8 apps
--- supports several ways of activation:
------ via dedicated navigation bar key (Navigation bar tweaks / Show app launcher key)
------ by mapping to hardware/virtual key (Hardware Key Actions)
------ from Pie (Statusbar tweaks / Pie controls / Show custom key)
- Hardware key actions:
--- New action to show Application Launcher
- Pie controls:
--- Custom key that can have either Search or Application launcher function
--- Added support for disabling also recents key and app launcher key when Pie active
--- Option to disable navigation keys will disable them only in case Pie is REALLY active
--- Pie colors: options for setting custom colors to all the pie elements
- Phone tweaks
--- Option to set custom image for unknown caller
- Implemented recovery from blank screen situation caused by minimum brightness set too low
--- When screen can't be lit up, holding Volume+ for 7 seconds will reset brightness to manual mode with level set to 100 (device must be awaken, e.g. by power key first)
--- Warning dialog will pop-up every time new value is set below 20
- Fixed crash in Ongoing notifications blocker (when notification icon can't be obtained)
- Updated French translation (thanks to ch-vox)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Portuguese (BR) translation (thanks to bgcngm)
- Updated German translations (thanks to samsonbear)
- Updated Polish translations (thanks to xtrem007)
- Updated Russian translations (thanks to smb.roman AKA romashko)
Changelog 2.6.5 - 26/10/2013
--------------------------------------
- Hardware Key Actions menu rearranged (thanks to bgcngm)
- Option to disable Home double-tap on Android 4.3+
- Option to set signal icon coloring mode
--- Mode 1: Use GravityBox Icons (colored, with signal level support)
--- Mode 2: Use stock icons (colored, without signal level support)
--- Mode 3: Do not apply color (not colored - leaves stock icons intact)
- Prevent soft reboots on Motorola devices occurring when using screenshot related GB functions
- Prevent System UI crashes on some Xperia devices
- Improved compatibility with Xperia devices (thanks to MohammadAG)
--- fixed mobile data toggling
--- prevent errors in VolumePanel mod caused by incompatibility
- Lockscreen Battery Arc positioning issues fixed
- Avoid using Settings.System storage for storing some GB related data
--- This means GB now fully supports resetting all the settings upon clearing GB app data or uninstalling
- Added MT8377 to the list of supported MTK devices (thanks to bgcngm)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Russian translations (thanks to smb.roman AKA romashko)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Portuguese (BR) translation (thanks to bgcngm)
- Updated Spanish translation (thanks to bgcngm)
- Updated French translation (thanks to ch-vox)
- Updated German translations (thanks to samsonbear)
- Updated Czech translations (thanks to mp3comanche)
- Updated Indonesian translations (thanks to awaaas)
- Updated Japanese translations (thanks to WedyDQ10)
Changelog 2.6.4 - 22/10/2013
--------------------------------------
- Lockscreen tweaks:
--- Lockscreen battery arc: shows battery status as an arc drawn around unlock ring handle (Android 4.2+ only)
- Hardware Key Actions:
--- added long-press support for Navigation Bar Home key (now supports Hardware Key Actions)
--- action for toggling Torch on/off
--- option for toggling Torch on Home HW key long-press while on lockscreen
--- torch related actions available only for devices with Flash LED support (thanks to @bgcngm)
- Call Vibrations: prevent unexpected vibrations from occurring on some devices (hopefully)
- Data monitor: option to set position on the right regardless of clock position
- Expandable volume panel: option to show panel expanded automatically
- Added more tolerance to foreign Circle Battery Views
--- preserves Circle Battery View with circle_battery ID introduced by particular ROM
--- avoids breaking circle_battery View dependencies that can cause SystemUI crashes
- Added Arabic translations (thanks to asmb111)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated French translation (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Indonesian translations (thanks to awaaas)
- Updated Polish translations (thanks to xtrem007)
- Updated Russian translations (thanks to smb.roman AKA romashko)
Changelog 2.6.3 - 17/10/2013
--------------------------------------
- Recent tasks RAM bar
--- the latest implementation ported from AOKP project
--- allows position at top or at bottom
--- scales automatically according to "Clear all recents" button position/visibility
- Hardware Key Actions:
--- option for overriding single-tap action of Recent Tasks key (hardware and virtual)
--- option for overriding long-press action of Recent Tasks key (hardware and virtual)
- Minimum brightness limit lowered to 5
- New app icon (designed by C3C076 A.K.A. Tha Graphics Lama)
- Colors of GB tile icon and Screenshot tile icon adjusted to match other tiles
- Other minor bug fixes and optimizations
- Updated Polish translations (thanks to xtrem007)
- Updated Hungarian translations (thanks to benjoe1)
- Updated German translations (thanks to samsonbear)
- 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)
Changelog 2.6.2 - 13/10/2013
--------------------------------------
- Preferences adjusted to take device features into account (thanks to @bgcngm)
--- Torch tile available only for devices having flash led
--- GPS tile available only for devices having GPS
--- Removed redundant "Disable GPS notifications" option (now available via notifications blocker)
--- Removed preferences and tiles related to mobile data for WiFi only devices
- Transparency manager: automatically disable transparency updates when all 4 transparency sliders set to 0
--- fixes graphical anomaly appearing at the top of the windows when transparency off (all 4 sliders zero)
- Prevent soft reboots on Touchwiz devices when accessing power menu (DOES NOT mean GB is now fully compatible with TW!!!)
- Improved compatibility of status bar tweaks with devices having modified statusbar layout (Xperia,...)
- Updated French translation (thanks to ch-vox)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Hungarian translations (thanks to benjoe1)
Changelog 2.6.1 - 12/10/2013
--------------------------------------
- Ongoing notifications blocker:
--- fixed compatibility with Android 4.3
--- show hint when list is empty
- Expandable volume panel:
--- show ringer volume only for devices having voice feature
--- don't allow volume linking for devices that don't have voice feature
--- added alarm slider
- Fixed SystemUI crash caused by WiFi tile on some MT6589 devices with different signal cluster handling
- Updated French translation (thanks to ch-vox)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Italian translations (thanks to pitone02)
- Updated Chinese (Traditional) translations (thanks to Eric850130)\
- Updated German translations (thanks to samsonbear)
- Updated Polish translations (thanks to xtrem007)
- Updated Japanese translations (thanks to WedyDQ10)
Changelog 2.6.0 - 10/10/2013
--------------------------------------
- Statusbar tweaks:
--- Ongoing notification blocker - dynamically collects info on ongoing notifications and allows to block them
--- Alternate WiFi Tile for MTK devices (CM Style) with signal and SSID indication
--- AOSP Signal Tile: added indicator for mobile data off state when tile behaviour overriden (non-MTK, needs testing)
--- Clock Day of Week revamped to support normal/lowercase/uppercase styles
--- Data traffic monitor - monitors data traffic and displays info in statusbar
--- Added Low Profile support for Circle battery, percent text and data traffic monitor
- Lockscreen tweaks
--- Quick unlock: unlocks immediately after correct PIN/password is entered without pressing ENTER
--- Statusbar lock policy: allows making statusbar expandable on lockscreen
--- Option for disabling limit for number of widgets
--- Long-press on lock icon unlocks device when widgets maximized
- Fixed 45 sec. vibrations not being executed on some devices (partial wakelock required during call)
- Added Vietnamese translations (thanks to hdbk1986)
- Added Turkish translations (thanks to AndroidMeda)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Chinese (Simplified) translations (thanks to liveasx, EraserKing)
- Updated Russian translations (thanks to smb.roman AKA romashko)
- Updated German translations (thanks to samsonbear)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Italian translations (thanks to pitone02)
- Updated French translation (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Hungarian translations (thanks to benjoe1)
Changelog 2.5.7 - 03/10/2013
--------------------------------------
- QuickSettings Tile Reordering
- GravityBox Tile: long-touch serves as a quick shortcut to Tile Reordering interface
- Fixed Battery Stats crashing on some devices (MTK Specific)
--- stock Battery Percent Checkbox (the one in Battery Stats) is back
--- has priority over GB percent text option (when enabled in Battery Stats, the one in GB will be disabled)
- Updated German translations (thanks to samsonbear)
- Updated Polish translations (thanks to xtrem007)
- Updated Hungarian translations (thanks to benjoe1)
- Updated French translation (thanks to ch-vox)
- Updated Italian translations (thanks to pitone02)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Portuguese (PT) translation (thanks to bgcngm)
Changelog 2.5.6 - 01/10/2013
--------------------------------------
- Fixed compatibility issues in Network mode tile and Messaging tweaks for single SIM MTKs (thanks to bgcngm)
- GB preferences adjusted to follow device capabilities/features (thanks to bgcngm)
- Fixed GPS Tile long-touch misbehavior
- Fixed infinite MMS/SMS switching loop when unicode stripping is on and SMS is about to become MMS due to its length
- Fixed status bar brightness control for Android 4.1
- Added options for Call vibrations
--- on call connected
--- on call disconnected
--- on call waiting
--- every 45th second during outgoing call
- Sleep Tile: show power menu on long-touch
- Option for controlling screen on during plug/unplug of power/usb
- Option for muting volume adjust sound
- Added MT6572 to the list of MTK devices
- Added Japanese translations (thanks to WedyDQ10)
- Added Dutch (NL) translations (thanks to spacecaker)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Polish translations (thanks to xtrem007)
- Updated French translation (thanks to ch-vox)
- Updated Indonesian translations (thanks to awaaas)
- Updated Italian translations (thanks to pitone02)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Russian translations (thanks to smb.roman AKA romashko)
Changelog 2.5.5 - 28/09/2013
--------------------------------------
- QuickSettings tweaks
--- Option for overriding default touch/long-touch behaviour of tiles (non-MTK)
--- GPS and Ringer Mode tile previously made for non-MTK now available also for MTK
------ can be used as alternatives for standard MTK GPS Tile and Audio Profiles Tile
--- Network mode tile mode
------ added 2G/3G mode option
------ added (LTE) to mode descriptions for better understanding how modes are switched
------ option to choose SIM Slot to which tile applies (for MTK Dual Sims)
--------- tile can now be used also for SIM Slot 2
--- Fixed improper indication of position fix in alternative GPS tile
--- Wifi tile now active also while airplane mode is on (MTK)
- Intelligent Pie Controls
--- linked to Expanded Desktop - 4 modes available
--- disabled: Pie completely disabled
--- always on: Pie always on independently of Expanded Desktop
--- when expanded desktop on: activates when expanded desktop is on
--- when expanded desktop hides navbar: Expanded Desktop mode is set to mode that hides navbar
- Navigation bar tweaks
--- Moved navbar transparency settings under Navbar tweaks section
--- Option for navbar height for landscape orientation
- Statusbar icon coloring: option to leave stock battery icon intact
--- When enabled, icon coloring won't be applied to stock battery icon.
Useful in case stock battery icon was replaced with 3rd party battery mod
- Lockscreen targets
--- category renamed to "Unlock ring settings" (thanks to bgcngm)
--- options to set unlock ring horizontal/vertical offset (thanks to bgcngm)
--- these changes required reset of your current Lockscreen targets settings
- Option for stripping unicode in messaging now supports quick message dialog (MTK)
- Transparency sliders now accept 1% steps
- Quiet down a lot of logging: only device info at startup + runtime errors are logged
- Updated Indonesian translations (thanks to awaaas)
- Updated German translations (thanks to peterhugelberg)
- Updated Polish translations (thanks to xtrem007)
- Updated Italian translations (thanks to pitone02)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated French translation (thanks to ch-vox)
- Updated Russian translations (thanks to smb.roman AKA romashko)
Changelog 2.5.1 - 24/09/2013
--------------------------------------
- Lockscreen Targets:
--- fixed crash when accessibility services enabled
--- app names added into accessibility descriptions (e.g. they will be spoken when using TalkBack)
- Other minor optimizations
- Updated Chinese (Traditional) translations (thanks to Eric850130)
Changelog 2.5.0 - 24/09/2013
--------------------------------------
- Lockscreen targets:
--- ability to add as many as 5 lockscreen targets for launching apps
--- replaces all original targets apart from the unlocking one when enabled
--- option to adjust bottom margin of unlock ring
--- known issue: stock browser might not be launched properly from lockscreen
--- available for Android 4.2+ only
- Statusbar tweaks:
--- Statusbar brightness control:
------ continuous brightness adjustment by sliding over statusbar
------ immediate brighntess adjustment by long-touching statusbar
------ applies to manual brightness (autobrightness must be off)
------ works also on lockscreen
--- option for statusbar element colors to follow stock battery color (more info: http://tinyurl.com/qzbecat)
--- option to disable GPS notifications
- QuickSettings Tiles:
--- NetworkMode tile: allow LTE phones to switch 2G/2G+3G/3G/LTE (for LTE, it uses device specific default LTE mode. Typically LTE_GSM_WCDMA)
--- option to set mode of network mode tile (2G/2G+3G/3G vs. 2G/2G+3G. For LTE: 2G/2G+3G/3G/LTE vs. 2G/2G+3G/LTE)
--- Stay Awake Tile (prevents the screen from turning off when enabled)
--- Screenshot Tile
--- improved GPS tile for non-MTK devices (better icon + indication of position fix)
--- improved Ringer Mode Tile to take into account whether device has vibrator (non-MTK)
- Phone tweaks:
--- option for stripping unicode characters from message before sending (for stock messaging app)
--- option to disable slow mobile data warning for SIM in 2G mode (for MTK Dual Sims - mobile data tile)
- Display tweaks:
--- option to allow all display rotations (e.g. upside down)
- Other improvements:
--- improved volume keys skip track for better support of 3rd party players (thanks to bparker98)
--- power menu dialog optimizations
--- button backlight notifications: make buttons lit for a bit longer
--- fixed scaling of Back button in navigation bar
- Updated French translations (thanks to ch-vox)
- Updated German translations (thanks to Wikiwix)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Indonesian translations (thanks to awaaas)
- Updated Russian translations (thanks to smb.roman AKA romashko)
Changelog 2.4.2 - 20/09/2013
--------------------------------------
- Yet another fix for Samsung's expandable volume panel
- StatusbarIconManager: improved handling of default system colors (when icon coloring is disabled)
- Updated French translations (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Italian translations (thanks to pitone02)
Changelog 2.4.1 - 19/09/2013
--------------------------------------
- Fixed expandable volume panel option for S4 GE devices
- Disabled more music volume steps option for S4 GE devices
- Screenshot in power menu is now optional
- Expanded desktop: better names for system settings variables
to avoid potential conflicts
- Minor Button Backlight options improvements
- Updated French translations (thanks to ch-vox)
- Updated German translations (thanks to Wikiwix)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Polish translations (thanks to xtrem007)
- Updated Russian translations (thanks to smb.roman AKA romashko)
Changelog 2.4.0 - 17/09/2013
--------------------------------------
- Expanded desktop:
--- 4 modes: disabled, hide statusbar, hide navigation bar, hide both
--- Power menu action for expanded desktop toggling
--- QuickSettings tile for expanded desktop toggling
--- hardware key action for expanded desktop toggling
- Battery styles: improved compatibility with custom ROMs and 3rd party battery mods
- Fixed blank display issue for Android 4.1 devices
- Option to link notification panel clock to any app (specified by user)
- Additional custom app for hardware key actions
- Added Screenshot action to power menu
- Hardware key actions:
--- action for invoking menu (mimics menu key)
--- action for toggling expanded desktop
--- action for launching additional app
- Navigation bar tweaks
--- Enable/disable navigation bar
--- Option to set navbar height (for portrait mode)
--- Option to set navbar width (for landscape mode)
--- Option to always show menu key
- Potential fix of Expandable Volume Panel for S4 GE devices (needs testing)
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to smb.roman AKA romashko)
- Updated Indonesian translations (thanks to awaaas)