forked from GravityBox/GravityBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
2652 lines (2526 loc) · 142 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 6.0.1 - 22/11/2015
--------------------------------------
- Lockscreen:
--- reworked and optimized Quick Unlock feature (limited to work only with PINs/passwords with up to 6 characters)
--- Shortcuts: don't allow unsafe GB actions (connectivity/location related) when device locked
--- Shortcuts: dynamically show/hide unsafe GB actions based on current lock screen security state
--- Shortcuts: don't offer GB actions which don't make sense in lock screen context (kill app, switch to last app, ...)
--- Shortcuts: offer GravityBox Unlock action
--- Shortcuts: dismiss lockscreen for certain GB actions (Google Now, Show recent apps)
- QuickSettings management:
--- NFC Tile is back
--- LockScreen Tile is back
--- improved security logic
--- fixed secured tiles showing when lock screen activity is in the foreground (such as Camera)
--- NetworkModeTile: fixed for devices having TD-SCDMA default network mode preset in build.prop
- GravityBox Actions: fixed Google Now action
- Pie: fixed Search key crashing SystemUI
- AppLauncher: don't show unsafe GB actions (connectivity/location related) when device locked
- TrustedWifi:
--- adjusted for compatibility with devices running newer Android 6.0 release (N5X, N6P, ...)
--- fixed manual re-lock not working when trusted WiFi enabled
- Media: unlink ring & notification volumes feature is back
- PowerMenu: replaced "Factory reset" dialog title when rebooting to recovery
- Dialer: fixed action buttons invisible during call (when full screen caller photo enabled)
- Ultimate notification control:
--- fixed and optimized disabling touch sounds during QuietHours
--- fixed ActiveScreen
- Fixed typo in Turkish translations (Backup successful)
- Updated Hungarian translations (thanks to benjoe1)
Changelog 6.0.0 - 17/11/2015
--------------------------------------
- Initial version for Marshmallow
Changelog 5.3.2 - 31/10/2015
--------------------------------------
- QuickSettings management:
--- Added per-tile popup-menu containing extended tile visibility options:
------ show in lock screen / only in lock screen
------ show in secured lock screen
------ dual mode option moved to tile popup menu (for WiFi/BT/Cellular tiles)
--- Revived Auto-switch feature based on notification existence (AKA smart pulldown)
- Navbar tweaks:
--- Implemented ring target customization
------ only one ring target available due to LP's navbar ring limitations
--- Fixed missing cursor control keys haptic feedback
--- Fixed cursor control keys dismissing keyboard when reaching end of text
- Lockscreen: added Direct unlock policy based on notification existence
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Russian translations (thanks to gaich)
Changelog 5.3.1 - 25/10/2015
--------------------------------------
- Recents: fixed clear all button disappearing bug
- Navbar: don't scale soft keys during navbar size changes on Xperia devices
- Improved identification of Moto devices running AOSP ROM
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
Changelog 5.3.0 - 10/10/2015
--------------------------------------
- Adjusted for compatibility with Zopo Speed 7 MediaTek device running LP5.1
--- added support for MediaTek specific quick settings tiles (Audio profile, HotKnot, Data connection)
--- fixed mobile network type related features (Network mode tile, SmartRadio, ...)
--- added support for several signal cluster related features
--- added option for disabling large signal type indicators (Signal cluster settings)
--- fixed autobrightness specific settings
--- disabled obsolete MTK specific fixes
--- recents: added logic to reuse existing (stock) clear all button (probably Zopo specific only)
- Potentially improved support for other MediakTek devices running un-skinned LP5.1 (without guarantee)
- SignalCluster: added option for hiding "No SIM" icon (AOSP LP5.1 only)
- Muted Xperia signal cluster specific errors (LP5.1)
- Small optimizations for 64bit devices
- Updated French translations (thanks to ch-vox)
- Updated Hungarian translations (thanks to benjoe1)
Changelog 5.2.1 - 07/10/2015
--------------------------------------
- Signal Cluster:
--- fixed data activity indicators on Moto G Dual SIM 5.1 (falcon_asia_ds)
--- removed obsolete/unsupported features for Moto G Dual SIM 5.1 (falcon_asia_ds)
--- removed automatic padding adjustment on Xperia devices (unsupported)
- Quick Settings:
--- RingerMode tile: added "None" ringer mode (in tile specific settings)
--- NetworkMode tile: added support for GSM/WCDMA/CDMA Auto mode (e.g. Verizon)
- Lockscreen: removed custom carrier text feature on Xperia devices (unsupported)
- Updated Russian translations (thanks to gaich)
Changelog 5.2.0 - 27/09/2015
--------------------------------------
- QuickSettings management:
--- Allow control of Dual mode individually for WiFi and BT tiles:
------- replaces "Normalize dual tiles" feature
------- note that dual tiles can't coexist with non-dual tiles within the same row (AOSP design restriction)
--- Cellular: adjusted behavior to be consistent with WiFi and BT tiles:
------- toggle mobile data on single-press, show data usage pane on long-press (non-dual)/label-press (dual)
--- WiFi: show detail pane instead of WiFi settings on long-press (when tile is non-dual) (LP5.1 only)
--- Bluetooth: show detail pane instead of BT settings on long-press (when tile is non-dual) (LP5.1 only)
--- Quick Pulldown: added option to allow both sides (left and right) at the same time
- Lockscreen: revived option for custom carrier text
- Media tweaks: added slider for choosing custom music volume steps (from 5 up to 50)
- UNC QuietHours: added option to allow muting Phone ringer during quiet hours (within "Mute system sounds")
- Navigation bar: improved icon scaling for dimensions less than 75% (LP5.1 only)
- SignalCluster: reduce right-side spacing when battery indicator is hidden (LP5.1 only)
- Pie: added option to show trigger indicator when trigger is centered
- Launcher tweaks: adjusted for compatibility with Google App 5.23.19
--- action for opening launcher app drawer is not supported anymore :/
- TrafficMeterOmni: fixed incorrect formatting of values from interval <1000;1023>
- Added Belarusian translations (thanks to kyrsant2008)
- Updated French translations (thanks to ch-vox)
- Updated Slovak and Czech translations
Changelog 5.1.5 - 09/09/2015
--------------------------------------
- Launcher tweaks: adjusted for Google App 5.2.33
- Improved Motorola device identification
- Fixed statusbar Progress Bar not working on some Motorola devices
- Removed obsolete "MediaTek statusbar plugin" related features causing xposed log flooding
- Updated Hungarian translations (thanks to benjoe1)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 5.1.4 - 05/07/2015
--------------------------------------
- Signal cluster tweaks improvements for Moto devices running LP 5.1 (thanks to romracer)
--- enabled usage of the H+ icon
--- fixed data activity indicators
--- fixed hiding exclamation marks
- Navbar: changed cursor control icons (thanks to creeve4)
- Cellular tile: added option for Dual mode
--- allows similar behavior as WiFi and Bluetooth tile
- Fixed QS panel expanding unexpectedly on screen-on when peek disabled
- Launcher tweaks: adjusted for compatibility with Google App 4.8.10
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Polish translations (thanks to xtrem007)
Changelog 5.1.3 - 14/06/2015
--------------------------------------
- Lockscreen tweaks: added option for double-tap to sleep
- Statusbar tweaks:
--- added option for disabling peek (won't expand status bar on single touch)
--- added option for double-tap to sleep (requires peek to be disabled)
- Misc tweaks / Recents:
--- yet another clear all tasks improvements
--- added option for clearing visible tasks only
- Ultimate notification control:
--- added option for disabling sound to vibration conversion
--- QuietHours: added option for disabling haptic feedback
--- improved "alert only once timeout" feature (fixes issues with Telegram and other apps having similar notification handling)
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
Changelog 5.1.2 - 30/05/2015
--------------------------------------
- Navigation bar:
--- fixed drop shadow missing on navbar key icons
--- apply key icon scaling when navbar size gets smaller than icon size
- Do not apply low battery color to circle battery when battery saver orange bars are showing
- Small improvements to status bar progress bar
- Updated screenshot delete icon
- Recents: improved clear all button to clear all tasks at once
- Expanded desktop: try to respect custom ROM specific navbar dimensions when GB's navbar tweaks disabled
--- should fix hidden navbar appearing on some custom ROMs
- Phone tweaks: attempt to fix option for national data roaming
- Fixed potential SystemUI crash occurring on some (unsupported) devices
Changelog 5.1.1 - 23/05/2015
--------------------------------------
- Signal cluster tweaks adjusted for LP 5.1 (untested on Motorola devices)
- Status bar icon coloring adjusted for LP 5.1
- Fixed Circle battery and Percent text paddings on LP 5.1
- Fixed status bar brightness control not using proper screen width in landscape orientation
- Fixed home soft key not responding after screen on; when Go to sleep action mapped to long-press
- Fixed soft reboot causing app reoptimization
- Optimized GB context handling within SystemUI process
- Screen record: added custom binary
--- allows recording time up to 1 hour
--- supports ARM and ARM64 only
--- DOES NOT support audio recording
- Launcher tweaks: adjusted for compatibility with Google App 4.6.10
- Updated Portuguese (BR) translations (thanks to KingKaminari)
Changelog 5.1.0 - 16/05/2015
--------------------------------------
- Adjusted for Lollipop 5.1 compatibility
Changelog 5.0.10 - 08/05/2015
--------------------------------------
- Media tweaks: implemented expandable volume panel
- Battery tile: added option for swapping single-press/long-press actions
- Ultimate notification control:
--- added option to allow LED during priority/silent ringer modes (default and per-app)
--- improved LED handling during Active Screen
- Recents panel:
--- perform fade-out animation on clear all button and RAM bar
--- fixed bug in clear all button bottom margin option handling
- Lockscreen shortcuts: don't cut off icons during Safe Launch zoom-in
- Traffic meter: fixed disappearing on devices with Ambient Display feature
- brought back materialized icon of screenshot delete action (requires XposedBridge v64+)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Russian translations (thanks to gaich)
- Updated Korean translations (thanks to SDKoongchi)
Changelog 5.0.9 - 02/05/2015
--------------------------------------
- Quick Settings:
--- allow secured tiles in lock screen when it's insecured by Smart Lock
--- added Battery tile:
------ with icon showing current battery level
------ with text showing current temperature and voltage
------ single-press toggles battery saver mode
------ long-press opens Battery Settings
------ configurable in Tile specific settings menu
- Power tweaks: added option for disabling battery saver indication (orange bars)
- Signal Cluster: added option for disabling exclamation marks in status bar signal icons
- Potential improvement of battery style handling on unsupported devices
- Reduced some error logging on Xperia devices
- Launcher tweaks: adjusted for Google App 4.5.12 and 4.5.13
- Updated Russian translations (thanks to gaich)
Changelog 5.0.8 - 26/04/2015
--------------------------------------
- Misc tweaks / WiFi priority: implemented trusted WiFi networks for Smart Lock
- Signal cluster: brought back option for H+ indicator (Nexus/AOSP only, requires XposedBridge v64+)
- Recents: launch Apps Settings on clear all button long-press
- Navigation bar: fixed recents key disappearing on Xperia devices
- Key actions: fixed "Go to sleep" action turning on screen after it was turned off
- Ultimate notification control:
--- Active Screen: respect priority/none ringer settings
--- fixed crash in per-app settings when large number of apps installed
- Fixed GB Settings crash on MediaTek devices (doesn't mean MTK is now supported)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Polish translations (thanks to xtrem007)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to ch-vox)
Changelog 5.0.7 - 13/04/2015
--------------------------------------
- Lockscreen tweaks:
--- added Safe launch option for launcher shortcuts
--- added option for Smart unlock
- Launcher tweaks: updated for compatibility with Google App 4.4.10
- Updated Portuguese (BR) translations (thanks to KingKaminari)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Korean translations (thanks to SDKoongchi)
Changelog 5.0.6alpha - 05/04/2015
--------------------------------------
- Implemented Lock screen shortcuts
- Improved tile icons
- Improved Direct unlock feature:
--- allows 2 modes: "standard" and "see through"
--- won't activate in case Smart Lock is currently doing its job
- Minor Smart Radio improvements
- Fixed potential SystemUI crash related to Cellular tile data off icon
- Updated Russian translations (thanks to gaich)
Changelog 5.0.5alpha - 28/03/2015
--------------------------------------
- Lockscreen tweaks:
--- added option for direct unlock (shows security challenge directly when screen turns on)
--- fixed custom background graphics glitches during transition animations
--- fixed menu key unlock option (devices with hardware menu key)
- Quick settings:
--- Cellular tile: added option to show icon when mobile data disabled (SIM slot 1 tile only on Moto Dual SIM)
--- Cellular tile: toggle mobile data on/off on tile long-press (SIM slot 1 tile only on Moto Dual SIM)
--- fixed SystemUI crash when switching users
- Media tweaks:
--- brought back option for unlinking ringer and notification volumes
--- fixed force media volume control on non-voice devices (such as tablets)
--- fixed and simplified safe headset media option (requires reboot)
- Ultimate notification control:
--- added option for controlling notification visibility in secured lockscreen
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated Russian translations (thanks to gaich)
- Minor fixes in Greek translations (thanks to thdervenis)
Changelog 5.0.4alpha - 21/03/2015
--------------------------------------
- Additional Motorola compatibility improvements (thanks to romracer)
--- fixed expanded desktop on Moto X and similar devices having PhoneWindowManagerWithPartialDisplay
--- fixed and improved signal cluster related tweaks
--- fixed Search/Voice search navigation key/GravityBox actions
- Signal cluster: added option for reducing signal icon spacing on Motorola Multi-SIM devices
- Lockscreen tweaks: brought back custom background options
- Navbar: added option for hiding IME switcher
- Launcher tweaks: adjusted for compatibility with Google App 4.3.10
- Changed premium unlock info dialog to use Material theme (thanks to pyler)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 5.0.3alpha - 14/03/2015
--------------------------------------
- Improved support for Motorola Moto G Dual SIM:
--- QS: adjusted network mode tile (allows changing SIM slot on long-press)
--- QS: adjusted handling and reordering of cellular tiles
--- QS: proper adjustment of signal tile size for tiles per row option
--- Signal cluster adjustments, including icon coloring (NOTE: cell signal doesn't support data activity indicators)
--- fixed Smart radio
--- all other misc Multi SIM related adjustments
- Quick settings:
--- revived Ringer Mode Tile (silent==priority) (thanks to romracer)
--- revived USB Tethering Tile
--- fixed other misc issues in tile management (thanks to romracer)
- BatteryBar: improved behavior in lock screen status bar (now allows bottom position)
- ProgressBar: improved behavior in lock screen status bar (now allows bottom position)
- Phone:
--- added workaround for missed calls notification LED
--- added 5s ramp-up duration for ascending ringtone
- Ultimate notification control:
--- fixed issues causing unexpected heads up and notification icon "jumping"
--- show package names in app descriptions for better identification of packages having the same app name
- Power: improved option for low battery warning policy
- Navigation bar: improved handling of cursor control keys
- Recents: added option for using alternate icon for clear all button
- Fixed unexpected disappearing of centered clock and centered traffic monitor
- Other misc Motorola specific fixes (thanks to romracer)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated French translations (thanks to ch-vox)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Portuguese (BR) translations (thanks to wyghor, KingKaminari)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Traditional) translations (thanks to PeterDaveHello)
- Updated Malay translations (thanks to zamzameir)
Changelog 5.0.2alpha - 04/03/2015
--------------------------------------
- QuickSettings management:
--- reworked UI for choosing/ordering/securing tiles (requires reconfig)
--- added option for tiles per row with automatic tile size scaling
--- added option for hiding brightness slider
--- enabled quick pulldown on tablet devices
--- fixed first row layout when tiles are normalized
--- fixed secured tiles sometimes not showing after unlocking
- Data traffic monitor
--- fixed layout in lock screen
--- added option for showing in lock screen
- Battery bar: forced top edge in lock screen
- Progress bar: forced top edge in lock screen
- Updated Portuguese (BR) translations (thanks to wyghor, KingKaminari)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to ch-vox)
- Updated Slovak and Czech translations
Changelog 5.0.1alpha - 28/02/2015
--------------------------------------
- QuickSettings management is back!
--- with additional security related enhancements
- Navigation bar:
--- fixed SystemUI FC on sw600dp (tablet) devices (thanks to defim for testing)
--- improved layout of navbar during cursor control keys
- Recents:
--- fixed clear all button positioning during vertical navbar
--- changed clear all button icon and added ripple effect
- GB Actions: fixed app window popping up when action launched from 3rd party app
--- requires reassigning actions in 3rd party apps
- Fixed bootloop on incompatible devices such as Moto X 2014 (thanks to bongostl for testing)
- Use proper default value for battery warning policy option
- Fixed strange errors sporadically showing in xposed log (thanks to defim for hints)
- Launcher tweaks: adjusted for Google App 4.2.16
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated German translations (thanks to Minty123)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 5.0.0alpha - 22/02/2015
--------------------------------------
- Initial alpha release for Lollipop
Changelog 3.5.4 - 14/02/2015
--------------------------------------
- Smarter identification of MediaTek devices
- Improved detection of GPE devices (thanks to KingKaminari)
- Fixed unlock ring getting frozen on MTK devices after launching GravityBox Action from ring target
- Statusbar tweaks / Progress bar
--- added option for progress bar animation
--- added option for centered progress bar
--- added option for progress bar thickness
--- added option for edge margin
- Key actions:
--- added single-tap action for Menu key
--- added single-tap action for Back key
--- added double-tap action for Recents key
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Russian translations (thanks to gaich)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated French translations (thanks to ch-vox)
- Updated Portuguese (BR) translations (thanks to wyghor, KingKaminari)
- Updated Slovak and Czech translations
Changelog 3.5.3 - 14/01/2015
--------------------------------------
- Launcher tweaks: adjusted for Google Search 4.1.24
- Battery bar:
--- added option for centered bar
--- added option for choosing charging color
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated Chinese (Simplified) translations (thanks to liveasx)
Changelog 3.5.2 - 11/01/2015
--------------------------------------
- Statusbar tweaks/Battery settings: added battery bar
--- allows custom position/margin/thickness/dynamic or user defined colors
--- optional charging animation
--- hides automatically while progress bar in status bar is showing at the same position
- Misc tweaks: added interface for specifying WiFi network priorities
--- connects to preferred network when more networks with good signal are in range
--- requires new permissions: ACCESS_WIFI_STATE and CHANGE_WIFI_STATE
- Fixed crash of GB settings on Motorola devices with MediaTek chip
- Added MT8121 to the list of MediaTek devices (thanks to yener90)
- Launcher tweaks: adjusted for Google Search 4.1.21 (thanks to theknut)
- Reworked statusbar tweaks to get rid of layout hooks (for potential better compatibility with unsupported devices)
- Improved identification of Google Play Edition devices (thanks to pyler)
- Other optimizations
- Updated French translations (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Polish translations (thanks to xtrem007)
Changelog 3.5.1 - 14/12/2014
--------------------------------------
- Lockscreen tweaks / Unlock ring targets: added option for custom unlock target
--- when option is enabled, one more slot becomes available (total of 8 customizable slots)
--- allows customizing target that serves for unlocking purpose by default
--- GravityBox Actions: introduced Unlock action which can be assigned to any unlock ring target
- Status bar tweaks / Progress bar:
--- improved identification of notifications that contain progress bar
--- other improvements and bug fixes
- Status bar tweaks / Data traffic monitor:
--- added option for Display mode which replaces previous "Download manager only" option:
------ Always (when connection available) (default behavior)
------ For Android Download Manager only (previously as standalone option)
------ When progress bar in status bar is showing (new)
- UNC Progress bar tracking:
--- extended to support more 3rd party apps (browsers/download managers/file managers)
--- fixed progress bar issues when tracking is enabled in Default settings
- Key actions: don't perform torch on volume down during call
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Italian translations (thanks to valerioscifoni)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Polish translations (thanks to xtrem007)
- Updated Slovak and Czech translations
Changelog 3.5.0 - 07/12/2014
--------------------------------------
- Smart Radio:
--- added option for adaptive delayed power save
------ automatically prolongs delay of power saving switch if current mobile data traffic exceeds defined threshold
------ applies when Delayed power save option is enabled and screen is off
------ example: won't switch to power saving mode when streaming music over mobile connection
--- don't attempt to switch network mode while in call
- Navigation bar:
--- Lollipop icons option extended to support previous larger style
--- cursor control key icons adjusted for Lollipop layout
- Ultimate notification control: added option for Progress bar tracking (default and per-app)
--- shows progress bar in status bar for every ongoing notification that contains progress bar
--- requires "Progress bar" feature in status bar tweaks to be enabled
--- example: can be used to enable progress bar in status bar for 3rd party apps and download managers
--- Android Download Manager and Bluetooth transfers are supported implicitly (don't require UNC)
- Download progress bar:
--- added support for Bluetooth transfers
--- extended to support new UNC "Progress bar tracking" feature
- Extended list of MediaTek SoC identifiers (6575,6572,6577,8377,8389,6592,6595)
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Traditional,HK) translations (thanks to momomok)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.4.9 - 21/11/2014
--------------------------------------
- Navigation bar tweaks:
--- added option for left handed mode:
------ experimental, but seems to work fine on officially supported devices
------ applicable to devices with vertical navbar in landscape mode (phone devices)
--- Lollipop icons updated from official Lollipop release (yes, they are smaller)
--- custom key icons adjusted to match Lollipop layout
- UNC Active Screen:
--- added option for Pocket mode (makes proximity sensor based behavior optional)
--- additional fixes for devices without proximity sensor
- About: added option for hiding module icon from launcher
- Added compatibility warning dialog showing upon opening settings (thanks to jacknicholson, kingvortex, GermainZ, m0han for content suggestions)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Russian translations (thanks to gaich)
- Updated French translations (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.4.8 - 07/11/2014
--------------------------------------
- Lollipop signal icons:
--- added Lollipop icons for partially connected state (only for devices having "Enable connection state" option in Signal cluster settings)
--- added support for Moto G (also affects mobile signal tile due to Motorola using the same image for both)
--- added support for RTL locales
- Ultimate notification control:
--- added option for heads up timeout on per-app basis
--- added workaround to bring back Active Screen and other UNC features to LG devices (doesn't mean LG devices are now officially supported!)
- Improved compatibility with Xperia Z Ultra Google Play Edition:
--- fixes unlock ring options
--- fixes navigation bar ring options
--- should fix behavior of clear all recent tasks
--- should fix volume panel options
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Added translations for HongKong region (thanks to momomok)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
Changelog 3.4.7 - 25/10/2014
--------------------------------------
- Ultimate notification control:
--- Heads up: added option for ingoring notification updates (won't show heads up when existing notification gets updated)
--- improved detection of ongoing notifications belonging to foreground services
--- active screen: don't apply to ongoing foreground service notifications
--- active screen: use direct wake up call instead of full wake lock (should improve compatibility on some devices)
--- active screen: improved check for proximity sensor state
- Statusbar signal cluster: added option for using Lollipop signal icons (with full support for MediaTek Gemini)
- Quick settings QuickRecord tile:
--- added option for choosing audio quality
--- added option for choosing auto-stop recording delay
- GravityBox Actions:
--- added action for clearing all notifications
--- added action for toggling auto brightness
- Phone tweaks: added option for SMS/MMS unicode filtering (for standard Messaging app only)
- Launcher tweaks: adjusted for compatibility with Google Search 4.0.26 (thanks to theknut)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Polish translations (thanks to xtrem007)
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Slovak and Czech translations
Changelog 3.4.6 - 14/10/2014
--------------------------------------
- Heads up:
--- added option for importance threshold:
------ allows to suppress heads up for notifications that are of lower importance than defined threshold
------ depends on priority of notification as set by app sending a notification
------ hint: Medium level filters out Google Now notifications
--- added summary text to "Show expanded" preference to make clear it can be overriden by UNC (thanks to momomok)
--- optimized preference handling (less processing when notification arrives)
- Ultimate notification control:
--- fixed improper lights and vibration handling during quiet hours affecting mainly ongoing notifications
--- Active Screen: added option for ignoring quiet hours (shows active screen during quiet hours)
--- heads up importance threshold applies when heads up mode is set to "Default"
--- heads up importance threshold DOES NOT apply to Active Screen
- Network mode tile: added option for specifying 2G+3G mode:
--- allows to choose whether to use GSM/WCDMA Preferred or GSM/WCDMA Auto
--- tile icon indicates which 2G+3G mode is set (2G/3G or 3G/2G)
- PowerMenu: added option for hiding expanded desktop toggle in power menu
- GB App Picker: search field adjusted to allow inputting non-English characters (thanks to momomok)
- Status bar download progress: fixed exotic error appearing in xposed log
- Updated Russian translations (thanks to gaich)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated French translations (thanks to ch-vox)
- Updated Spanish translations (thanks to DIG200)
- Updated Polish translations (thanks to xtrem007)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Italian translations (thanks to valerioscifoni)
- Updated Slovak and Czech translations
Changelog 3.4.5 - 04/10/2014
--------------------------------------
- Statusbar: added option for showing download progress bar in status bar
--- applies only to downloads carried out via Android's standard download manager
--- allows top or bottom edge position
--- in case of multiple download notifications, progress bar applies to the one that came first
--- for Play Store app updates, progress represents real status unlike the one indicated within Play Store app
- Statusbar: added option for controlling Notification Ticker policy
- Signal cluster: added option for hiding SIM labels (Moto G Dual SIM only)
- UNC: fixed "Ignore quiet hours" option disappearing bug introduced in 3.4.4
- Heads up: fixed exotic NullPointerException appearing in Xposed error log
- Updated Hungarian translations (thanks to benjoe1)
- Updated French translations (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Russian translations (thanks to gaich)
- Updated Spanish translations (thanks to DIG200)
- Updated Slovak and Czech translations
Changelog 3.4.4 - 28/09/2014
--------------------------------------
- UNC Quiet hours:
--- added option for specifying week days
--- added option for muting system sounds
--- optimized preference handling (requires setting up quiet hours from scratch)
- UNC: changed resolution of alert only once timeout from minutes to seconds (requires setting it up again)
- Proximity wake-up:
--- added option to ignore proximity wake-up on incoming call
--- hide feature from devices that have no proximity sensor (thanks to bgcngm)
- Recents panel: always translucent bars feature now optional (since it breaks recents panel on Xperia)
- GB Actions: optimized airplane mode toggle action (thanks to pyler)
- Lockscreen: optimized preference handling and unlock ring hooks
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Russian translations (thanks to gaich)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Italian translations (thanks to valerioscifoni)
- Updated French translations (thanks to ch-vox)
- Updated Turkish translation (thanks to droidplus)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (BR) translations (thanks to wyghor)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.4.3 - 18/09/2014
--------------------------------------
- Lockscreen status bar lock policy:
--- don't force access restriction to quick settings when policy in GB is other than "Unlocked"
--- restrict access to QS also for apps that run on top of secured lock screen (e.g. Camera or 3rd party lock screens)
--- fixed QS access restriction on tablet UI
- Heads up snooze:
--- always use 24h format for snooze timer picker
--- added option for default snooze timer
------ default snooze timer is set automatically when heads up snooze icon is pressed
------ custom snooze timer dialog is open when heads up snooze icon is long-pressed
- Recents panel:
--- statusbar/navbar always translucent by default (no option)
--- allow live wallpaper on high end GFX devices (no option)
- Ring targets: adjusted for compatibility with Xperia (thanks to laguCool)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Polish translations (thanks to xtrem007)
- Updated French translation (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Portuguese (PT) translation (thanks to bgcngm)
Changelog 3.4.2 - 14/09/2014
--------------------------------------
- GB settings:
--- reworked image choosing/cropping - supports Google Photos and potentially other gallery apps
--- added automatic clean up of GB app picker cache (saves storage space)
- Heads up: added option to show snooze button within heads up window
--- allows to suppress heads up for particular app or all apps at once for specified amount of time
--- added option to reset all current snooze timers
- Lockscreen status bar lock policy: option to allow status bar expand on secured lock screen
--- allows peeking on notifications even if lock screen is secured
--- access to quick settings prohibited
--- makes UNC ActiveScreen "expand notification panel" mode work on secured lock screen
- Power tweaks:
--- added option for proximity wake up (prevents accidental wake up)
--- added option for emulating battery charging light:
------ allows charging light on devices lacking native support (e.g. Nexus 5)
------ pending notification light has priority over charging light
------ charging light color changes lineary according to current battery level (requires RGB LED hardware)
------ whether led is constantly ON or "breathing" depends on LED driver (cannot be affected by GB)
- Display tweaks: button backlight notifications adjusted to follow Pulse notification delay
- Updated Japanese translations (thanks to WedyDQ10)
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Polish translations (thanks to xtrem007)
- Updated Russian translations (thanks to gaich)
- Updated Portuguese (PT) translations
- Updated Slovak and Czech translations
Changelog 3.4.1 - 05/09/2014
--------------------------------------
- Lockscreen: fixed Quick Unlock not applying to Password security
- QuickSettings: improved behavior of NFC tile (indicates ON<->OFF transition states)
- MediaTek specific:
--- fixed missing carrier text for the second SIM in notification drawer
--- added option for unhiding Advanced developer options
--- added option for unhiding Voice search and TTS settings in Language&Input
--- removed redundant MTK screen timeout quick settings tile
--- improved cast screen tile to follow stock behavior
--- option for national data roaming adjusted for MTK compatibility
- Updated French translations (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Portuguese (PT) translations
- Updated Slovak and Czech translations
Changelog 3.4.0 - 31/08/2014
--------------------------------------
- Adjusted for compatibility with ThL 5000 (MTK6592) running stock ROM
- Potential support for other MTK devices running pure MediaTek KitKat ROMs
- UNC ActiveScreen: improved evaluation of proximity sensor state (fixes proximity sensor issues on Moto G)
- Display tweaks: Button backlight notifications feature adjusted for KitKat compatibility
- Battery charged sound: don't play fully charged sound at boot
- Lockscreen: don't apply quick unlock to SIM PIN/PUK views (Fixes glitch when entering SIM PIN/PUK)
- Updated Italian translations (thanks to valerioscifoni)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Russian translations (thanks to gaich)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translations
- Updated Slovak and Czech translations
Changelog 3.3.3 - 20/08/2014
--------------------------------------
- Fixed battery/charging events sounds playing even if no sounds are set
--- known to happen on Samsung and other "unsupported" devices
- Use proper minimum brightness value for status bar brightness control (thanks to tonyp)
- UNC ActiveScreen: optimized proximity sensor usage
--- feature no more requires prox sensor to be on while screen is off
- Updated French translation (thanks to ch-vox)
- Updated Slovak translations (thanks to ja_som)
Changelog 3.3.2 - 19/08/2014
--------------------------------------
- Quick settings: toggle auto-brightness on/off on brightness tile long-press (when brightness tile behavior overriden)
- Heads up common:
--- added option for choosing heads up position (applies only when keyboard is not showing to avoid interference http://youtu.be/m3xD9z0k5oM )
--- added option for choosing heads up transparency level
--- improved handling of non-intrusive incoming call
--- fixed heads up sometimes stuck after non-intrusive incoming call is answered
- Ultimate notification control:
--- Active Screen: added option for choosing heads up transparency level
--- Active Screen: avoid keyboard popping up for heads up on lock screen
--- fixed crash when orientation changes during app list loading
- Power tweaks: allow users to choose custom sounds for battery charged/charger plugged/unplugged events
- Navigation bar/pie: optimized behavior of dynamic clear all recents key
- Key actions: fixed issues with the recents key causing action reset
- ExpandedDesktop: don't show status bar when swiping from navbar area in semi-immersive mode - e.g. avoids showing status bar
when user has Pie controls within navbar area
- Display tweaks: affect button backlight behavior only when option for button backlight mode is other than default
- Misc tweaks: added option for FakeID vulnerability patch (thanks to Tungstwenty@XDA for original Xposed module - https://github.com/Tungstwenty/FakeIDFix):
--- patches new security vulnerability labeled "Fake ID" (Google bug 13678484) - http://bluebox.com/technical/android-fake-id-vulnerability/
- Updated Italian translations (thanks to valerioscifoni)
- Updated French translation (thanks to ch-vox)
- Updated German translations (thanks to LibertyMarine)
- Updated Russian translations (thanks to gaich)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.3.1 - 11/08/2014
--------------------------------------
- Fixed crash in GravityBox settings
- Don't show toasts when Headset is plugged/unplugged when no actions are set
- Fixed coloring of signal icon for SIM slot 2 (Moto G Dual SIM)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated French translation (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
Changelog 3.3.0 - 09/08/2014
--------------------------------------
- Added full support for Moto G Dual SIM running stock KitKat (except for carrier text options)
- Quick settings:
--- improved cast screen tile behavior
--- made precautions to avoid rare battery drain coming from Remote Display related to cast screen tile
--- added support for SIM 2 and network mode tiles on Moto G dual SIM devices
--- Network mode tile:
------ added option to choose to which SIM slot network mode tile applies (tile specific settings)
------ long-press on tile switches SIM slot without a need to dive into tile specific settings
- Signal cluster:
--- added option to hide mobile signal icons when SIM slots are empty (Moto G dual SIM)
- Heads up common:
--- show heads up only in case notification is for current user (in case of multi-user environments such as tablets)
- Ultimate notification control:
--- removed "Do not disturb" option from Default settings
--- added main screen with links to UNC features (improved user experience)
--- improved detection of statusbar visibility when heads up is set to show only when statusbar hidden
--- ActiveScreen: added option for setting heads up timeout (0 = until device is unlocked)
--- ActiveScreen: added option for setting heads up position
--- handle errors from package manager - potentially avoids rare crashes during app list loading
- Ring targets: improved unification of predefined/custom icon sizes
- Launcher tweaks: adjusted for compatibility with Google Search 3.6.13
- Improved compatibility with DynamicAlarm module (requires status bar coloring to be off)
- Navigation key actions: major rework which allows to bind Custom action to all key actions instead of using limited "Launch custom app 1/2"
--- removed "Launch custom app 1/2" from action list as well as related options for choosing custom app 1/2
--- added "Custom action" to the list of available actions which when set opens app picker for user to choose desired action
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Russian translations (thanks to gaich)
- Updated Italian translations (thanks to valerioscifoni)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.2.5 - 11/07/2014
--------------------------------------
- Quick Settings:
--- added support for Remote display tile (cast screen)
--- fixed glitches during settings panel expansion when Remote display tile is active
--- allow tile reordering activity on non-touchscreen devices
- Heads Up: fixed issue causing heads up to sometimes disappear too fast
- Ultimate notification control:
--- indicate active screen and heads up modes within UNC app list subtitles
--- changed improper title of Active Screen mode "when expanded desktop hides status bar"
- Pie: slightly increased trigger swipe angle
- Screen recording: toggle pointer automatically when screen recording starts
- Updated Russian translations (thanks to gaich)
- Updated Italian translations (thanks to valerioscifoni)
- Updated German translations (thanks to LibertyMarine)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Spanish translations (thanks to jvbferrer)
- Updated French translation (thanks to ch-vox)
Changelog 3.2.4 - 06/07/2014
--------------------------------------
- Heads Up (common):
--- improved non-intrusive call handling (won't show ongoing call as heads up)
--- added support for showing heads up for existing notifications that got updated
--- added support for proper handling of notification action buttons
------ hides heads up window when notification action button clicked
- UNC Active Screen:
--- per-app active screen extended to support heads up mode
--- shows centered heads up in lock screen
--- supports secured lock screen
- Navigation bar:
--- replaced Android L icons with the authentic ones
--- replaced Android L IME back icon with rotated triangle for more consistent experience
- Phone tweaks: fixed contact photo not always showing when unknown caller photo option is active
- Updated French translation (thanks to ch-vox)
- Updated Italian translations (thanks to valerioscifoni)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.2.3 - 02/07/2014
--------------------------------------
- HeadsUp: fixed misbehavior of non-intrusive incoming call when screen off or device locked
Changelog 3.2.2 - 02/07/2014
--------------------------------------
- Launcher tweaks: adjusted for compatibility with GNL 3.5
- Heads Up (common):
--- added support for non-intrusive incoming call:
------ active when non-intrusive incoming call option is enabled in Phone tweaks
------ always shows expanded for quick access to accept/decline call actions
--- added option to show heads up expanded
--- top gap is reduced automatically when status bar is hidden
- Heads Up (UNC):
--- added per-app option to show heads up expanded
--- added per-app "Do not disturb" option:
------ won't show any heads up from any app when app that has enabled DND is currently in the foreground
- Navigation bar: added option to show Android L icons (thanks to bgcngm)
- ClearAllRecents: adjusted for compatibility with Xperia devices
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated German translations (thanks to LibertyMarine)
- Updated Italian translations (thanks to valerioscifoni)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Slovak and Czech translations
Changelog 3.2.1 - 25/06/2014
--------------------------------------
- Heads up:
--- added master switch together with some basic options under Statusbar tweaks (outside Ultimate notification control)
--- added option for defining timeout (0 = persistent)
--- added option for turning on one finger expand
--- fixed issue affecting notification ordering
--- per-app heads up control remains available within Ultimate notification control (when master switch is on)
- Fixed statusbar battery percentages showing 0 after reboot when expanded battery tile is enabled
- QS: Don't apply "All caps" text style to extended battery tile to always show mV instead of MV
- Updated layout in UNC quick search box to allow inputting non-English characters (thanks to momomok)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated German translations (thanks to LibertyMarine)
- Updated Spanish translations (thanks to jvbferrer)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Russian translations (thanks to gaich)
- Updated Slovak and Czech translations
- Small adjustments to Indonesian translations (thanks to mirdhan)
Changelog 3.2.0 - 22/06/2014
--------------------------------------
- Ultimate notification control:
--- Heads up mode: takes advantage of hidden kitkat feature:
------ allows showing notifications in floating window; configurable on per-app basis
------ 2 finger swipe-down expands notification
------ applicable to non-ongoing notifications only
------ http://youtu.be/yXferAXGirM
--- Quiet hours: added option for controlling vibration muting separately
--- Quiet hours: added option for Interactive mode (Always keeps notifications quiet during user interaction)
- QuickSettings management:
--- added option for Extended battery tile (within Tile specific settings):
------ shows battery percentage inside tile icon
------ shows temperature and voltage as tile text (including percentage when charging)
--- changed QuickRecord tile icons (thanks to SlimRoms)
--- QuickApp tile: launch sub app immediately when there's only one defined
--- fixed signal tile layout for Motorola Razr HD devices
- Navigation bar:
--- fixed key shifting on Nexus7 and other non-phone UI devices
--- fixed menu key visibility logic during cursor control keys
- Misc tweaks:
--- added options for defining headset plug/unplug actions
--- added option for enabling Screenshot delete action within notification
- Statusbar date: added new format: "d" to show only day of month
- AppPicker: improved custom icon quality (requires re-assigning of custom icons)
- Updated Russian translations (thanks to gaich)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Polish translations (thanks to xtrem007)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated French translation (thanks to ch-vox)
- Updated Italian translations (thanks to valerioscifoni)
- Updated Spanish translations (thanks to jvbferrer)
- Updated German translations (thanks to LibertyMarine)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Slovak and Czech translations
Changelog 3.1.7 - 14/06/2014
--------------------------------------
- Fixed severe bug in AppPicker affecting ring targets/quick app tile icons
- Ring targets: apply highlight color change to all icon types
- Statusbar: extended option for clock date allowing to choose date format (thanks to bgcngm)
Changelog 3.1.6 - 13/06/2014
--------------------------------------
- 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.
- 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
- Implemented delete action within screenshot notification
- Quick settings:
--- added "override default tile behavior" support for SlimKat Location mode tile
--- added Compass tile
- 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 German translations (thanks to LibertyMarine)
- Updated Italian translations (thanks to valerioscifoni)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Slovak and Czech translations
Changelog 3.1.5 - 03/06/2014
--------------------------------------
- Adjusted for compatibility with Android 4.4.3
- Fixed error in expanded desktop tile causing SystemUI crash on 4.4.3
- 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
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated French translation (thanks to ch-vox)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Polish translations (thanks to xtrem007)
- Updated Italian translations (thanks to pesa1234)
Changelog 3.1.4 - 25/05/2014
--------------------------------------
- Added alternative way of making a donation via Play Store (About / Get unlocker)
- GB App Launcher: fixed apps disappearing after they get updated
- 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
- Updated Polish translations (thanks to xtrem007)
- Updated Chinese (Simplified) translations (thanks to liveasx)