forked from GravityBox/GravityBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
2274 lines (2172 loc) · 123 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changelog 3.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)
- Updated French translation (thanks to ch-vox)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Russian translations (thanks to abusalimov)
- Updated Italian translations (thanks to pesa1234)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations (thanks to Ja_Som)
Changelog 3.1.3 - 18/05/2014
--------------------------------------
- Adjusted for compatibility with Xposed Framework 2.6
- UNC Quiet Hours:
--- fixed time ranges being affected by timezone change (requires setting ranges again)
--- fixed refreshing of statusbar icon and tile on manual time change or timezone change
- GravityBox Actions: added shortcut for setting ringer mode
- GB App Launcher:
--- added one more row for setting up 4 additional apps/shortcuts
--- improved initialization at startup
--- added logic to handle assigned apps removal/uninstall
--- optimized to use less system resources
- Brought back navigation bar keys missing on HTC GPE devices having capacitive keys without menu key
- Notification panel: swipe to quick settings adjusted to work within whole panel area
- VolumePanel transparency: making view opaque on interaction is now optional
- Data Traffic Monitor: option to show only for mobile data
- Added new battery style: dashed circle without/with percentage
- Developer options: added 0.75x animation scale
- Ongoing notification blocker: fixed scaling of icons in the list
- Backup: prevent media scanner from scanning backup folder
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Spanish translations (thanks to jvbferrer)
- Updated French translation (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.1.2 - 05/05/2014
--------------------------------------
- Fixed issues with launching apps/shortcuts from unlock ring
- Updated Italian translations (thanks to valerioscifoni)
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Traditional) translations (thanks to momomok)
Changelog 3.1.1 - 03/05/2014
--------------------------------------
- Phone tweaks: Added option for ascending (increasing) ring tone
- Lockscreen tweaks:
--- Fixed issues with launching activities from "slide before unlock" ring (double-ring anomaly)
--- Allow safe GravityBox Actions to be run from unlock ring and navbar ring when lock screen is secured
--- Anti-aliased Battery Arc for better visual quality
- GB App Launcher:
--- Allows app launcher to be triggered from unlock/navbar rings on secured lock screen
--- Allows launching only safe GravityBox Actions when lock screen is secured
--- Will request unlock prior to launching activity - prompts user to unlock before running activity
- GravityBox Actions: Added action for toggling Airplane Mode
- Statusbar tweaks: Added option for controlling Bluetooth icon visibility
- Navbar tweaks: Don't show search icon hint when navbar ring is disabled
- RAM Bar: Fixed text alignment for RTL locales
- Key actions: Added action for in-app search (works in apps that support it)
- Launcher tweaks: Adjusted for compatibility with the latest obfuscated version of GNL
- Power Menu: Improved option to disable power menu while locked:
--- Won't allow power menu while activity that's allowed to be running
during keyguard lock is in the foreground (e.g. emergency dialer or camera app)
- Display tweaks: Changed unit of pulse notification delay to allow values < 1s
- Icon Picker: Added icon for Snapchat (thanks to jacknicholson)
- Misc tweaks: Option to force LTR layout direction for RTL languages
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to bluestarr, momomok)
- Updated Italian translations (thanks to pesa1234)
- Updated German translations (thanks to LibertyMarine, Minty123)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Russian translations (thanks to gaich)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Polish translations (thanks to xtrem007)
- Updated Slovak and Czech translations
Changelog 3.1.0 - 22/04/2014
--------------------------------------
- QuickSettings management:
--- added SlimKat style Location tile (thanks to SilentException):
------ single press = enable / disable, long press = change location mode
------ compatible with "Disable location consent" xposed module
--- added Quiet hours tile:
------ single-press cycles between QH on/off (manual mode)
------ long-press turns on QH auto mode (follows time ranges defined in QH settings)
------ long-press during auto mode opens QH settings
- UNC Quiet hours:
--- fixed bug in time range handling for Friday/Sunday
--- added option for ignoring QH on per-app basis:
------ allows ignoring QH for all notifications arriving from particular app
------ allows defining keywords for which to ignore QH (QH will be ignored for notifications containing keywords)
- GravityBox Actions:
--- added Quiet hours shortcuts:
------ one for toggling manual on/off, another one for switching to AUTO mode
------ 3rd party control via intent available:
--------- Intent: gravitybox.intent.action.ACTION_TOGGLE_QUIET_HOURS
--------- Extra param (optional): qhMode (case sensitive string; supported values: ON, OFF, AUTO)
--- fixed Google Now action not launching on devices without navigation bar
--- fixed bug in launching GB Actions from unlock ring (toggle actions were affected)
--- prevent GB actions from launching from navbar ring or unlock ring when keyguard is secured (security measure)
- SignalCluster settings:
--- option to show H+ indicator (distinguishes between HSPA and HSPA+)
--- option to change mobile data indicator style (LTE/4G)
- Media tweaks: option for adjusting volume panel transparency
- Notification drawer style: added custom carrier text support for MediaTek devices (thanks to bgcngm)
- Improved support for RTL languages
--- proper cursor control arrows in navigation bar
--- proper mobile signal icons (e.g. when statusbar coloring is on)
--- switching between RTL/non-RTL system language requires reboot for GB to load proper resources
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Hungarian translations (thanks to benjoe1)
- Updated German translations (thanks to Minty123)
- Updated Italian translations (thanks to pesa1234)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated French translation (thanks to ch-vox)
- Updated Polish translations (thanks to xtrem007)
- Updated Slovak and Czech translations
Changelog 3.0.3 - 14/04/2014
--------------------------------------
- Ultimate Notification Control:
--- Quiet hours: option to show icon in status bar during Quiet hours
--- Quiet hours: additional time range for weekends with automatic smart logic for Friday/Sunday
--- Active Screen: optimized proximity sensor usage
--- fixed handling of LED settings during Quiet hours
--- fixed UNC settings not being backed up/restored
- BatteryPercentText: option for choosing charging color
- Option for forcing English locale (under About menu)
- Initial support for MediaTek platform (thanks to bgcngm)
- Initial support for Lenovo VibeUI KK ROMs (thanks to bgcngm)
- PowerMenu: dynamic coloring of GB related icons based on color of original power menu icons (thanks to bgcngm)
- Added option to disable data network type icons (available to MTK based devices with Gemini support) (thanks to bgcngm)
- ModClearAllRecents: fixed rare FC occurring under special conditions ( https://plus.google.com/104339936357527615598/posts/BYdGbSrQXHj )
- Cleanup of unused resources (thanks to bgcngm)
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated German translations (thanks to Minty123, LibertyMarine
- Updated Dutch translations (thanks to Snerual)
- Updated Chinese (Traditional) translations (thanks to momomok)
- Updated Hungarian translations (thanks to benjoe1)
- Updated Spanish translations (thanks to jvbferrer, cgrs)
- Updated French translation (thanks to ch-vox)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.0.2 - 07/04/2014
--------------------------------------
- Ultimate Notification Control extended:
--- Active Screen:
------ automatically turns on screen every time new notification arrives
------ optionally expands notification panel automatically
------ takes into account whether device is in the pocket or case
------ master switch + configuration on per-app basis
--- Quiet hours:
------ mutes sounds/vibrations for all notifications arriving within defined time range
------ optionally mutes LED (won't pulse when notification arrives)
------ mutes also GB's charger plugged/unplugged/battery charged sounds
--- More control over LED settings:
------ allows preserving original LED settings coming from a particular app
------ allows overriding LED settings to provide custom behavior
------ allows turning LED off for a particular app
- Dialer: don't perform non-intrusive call when day dreaming
- Traffic Meter: follow signal cluster alpha changes:
--- e.g. hides traffic meter when statusbar is in low profile mode
- Updated French translation (thanks to ch-vox)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Hungarian translations (thanks to joco82)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.0.1 - 31/03/2014
--------------------------------------
- Fixed volume key crashes on Xperia devices
- Notification control: implemented default settings
--- when enabled, all apps that have no active explicit settings will automatically use default settings
--- introduced trial period to allow users to check if notification control submodule works on their device
- Clear all recents:
--- fixed clear all key being stuck in navbar under certain conditions
--- workaround for AOSP bug that kept recents panel active in the background under certain conditions
--- fixed clear all key coloring in Pie (thanks to SilentException)
--- further optimizations (thanks to SilentException)
--- potential fix for SystemUI crash on Xperia devices
- Navigation bar: option to disable camera icon in lock screen
- Phone: fixed Home key not responding during non-intrusive incoming call
- Media: take increased music volume steps into account for safe headset volume
- Reorganized Clock settings (thanks to Minty123)
- Added Malay translations (thanks to zamzameir)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Traditional) translations (thanks to Eric850130, knight00931, momomok)
- Updated Polish translations (thanks to xtrem007)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Chinese (Simplified) translations (thanks to liveasx, logicmd)
- Updated German translations (thanks to Minty123, LibertyMarine)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated French translation (thanks to ch-vox)
- Updated Italian translations (thanks to pesa1234)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 3.0.0 - 16/03/2014
--------------------------------------
- Introducing Ultimate Notification Control (premium)
--- allows notification LED color and duration control on per-app basis
--- allows overriding notification sounds and vibrations on per-app basis
--- supports "Alert only once" and "Insistent" notification features
--- workaround for AOSP bug preventing LED from working for missed calls
------ activates by enabling Notification Control for "Phone" app
- New clear all recents style: clear all button in Navigation bar/Pie (thanks to SilentException)
--- replaces recents button with clear all button while recents panel is showing
- Lockscreen: option to hide red trail when wrong pattern is entered (thanks to SilentException)
- Omni traffic monitor: added option for auto-hiding on inactivity based on user-defined speed threshold
- Navigation keys: added option for specifying virtual key vibe pattern
- Icon Picker: added icons for Chrome and Spotify (thanks to Jason_MCG, jacknicholson)
- Fixed invalid value of Data Activity Indicator color
- Updated German translations (thanks to Minty123, Wikiwix)
- Updated Spanish translations (thanks to jvbferrer)
- Updated French translation (thanks to ch-vox)
- Updated Italian translations (valerioscifoni)
- Updated Russian translations (thanks to gaich)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Polish translations (thanks to xtrem007)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Slovak and Czech translations
Changelog 2.9.9 - 12/03/2014
--------------------------------------
- QuickSettings management:
--- Option for choosing timeout modes for Stay Awake Tile (thanks to JayT5)
--- Added Lockscreen Tile: allows enabling/disabling lockscreen
--- Added Alarm dynamic tile to the list of manageable tiles:
------ allows Alarm tile enable/disable/reorder
------ option for assigning app/shortcut on single-tap
------ option for assigning app/shortcut on long-press
--- Added long-press action to Airplane mode tile (thanks to SilentException)
--- Added long-press action to Auto-rotate tile (thanks to SilentException)
--- Added long-press action to Settings tile (opens GB) (thanks to SilentException)
--- Added long-press action to Brightness tile (thanks to SilentException)
--- Reorganized tile specific settings for better user experience
- Data traffic monitor revamped:
--- Added new style (Omni) that can show download/upload separately
--- Option to show traffic monitor only while there are ongoing downloads via Android's Download Manager (CPU/battery friendly)
- Signal cluster settings: option to specify data activity indicator color (independent of statusbar icon coloring)
- Lockscreen tweaks: removed "Allow any widget" option due to locskcreen widget API breakage
- Battery charged/charger plugged/unplugged sounds:
--- Linked to notification stream instead of media stream
--- Ogg files are now stored in the filesystem thus can be easily replaced with custom ones:
------ stored in /data/data/com.ceco.kitkat.gravitybox/files
------ when replaced, correct file permission mode must be set for files to be readable by everyone
--- Falls back to system notification sound in case ogg is missing or is not readable
- Icon Picker: Added icons for Calculator, Skype and Viber
- New permission: RECEIVE_BOOT_COMPLETED needed for preparation of assets at boot (e.g. ogg files)
- Fixed error in computation of auto-brightness spline (when Brightness tweaks are active)
- Updated Russian translations (thanks to gaich)
- Updated French translation (thanks to ch-vox)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated Polish translations (thanks to xtrem007)
- Updated Spanish translations (thanks to jvbferrer)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Japanese translations (thanks to WedyDQ10)
- Updated Slovak and Czech translations
Changelog 2.9.8 - 03/03/2014
--------------------------------------
- Last screen: fixed scaling of images (thanks to bgcngm)
- 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
- Screen Recording: option to choose stock screenrecord binary instead of alternative (to be used in case device's incompatible with alternate binary)
- QuickSettings management:
--- Ringer Mode Tile: preserve vibrate state when switching to silent mode (thanks to jacknicholson for pointing out)
--- Screenshot Tile: toggle screen recording on long-press on tile (thanks to natezire71 for idea)
- 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)
- Updated Portuguese (PT) translation (thanks to bgcngm)
- Updated Italian translations (thanks to pesa1234, valerioscifoni)
- Updated Russian translations (thanks to gaich)
- Updated Chinese (Simplified) translations (thanks to liveasx)
- Updated Chinese (Traditional) translations (thanks to Eric850130, knight00931)
- 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 - 16/02/2014
--------------------------------------
- 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
- Screen recording:
--- Added support for audio recording (via audio out mix (default) or via microphone)
--- Added options for controlling screen recording: video size, bitrate, time limit, etc.
- 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: added option for double-tap to sleep on unlock ring
- 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)
--- Added intent extra for setting expanded desktop on/off explicitly for better usability with tasker (thanks to alogblog)
------ action: gravitybox.intent.action.TOGGLE_EXPANDED_DESKTOP
------ extra: hwKeyValue (values: 0=toggle, 1=on, -1=off) (falls back to 0 when unspecified)
- 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 Slovak and Czech translations
Changelog 2.9.6 - 09/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 for Tile label style (normal/all caps/hidden)
--- added option to specify Quick pulldown size
- Statusbar tweaks:
--- added option for expanding all notifications
--- added option for double-tap to sleep
- Phone tweaks: added option for national data roaming (thanks to Gugiwuz)
- 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
- GB Actions: added shortcut to open brightness dialog
- 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
- Added Hebrew translations (thanks to daxgirl)
- Updated Chinese (Traditional) translations (thanks to Eric850130)
- 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)