JWMD SlideUnlock v1.0.0520.2011 - Windows Mobile Apps and Games

This is my 2nd attempt on creating a Windows Phone 7 Lock like application for Windows Mobile 6.x and 6.5.x. The first one I made was like too simple and it's not skinnable, so this one has that feature.
I made the horizontal-slide-and-unlock because I thought it'll be more Finger Friendly because we just have to use one hand when sliding unlike what WP7 usually have. Pshychologically, more people will use their other hand when unlocking because they have a large screen and they have to slide their finger all the way to the top or probably make a fast flick of their thumb. And think about the screen got an initial hard pressure from your thumb.
This is a very early stage of SlideUnlock development but i'm releasing it so I can get your inputs and feedbacks.
So what are the features?
It's skinnable!
Add your own Image or Text!
Add your custom font.
Add your custom image or text
You can reposition the objects.
Supports all resolution!
Slide horizontally
Slide vertically
Supports All Language.
It Suspend or turn the Backlight Off when unused or unlocked for n seconds.
and it's free (again)
How to skin?
You can grab the app.settings file after you install the application. The file is located where you installed the application. Open it and you can read the comments I made there. There are some initial PNG images there too.
The current theme is designed for VGA So I wish guys you make your theme and share it here too
HISTORY said:
May 30, 2011 - 1.0.0530.2011
ADDED: sumon file (you don't have to worry about it) - now you can lock the screen by tapping on the program icon. The old one was either you have to press the power button or you have to wait the phone to standby before it locks the screen.
April 29, 2011 - 1.0.0426.2011
ADDED: Vertical sliding support (check configuration "app.config" and post #2)
FIXED: Slider. Continues to slide even if it slides tooo slow.
FIXED: Lagging when scrolling
March 31, 2011 - 1.0.0331.2011
ADDED: It will Suspend/Backlight Off when not unlock for n seconds
ADDED: Text support for image objects
ADDED: sleep.exe - will suspend your device
ADDED: backlightoff.exe - will turn the backlight off
UPDATED: Animation code
FIXED: support for multi language rom
FIXED: slide to left
FIXED: adding custom image object and text object
March 29, 2011 - 1.0.0329.2011
Fixed localization
Updated comments on app.config
March 28, 2011 - Initial Release
It's skinnable!
Add your own Image or Text!
Add your custom font.
You can reposition the objects.
Supports all resolution!
Slide horizontally.
and it's free (again)
Click to expand...
Click to collapse
Guys when reporting an error
Kindly include this details:
Device Brand and Model
ROM, ROM Language, ROM Link
Error Message and Screenshots
What you did before the error shown.
there's a patch for version 1.0.0329.2011
http://forum.xda-developers.com/showpost.php?p=12493309&postcount=20
patch details: fixed language

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
If you're having a difficulty unlocking, you can play around on the settings (But I suggest, play around with DragSensitivity first). You can also share your best setting for your device.
Editing the settings can be found in app.settings.
here's the complete app.config file content.
HTML:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<!-- START: GENERAL SETTINGS -->
<add key="fontname" value="Segoe WP Light"/>
<!-- if locked, the phone will sleep after n seconds -->
<add key="SleepTimeout" value="30"/>
<!-- -1 = Disable, 0 = Turn Off Backlight, 1 = Sleep Device -->
<add key="SleepType" value="1"/>
<!--
The goal is to support lower DPIs when your theme was designed for higher DPI(192)
So you're designing your theme in what DPI?
QVGA, WQVGA = 96
VGA, WVGA = 192
-->
<add key="ThemeDPI" value="96"/>
<!-- double tap to end the application -->
<add key="DevMode" value="1"/>
<!-- END: GENERAL SETTINGS -->
<!-- START: scrolling settings -->
<!-- DragDistanceFactor must be greater than or equal to 1.0 -->
<add key="DragDistanceFactor" value="50.0"/>
<!-- SnapBackFactor must fall within exclusive range 0.0 < value < 1.0 -->
<add key="SnapBackFactor" value="0.5"/>
<!-- DeaccelerationFactor must fall within exclusive range 0.0 < value < 1.0 -->
<add key="DeAccelerationFactor" value="0.95"/>
<!-- MaxVelocity must be greater than or equal to 1.0 -->
<add key="MaxVelocity" value="9000.0"/>
<!--
0 = Horizontal, 1 = Vertical
When setting the SlideMode to Vertical, make sure to have a higher
DragSensitivity!
-->
<add key="SlideMode" value="0"/>
<!-- the lesser the more sensitive -->
<add key="DragSensitivity" value="8"/>
<!-- END: kinectic scrolling settings -->
<!-- START: object count -->
<!-- max key for text objects -->
<add key="TextObjects" value="20"/>
<!-- max key for image objects -->
<add key="ImageObjects" value="20"/>
<!-- END: object count -->
<!-- START: Text Objects -->
<!--
format:
key_text_properties
-->
<!--
CLOCK
-->
<add key="0_text_left" value="12"/>
<add key="0_text_top" value="110"/>
<add key="0_text_textsize" value="70"/>
<add key="0_text_color_red" value="255"/>
<add key="0_text_color_green" value="255"/>
<add key="0_text_color_blue" value="255"/>
<add key="0_text_fontstyle_normal" value="1"/>
<add key="0_text_fontstyle_bold" value="0"/>
<add key="0_text_fontstyle_italic" value="0"/>
<add key="0_text_fontstyle_strikeout" value="0"/>
<add key="0_text_fontstyle_underline" value="0"/>
<!-- 0 = PLAIN TEXT, 1 = DATETIME -->
<add key="0_text_type" value="1"/>
<add key="0_text_text" value=""/>
<add key="0_text_format" value="h:mm"/>
<!--
DATE DAY
-->
<add key="1_text_left" value="12"/>
<add key="1_text_top" value="160"/>
<add key="1_text_textsize" value="40"/>
<add key="1_text_color_red" value="255"/>
<add key="1_text_color_green" value="255"/>
<add key="1_text_color_blue" value="255"/>
<add key="1_text_fontstyle_normal" value="1"/>
<add key="1_text_fontstyle_bold" value="0"/>
<add key="1_text_fontstyle_italic" value="0"/>
<add key="1_text_fontstyle_strikeout" value="0"/>
<add key="1_text_fontstyle_underline" value="0"/>
<!-- -1 = HIDE, 0 = PLAIN TEXT, 1 = DATETIME -->
<add key="1_text_type" value="1"/>
<add key="1_text_text" value=""/>
<add key="1_text_format" value="dddd"/>
<!--
DATE
-->
<add key="2_text_left" value="12"/>
<add key="2_text_top" value="190"/>
<add key="2_text_textsize" value="40"/>
<add key="2_text_color_red" value="255"/>
<add key="2_text_color_green" value="255"/>
<add key="2_text_color_blue" value="255"/>
<add key="2_text_fontstyle_normal" value="1"/>
<add key="2_text_fontstyle_bold" value="0"/>
<add key="2_text_fontstyle_italic" value="0"/>
<add key="2_text_fontstyle_strikeout" value="0"/>
<add key="2_text_fontstyle_underline" value="0"/>
<!-- -1 = HIDE, 0 = PLAIN TEXT, 1 = DATETIME -->
<add key="2_text_type" value="1"/>
<add key="2_text_text" value=""/>
<add key="2_text_format" value="d MMMM"/>
<!--
APPOINTMENTS
-->
<add key="3_text_left" value="12"/>
<add key="3_text_top" value="225"/>
<add key="3_text_textsize" value="15"/>
<add key="3_text_color_red" value="255"/>
<add key="3_text_color_green" value="255"/>
<add key="3_text_color_blue" value="255"/>
<add key="3_text_fontstyle_normal" value="1"/>
<add key="3_text_fontstyle_bold" value="0"/>
<add key="3_text_fontstyle_italic" value="0"/>
<add key="3_text_fontstyle_strikeout" value="0"/>
<add key="3_text_fontstyle_underline" value="0"/>
<!-- -1 = HIDE, 0 = PLAIN TEXT, 1 = DATETIME -->
<add key="3_text_type" value="0"/>
<add key="3_text_text" value=""/>
<add key="3_text_format" value="d MMMM"/>
<add key="3_text_maxapp" value="1"/>
<!--
custom text? if you want to have your custom text
make sure to have all those properties and start from
20th key "20_" to n
and don't forget to update TextObjects
<add key="TextObjects" value="<max_key>"/>
-->
<!--
VERSION text
-->
<add key="20_text_left" value="42"/>
<add key="20_text_top" value="24"/>
<add key="20_text_textsize" value="10"/>
<add key="20_text_color_red" value="0"/>
<add key="20_text_color_green" value="0"/>
<add key="20_text_color_blue" value="0"/>
<add key="20_text_fontstyle_normal" value="1"/>
<add key="20_text_fontstyle_bold" value="0"/>
<add key="20_text_fontstyle_italic" value="0"/>
<add key="20_text_fontstyle_strikeout" value="0"/>
<add key="20_text_fontstyle_underline" value="0"/>
<add key="20_text_type" value="0"/>
<add key="20_text_text" value="version 1.0.0331.2011" />
<add key="20_text_format" value="d MMMM"/>
<!-- START: Text Objects -->
<!-- START: Image Objects -->
<!--
format:
key_properties
-->
<!--
CALL ICON
-->
<add key="0_left" value="31"/>
<add key="0_top" value="277"/>
<add key="0_width" value="32"/>
<add key="0_height" value="32"/>
<add key="0_icontext_left" value="35"/>
<add key="0_icontext_top" value="0"/>
<add key="0_icontext_size" value="30"/>
<add key="0_color_red" value="255"/>
<add key="0_color_green" value="255"/>
<add key="0_color_blue" value="255"/>
<add key="0_fontstyle_normal" value="1"/>
<add key="0_fontstyle_bold" value="0"/>
<add key="0_fontstyle_italic" value="0"/>
<add key="0_fontstyle_strikeout" value="0"/>
<add key="0_fontstyle_underline" value="0"/>
<!--
SMS ICON
-->
<add key="1_left" value="94"/>
<add key="1_top" value="277"/>
<add key="1_width" value="32"/>
<add key="1_height" value="32"/>
<add key="1_icontext_left" value="35"/>
<add key="1_icontext_top" value="0"/>
<add key="1_icontext_size" value="30"/>
<add key="1_color_red" value="255"/>
<add key="1_color_green" value="255"/>
<add key="1_color_blue" value="255"/>
<add key="1_fontstyle_normal" value="1"/>
<add key="1_fontstyle_bold" value="0"/>
<add key="1_fontstyle_italic" value="0"/>
<add key="1_fontstyle_strikeout" value="0"/>
<add key="1_fontstyle_underline" value="0"/>
<!--
EMAIL ICON
-->
<add key="2_left" value="157"/>
<add key="2_top" value="277"/>
<add key="2_width" value="32"/>
<add key="2_height" value="32"/>
<add key="2_icontext_left" value="35"/>
<add key="2_icontext_top" value="0"/>
<add key="2_icontext_size" value="30"/>
<add key="2_color_red" value="255"/>
<add key="2_color_green" value="255"/>
<add key="2_color_blue" value="255"/>
<add key="2_fontstyle_normal" value="1"/>
<add key="2_fontstyle_bold" value="0"/>
<add key="2_fontstyle_italic" value="0"/>
<add key="2_fontstyle_strikeout" value="0"/>
<add key="2_fontstyle_underline" value="0"/>
<!--
BATTERY ICON
-->
<add key="3_left" value="218"/>
<add key="3_top" value="7"/>
<add key="3_width" value="15"/>
<add key="3_height" value="7"/>
<add key="3_icontext_left" value="-21"/>
<add key="3_icontext_top" value="-3"/>
<add key="3_icontext_size" value="12"/>
<add key="3_color_red" value="0"/>
<add key="3_color_green" value="0"/>
<add key="3_color_blue" value="0"/>
<add key="3_fontstyle_normal" value="1"/>
<add key="3_fontstyle_bold" value="0"/>
<add key="3_fontstyle_italic" value="0"/>
<add key="3_fontstyle_strikeout" value="0"/>
<add key="3_fontstyle_underline" value="0"/>
<!--
custom icon? if you want to have your custom text
make sure to have all those standard properties and start from
20th key "20_" to n
and don't forget to update ImageObjects
<add key="ImageObjects" value="<max_key>"/>
-->
<!--
BETA ICON
-->
<add key="20_left" value="5"/>
<add key="20_top" value="5"/>
<add key="20_width" value="32"/>
<add key="20_height" value="32"/>
<add key="20_icontext_left" value="37"/>
<add key="20_icontext_top" value="0"/>
<add key="20_icontext_size" value="18"/>
<add key="20_color_red" value="0"/>
<add key="20_color_green" value="0"/>
<add key="20_color_blue" value="0"/>
<add key="20_fontstyle_normal" value="1"/>
<add key="20_fontstyle_bold" value="0"/>
<add key="20_fontstyle_italic" value="0"/>
<add key="20_fontstyle_strikeout" value="0"/>
<add key="20_fontstyle_underline" value="0"/>
<!--
keyn_custom_text - implementation for version 1.0.0330.2011
it's an optional property for Image Objects
-->
<add key="20_custom_text" value="Beta Version"/>
<!-- START: Image Objects -->
</appSettings>
</configuration>
if you want to remove the Beta icon and Version text, update ImageObjects and TextObjects. Make it look like this
<!-- max key for text objects -->
<add key="TextObjects" value="3"/>
<!-- max key for image objects -->
<add key="ImageObjects" value="3"/>
and remove the configuration for key #20
Applying the settings requires the program to be restarted, so It's best to set that DevMode to 1 and launch the application again.
Settings History said:
April 26, 2011
ADDED: "SlideMode" key in Kinetic Scrolling Settings
Click to expand...
Click to collapse

Just tried it on my HD mini (wm 6.5.X) and it's working fine I have only one problem. When i double tap the lock screen the proccess gets killed.
Edit: Ok i found it in the settings. It is supposed to do that when dev mode is enabled.

zalaros said:
Just tried it on my HD mini (wm 6.5.X) and it's working fine I have only one problem. When i double tap the lock screen the proccess gets killed.
Edit: Ok i found it in the settings. It is supposed to do that when dev mode is enabled.
Click to expand...
Click to collapse
Yes Double tapping kills the application
Read the first post about the app.settings file so you can disable the double tap

I haven't yet tried this because of my device being repaired but does this locker also turn off (or allow to be turned off by system) the screen/sleep IF not unlocked in time? This is the most important thing for lockers i think because if the screen gets turned on in the pocket for some third party reason occasional contacts with screen would keep the device on (also locked ofcourse) and drain the battery hardly

darfri said:
I haven't yet tried this because of my device being repaired but does this locker also turn off (or allow to be turned off by system) the screen/sleep IF not unlocked in time? This is the most important thing for lockers i think because if the screen gets turned on in the pocket for some third party reason occasional contacts with screen would keep the device on (also locked ofcourse) and drain the battery hardly
Click to expand...
Click to collapse
Good question darfi.
Yes, this locker does not interfere with winmo's Power Scheduling or any other 3rd party power scheduler apps. So if you have your phone scheduled to turn off the backlight or to sleep, it does not interfere with those or simply saying, this locker don't make your phone always awake!
On the other hand, I like the idea of having its own power scheduling.

Nullstring said:
Good question darfi.
Yes, this locker does not interfere with winmo's Power Scheduling or any other 3rd party power scheduler apps. So if you have your phone scheduled to turn off the backlight or to sleep, it does not interfere with those or simply saying, this locker don't make your phone always awake!
On the other hand, I like the idea of having its own power scheduling.
Click to expand...
Click to collapse
Hi again. Confusing issue
As I understand winmo's Power Scheduling keeps the device awake for predefined time from the last input (screen, key) so winmos power sch is causing the device to drain. So lets say that if I have locked the device with JWMD SU and it wakes up in the pocket for third reason the winmo will keep it awake because of occasional touches on screen. Which is bad. So this wont protect from that problem? This problem is solved in s2u2, pocketshield and touchlockpro

darfri said:
Hi again. Confusing issue
As I understand winmo's Power Scheduling keeps the device awake for predefined time from the last input (screen, key) so winmos power sch is causing the device to drain. So lets say that if I have locked the device with JWMD SU and it wakes up in the pocket for third reason the winmo will keep it awake because of occasional touches on screen. Which is bad. So this wont protect from that problem? This problem is solved in s2u2, pocketshield and touchlockpro
Click to expand...
Click to collapse
Well the bottom line, I got the point and will integrate that feature.
and Yes, I have noticed that functionality in Pocketshield which at first use, I didn't get the reason why they have that.

Looks interesting & promising development.
Will this work on WVGA if use correct sized background PNG ?

Mister B said:
Looks interesting & promising development.
Will this work on WVGA if use correct sized background PNG ?
Click to expand...
Click to collapse
yeap will you share your theme if you made one?

Hello Nullstring...
Once again a good new baby !
Device • Toshiba TG01
Rom • WM6.5.3 build 29017
Res • WVGA (800x480)
Can't launch apps... an error occured start !
Screen capture error :
If i can test my res, i can perform some skin !

lesscro said:
Hello Nullstring...
Once again a good new baby !
Device • Toshiba TG01
Rom • WM6.5.3 build 29017
Res • WVGA (800x480)
Can't launch apps... an error occured start !
Click to expand...
Click to collapse
French right?? I have worked on this before but I forgot what app... tho' its the localization of the numerical values.. let me dig on that again

does not work on my Diamond.
Installed the cab.file and it's listed in the start menu, but it won't work.
Error says:
SnapBackFactor must fall within exclusive range 0.0 < value< 1.0.
And it says something about needing .Net Compact Framework, which I cannot find in my program list, but when I try to install it through my PC, it says that it's already on the Diamond.
Device: Diamond
Rom: Gen.Y D2X http://forum.xda-developers.com/showthread.php?t=590090 in German
Sorry for not giving screenshots, haven't got enough time to check that out, but the screen does not say anything different from what I wrote above.
Would love to see your lockscreen working!

ok Am working on the patch right now.. will inform you immediately after I have tested this on emu

version 1.0.0329.2011 released
UPDATE:
- localization fixed
- update comments in app.config (check post #2)

Nullstring said:
French right?? I have worked on this before but I forgot what app... tho' its the localization of the numerical values.. let me dig on that again
Click to expand...
Click to collapse
You right... LeSScro is a French user...
And about your app who you worked before and have localization error...
I think JWMD icon changer... isn't it ?
cheers... Hope My Photoshop can provide a good skin for this apps !

Just a quick question: will your app replace the standard WM 6.1 lockscreen or it's an independent application ?

Sp1tfire said:
Just a quick question: will your app replace the standard WM 6.1 lockscreen or it's an independent application ?
Click to expand...
Click to collapse
nope. It doesnt replace the 6.1 lockscreen.
this is a 3rd party application

Hello,
You made an update before i made a answer... Super Nullstring...
Device • Toshiba TG01
Rom • WM6.5.3 build 29017
Res • WVGA (800x480)
Lang • French (040c)
.NET • 3.7 (include in ROM)
after Fixed version, now i have another error :
Error during import something... i think...
EDit /
About pool... does i am the oNly one who want see Vertical slide ? and maybe 2 directions using app.config...

lesscro said:
Error during import something... i think...
Click to expand...
Click to collapse
can you extract this two files where you installed the app? get back to me ASAP

Related

[ROM][4.4.2][Kernel/3.0.31][GSM/CDMA] Liquid Smooth 3.0 Unofficial - 03/26 updated

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
LiquidSmooth
LiquidSmooth is an aftermarket firmware based on the Android Open Source Project.
We are dedicated to providing Android users with smooth, stable and fast Roms. We start with a fast, and lightweight modified AOSP base, and then add the features you crave!
While we make every effort to test these builds as much as possible, we are not responsible for anything that may happen to your device, family, pets, or perception of reality. We ask that you do your part to know your device and know how to recover from problems before you flash!
​
Click to expand...
Click to collapse
ScreenShots
​
Click to expand...
Click to collapse
Feature
*Interface
- Appbar
- Clock widget
- Power Menu
- Progress bar
- Recents RAM bar
- Defalut app picker
- Custom LCD density
- Enable Slim Recents
*Lock screen
- Interface
- Custom wallpaper
- Eight slider targets
- Button actions
- Slider targets
- Shortcuts
- Slider torch
- Notifications
- etc..
- Style
- See through
- Blur background
- etc..
- Widgets
- etc..
- Battery around ring
- Battery Status
- Lock before unlock
- Menu unlock
- Quick unlock
*Performance
- Liquid Kernel Tweaker
- etc..
*Status bar
- Status Bar Color
- Battery icon
- Clock and date
- Brightness control
- Double-tap to sleep
- Show network speeds
- Notification count
- Signal display
*Active display
- etc..
*Notification drawer
- Hide notification labels
- Contextual header
- Custom carrier label
- Notification Transparenty
- Notification Style
- Shortcuts
- QS Style
- Tiles and layout
- Quick Ribbon
- Filp tiles
- Quick collapse
- Quick pulldown
- Smart pulldown
- Enable notification reminder
*Pie control
- etc..
*Wakelock blocker
- etc..
*Total blackout
*Sound
- Volume Steps
- Advanced options
- Camera shutter sound
- Safe headset volume
- etc..
- etc..
*Display
- Screen recorder
- CRT animation
- Listview animation
- Animation controls
- IME animations
- Scrolling modifiers
- etc..
*Theme
*etc..
Click to expand...
Click to collapse
ChangeLog
(2014-03-15)
- repo sync
- using cm device source stuff
- kexec kernel 3.0.31
- fix hardware key
(2014-03-16)
- repo sync
*Gesture Anyware
(2014-03-18)
- repo sync
- fix build error
- add governers
- add vr scheduler
(2014-03-26)
- repo sync
- merge hdmi fixes (HDMI work)
Click to expand...
Click to collapse
Download
http://pan.baidu.com/share/home?uk=221940291#category/type=0
http://d-h.st/users/qkdxorjs1002
Click to expand...
Click to collapse
Source
###RELATED DRIVER!!###
Kernel Source:
https://github.com/qkdxorjs1002/android_kernel_motorola_omap4-common
https://github.com/qkdxorjs1002/android_frameworks_native
https://github.com/Cyanogenmod/android_device_motorola_omap4-common
https://github.com/Cyanogenmod/android_device_motorola_umts_spyder
https://github.com/Cyanogenmod/android_device_motorola_spyder
https://github.com/Pinky-Inky-and-Clyde/proprietary_vendor_motorola
Code:
<manifest>
<project path="kernel/motorola/omap4-common" name="qkdxorjs1002/android_kernel_motorola_omap4-common" remote="gh" revision="cm-11.0" />
<project path="device/motorola/spyder" name="android_device_motorola_spyder" remote="cm" revision="cm-11.0" />
<project path="device/motorola/umts_spyder" name="android_device_motorola_umts_spyder" remote="cm" revision="cm-11.0" />
<project path="device/motorola/omap4-common" name="android_device_motorola_omap4-common" remote="cm" revision="cm-11.0" />
<project path="vendor/motorola" name="Pinky-Inky-and-Clyde/proprietary_vendor_motorola" remote="gh" revision="cm-11.0" />
</manifest>
​
Click to expand...
Click to collapse
Cool!
Whats diffent between dhacker one?
Sent from my XT910 using Tapatalk 2
mydoom said:
Whats diffent between dhacker one?
Sent from my XT910 using Tapatalk 2
Click to expand...
Click to collapse
same but unofficial nightly thread
CDMA version?
Sent via Raven
"Dark Wings.....Dark Words"
Is there any chance we can add a 6.0 widescreen resolution to the camera?
Thread updated.
I will be bring rom soon
YO said 3.0.31 kernel version on first post. When is available this rom
He said soon
Sent from my XT912 using xda app-developers app
Will this version allow the led to blink with the screen ON?
Sent from my XT912 using Tapatalk 2
sherri said:
Will this version allow the led to blink with the screen ON?
Sent from my XT912 using Tapatalk 2
Click to expand...
Click to collapse
Yep, that surely can be annoying, if they do not work at the same time,,,,lol,
Again with the coming soon thread???
Brantuck84 said:
Again with the coming soon thread???
Click to expand...
Click to collapse
Was waiting on that...
Sent from my XT912 using xda app-developers app
Lincoln357 said:
Yep, that surely can be annoying, if they do not work at the same time,,,,lol,
Click to expand...
Click to collapse
It is, actually. Put phone in a dock. Goes to a clock mode. No notification bar. After a few minutes, screen goes to a "bouncing" digital clock. There is no notification bar! Sounds are on silent, because I could be on another phone. Or someone is at my desk.
There is no way for me to know if I have a notification. So.... I have to tap screen, which gets rid of bouncing clock. Now, exit dock mode (or physically remove phone from dock). Then see I have missed notifications. Now pull down notification bar to see them. Kind of stupid. Am I supposed to check every few minutes? I have 3 kids, 2 away in college.
On OLDER versions of CM and all CM based ROMs, you could enable the led light to blink with the screen ON. Now... Same scenario. Phone is docked. Bouncing digital clock... Led starts to flash. By setting up different colors for notifications, I know immediately what I have to do. Blue light = Twitter or FB update. Ignore. Green light = Gmail. Ignore. Red light = missed call. Respond. Purple = text from kids. Respond.
Understand? AOKP has this as well, but I don't think they will update this phone to 4.4. Currently running AOKP 4.3
Phone is capable of this. (If using a 4.4 ROM, install the app "battmonx". It has a setting to allow the led light to light with the screen ON, but only for battery information.)
Also, if I a using an app on full screen or watching a TV show using Droid TV Primetime, there is no notification bar. I need the led to light for the same reason.
So... Yes, it IS "annoying when they do not work at the same time.
Sent from my XT912 using Tapatalk 2
Yep, I got it, just that I never used my phone docked so it was a kinda funny on what stuff are people complain. But I'm sorry, you're absolutely right.
Sent from my XT910 using Tapatalk
update for test
How is this different from the official?
OG RAZR XT912 got 4.4 before S4!
ins5736 said:
How is this different from the official?
OG RAZR XT912 got 4.4 before S4!
Click to expand...
Click to collapse
Related source
3.0.31 kernel (will be customized)
Etc
나의 XT910 의 Tapatalk에서 보냄
This download is very very slow, you can change servers?
Enviado desde mi XT910 mediante Tapatalk
Can we talk inbox? @qkdxorjs1002
Desde Argentina con mi XT910

OmniKang - by finnq & Schubi (i9100)

OmniKang by finnq & Schubi (Android 4.4)
This is an OmniROM based ROM with lots of cherry picks and modifications.
OmniKang is compatible with the official OmniROM nightlies.
So you normally you can flash OmniKang just over an OmniROM nightly without wiping anything. It's just the same procedure as flashing a new nightly.
You can also do the other way round without expecting problems.
I won't describe here in detail how to flash OmniKang because it's almost exactly the same procedure as for OmniROM. So please have a look here if you don't know. However, you don't have to flash Superuser manually, as it's already in OmniKang.
Main features
Android 4.4 and all the features of OmniROM
OpenPDroid
From time to time we release builds with OpenPDroid, but our nightlies don't have OpenPDroid support!
Lock screen notifications
Displays notifications on lock screen. You can swipe out notifications to dismiss them.
HALO
ParanoidAndroid's HALO Notification Bubble.
CM ribbons
QuickSettings ribbon controls in notification drawer
Dark UI (TRDS)
Change UI to black theme
NavBar Height Mod
You can set the height of the navigation bar from 20 dp up to stock 48 dp.
Center Clock Mod
You can move the clock to the middle of the status bar.
Battery Bar
Shows a bar with the battery status above the status bar or above the navigation bar.
NFC Polling Mode
Enable NFC polling on lock screen or when screen is of.
Advanced network activity indicator
For example, you can enable a two line indicator for up- and downstream (MiUi style).
Advanced low battery indicator options
You can disable the warning dialog for low battery warning and get a notification or only a sound instead.
More features
Status bar: Clock with custom date
Recent RAM bar: Displays a RAM bar on the recent apps view.
Lock screen: See through
Option to disable full screen keyboard in landscape mode
BLN/BLNWW
Custom battery circle colours and animation speed
OmniSwitch
Status bar: Change colour
and many more, discover them yourself! (Of course all the OmniROM features too!)
For more detailed information, see the changelog!
Credits
First of all thanks to the developers of OmniROM and all who are contributing to it or uploading code to Gerrit!
And of course thanks to all the other developers and ROM projects, from which we pick a lot of our features: CyanogenMod, BeerGang, SlimROMs, ParanoidAndroid, AOKP, CarbonDev, ChameleonOS.
Our GitHub
Download & Changelog
Primary download page
Download mirror
Latest upstream changes
XDA:DevDB Information
OmniKang - by finnq & Schubi (i9100), a ROM for the Samsung Galaxy S II
Contributors
kennkanniff, Der_Schubi, finnq
ROM OS Version: 4.4.x KitKat
ROM Firmware Required: Latsest baseband
Based On: OmniROM
Version Information
Status: Stable
Created 2013-08-19
Last Updated 2014-01-30
Changelog
Code:
CHANGES to CM10.2 Codebase
////// Custom Modifications \\\\\\
# HALO (from ParanoidAndroid)
# SystemUI: Clock - right/center/off
# NavigationBar: Custom height (20 to 48 dp)
# Battery Bar
# Fullscreen StatusBar with settable timeout
# NavigationBar and StatusBar background, transparency and colors
# Option to disable fullscreen Keyboard in landscape mode
# NFC polling can be enabled on lockscreen or even when screen is off
# Recents ram bar
# MMS Breath & Missed Call Breath
# Don't wake when (un)plugged from power (switchable in display settings)
# enable Notification Light when screen is on
# HALO: Add master switch to completely disable Halo
# HALO: Option to disable floating windows (from Beergang)
# HALO: Custom size
# HALO: Circle, Bubble, Text, Effect colors
# Change Halo Button to grey color to match the neighbouring buttons
# Add App: Halo)))
# Dark UI aka TRDS
# Alternative default app picker
# Fliptiles (flipping animations for QS tiles)
# StatusBar network speed indicator
# Option to hide network speed indicator when there is no traffic
# Show more info in bootup update dialog
# Lockscreen: Settings for camera and keyguard widgets
# Option to switch the clear recents button from right to left
# Don't reset wallpaper when SystemUI disconnects
# GPS-Patch: prevent GPS from eating up battery
# Fix: "more notifications available" icon was never shown in StatusBar
# Frameworks: speed up statubar/notification drawer (from IceColdJelly)
# Statusbar on fullscreen apps by swiping down on top of screen
# Statusbar: Clock with custom date
# advanced reboot enabled by default
# Option to move kill-recents-button from lower right to left
# custom carrier label
# Custom Battery Circle colors and animation speed
(Slim Circle MODs, from SlimBean)
# Add fast charge panel to QuickSettings
(from SlimBean)
# Advanced low battery indicator options
(from SlimBean)
# Configurable Notification Behavior
(from SlimBean)
# Make NFC polling mode switchable (from SlimBean)
# Add Wifi name to notification drawer (from SlimBean)
////// cherry picks that will never get merged in official CM10.1 \\\\\\
# 29636 - NavigationBar: Custom height (1/2)
# Reverted 33227 (Set the default A2DP bitrate to high quality)
# 31061 &
# 31062 - Option to display Quick Settings when there are no ongoing notificaions
////// cherry picks that are not merged to official CM10.1 until now \\\\\\
# 28848 - Add user switcher to lockscreen
# 34008 - Home dial feature added to Phone app (as seen on HTC)
# 34094 - Mms: Add the ability to select recipients from a checkbox list
# 34454 - DeskClock: Bedtime calculator
# 35682 - Mms: add blacklist functionality
# 36178 - Mms: Allow to delay sending SMS
# 32555 - Add UTC City to Clock so that it doesn't pick up Daylight Savings Time
# 42953 &
# 42954 - Pie controls: User defined colours for pie controls
# 37557 - Camera: fix empty camera widget on secure lockscreen
# 45336 - DeskClock: Added music alarm feature
//// new features \\\\
# Add App Ops shortcut to settings
# Mms: Motion Call
# Fix RamBar
# TRDS (Dark UI) for Contacts, Calculator and Keyboard
# Quick Settings: Option to use floating window
//// new features in the last week \\\\
# 47478 &
# 47479 - Status Bar Auto Unhide on Notification When in Fullscreen
# Option to always show settings button in notification drawer
# Modify size of notification drawer ribbons to fit the screen width
# Add Dotted Circle Battery
# Notification drawer custom background + notification rows transparency
# ScreenShot QuickTrash
# 46927 &
# 46928 - Development setting to enable navbar on devices without navbar
# Fastboot (#47772, #47773, #47774, #47775)
# Remove the 3 seconds timeout on SuperUser request
//// new features on 2. Sept 2013 \\\\
# Fix Network Speed Indicator Hide
# Customizable Slim lockscreen background
# ListView Animations
//// new features on 3. Sept 2013 \\\\
Reimplemented AppBar from Chameleon OS
//// new features on 6. Sept 2013 \\\\
# Camera: A bulk off features, picked from SlimRoms
- Add Smart Capture
- Add True View
- Add a GPS indicator
- Add color effects
- Add jpeg quality setting
- Add gallery shortcut into cameraswitcher
//// new features on 7. Sept 2013 \\\\
# Mako Kernel: Switch to HellsCore
more infomation and english feature list on AndroidHilfe.de:
http://www.android-hilfe.de/custom-kernel-fuer-google-nexus-4/410455-kernel-jb-jss15j-jwr66v-hells-core-b36-02-09-2013-a.html
//// new features on 10 - 12. Sept 2013 \\\\
# Port Dualpanel for Settings from Beergang
# Option to change number of QuickSettings columns
# Lockscreen: remove magnetic targets
# Fixup cutoff lockring
//// new features on 13 - 16. Sept 2013 \\\\
# Re-add link to DeviceParts
# QS tiles background color
# Add option to Restart SystemUI to DevSettings
# HALO Mods
# Attempt to fix disappearing Appbar (seems to work now!)
# Fix FC in LightsOut Mode on devices without NavBar
# Fix appwidgets not updating
# Launch floating notifications from notification panel (long click)
//// new features on 17. Sept 2013 \\\\
# 50535 - Make emulated storage available via su
# Less Notification Sounds
# Power'full' Sleep
//// new features on 19. Sept 2013 \\\\
# Mako: Disable C3 State (POWER_COLLAPSE) by default
# Mako: Enable C1 and C2 States (RETENTION and STANDALONE_POWER_COLLAPSE) by default
# Mako: Add init.d support
# Mako: Enable USB OTG support
# Add Cyankang boot animation (for devices with screen width of 768)
//// new features on 22. Sept 2013 \\\\
# Add active display (known from Moto X)
# Bring back Focal
//// new features on 23 - 26. Sept 2013 \\\\
# Switch back to CM kernel
# Add CKUpdater for OTA updates
# Improve clear recents side switcher (now top/bottom & left/right)
# Active display: prevent force close
# Active display: Ability to turn off the screen, when a not clearable notification is present
# Active display: Don't register proximity if pocket mode not used
# Active display: Option to change display timeout
# Active display: Add threshold to promimity sensor
Good work pal,cm with halo, gonna try this now, downloading now
Sent from my GT-I9100 using Tapatalk 4
Mr_S said:
Good work pal,cm with halo, gonna try this now, downloading now
Sent from my GT-I9100 using Tapatalk 4
Click to expand...
Click to collapse
Good work flashed and all good, however how can I make halo display its mini window instead of going into the full app?
Thanks and good work
Sent from my GT-I9100 using Tapatalk 4
---------- Post added at 08:28 AM ---------- Previous post was at 08:21 AM ----------
Mr_S said:
Good work flashed and all good, however how can I make halo display its mini window instead of going into the full app?
Thanks and good work
Sent from my GT-I9100 using Tapatalk 4
Click to expand...
Click to collapse
Edit floating notification not working and turning on dark ui works but lock screen.
Sent from my GT-I9100 using Tapatalk 4
@kennkanniff
CyanKang Android 4.3 is out !!!
http://s2.finnq.de/CyanKang/
deleted
deleted
Ah Ok !!!
Gesendet von meinem GT-I9100 mit Tapatalk 2
Kai Obey said:
@kennkanniff
CyanKang Android 4.3 is out !!!
http://s2.finnq.de/CyanKang/
Click to expand...
Click to collapse
anyone tried this build?
Sent from my GT-I9100 using xda premium
Yes, I am !!! Bugs, same as Cyanogen Mod 10.2 unofficial builds (Focal Camera....)
Its stabel, smooth and battery life is good.
http://cyankang.de/index.htm
Great ROM.
Very fast GPS lock.
------------------------------------------------------------------------------------
AndroidNews24.com/
kennkanniff said:
You are absolutly right! To be honest I never knew Schubi also builts for i9100.
I built this rom for my own t989 S2 and I liked it so much that I also built it for my moms phone (i9100). An thought to just post it.
Since Schubi builds for the i9100 himself I will drop support off this device. I did not found a cyankang 4.2.2 for the i9100 though so download stays up!
Click to expand...
Click to collapse
Hi guys!
Schubi didn't remember that I also build for the Galaxy S2 (i9100) . He though it was another version of the S2 . But anyways thank you very much, that you also support us by building!
Nice cherry picks :thumbup::thumbup:
CyanKang-10.2-20130816-NIGHTLY-i9100.zip
HALO
So HALO cant run any app in windowed mode and no apps cant be pinned to halo (so that they allways appear in halo)?
whats the use of halo if there is no windowed mode in ROM with Appbar?
@nasye:
Of course, there is floating mode for windows. And it's possible to pinn apps.
Why should it not?
New nightly is up!
New in this one:
Allow multiuser (change config_multiuserMaximumUsers to 8)
Toggle to hide QS Panel
LCD Wizard dpi changer (from SlimRoms)
Click to expand...
Click to collapse
Download
Der_Schubi said:
New nightly is up!
New in this one:
Download
Click to expand...
Click to collapse
Thanks for the support Der_Schubi. Like the cherry picks. Here is a pdroid patch for the rom:
https://dl.dropboxusercontent.com/u/96186051/update-cm-GT-I9100-20130817-openpdroid.zip
Cheers!
Der_Schubi said:
@nasye:
Of course, there is floating mode for windows. And it's possible to pinn apps.
Why should it not?
Click to expand...
Click to collapse
But where? there is no HALO app so i can pinn em like in PA :/
The Halo App shoult be included. It is in the mako ROM. So if tis really missing, please install it from Playstore or somewhere else.

[MOD][Xposed][4.0.3+] Screen Filter (v1.5.2)

[size=+5]Screen Filter[/size]​
This mod puts a transparent view on top of the window manager in order to darken the whole screen.
Once activated, the mod adds a toolbox below the header of your expanded status bar where you can easily switch ON or OFF the filter and set its transparency using the seek bar (only if the filter is active).
A settings activity is also available to control the filter and other settings (such as tuning or hiding the toolbox).
Screen Filter is mostly designed to lower you screen's luminosity and allow you to use your device in the dark without killing your eyes, but you can also use it as a screen privacy guard!
Also, on AMOLED screens, reducing the luminosity improves your battery's lifetime!
[size=+2]Features[/size]
Darken the whole screen, including: soft keys (nav bar), toasts, cpu info (*)
While activated, the filter does not trigger Android's security against overlays (like preventing you from installing new apps) (*)
Filter's transparency and color are customizable
Add a toolbox in the extended statusbar (you can disable it in the settings activity)
Tasker/Locale integration
Transparency range can be changed (but the minimum cannot go under 15 in order to avoid completely black screen)
Works for both phone and tablet layouts
[size=-1](*) contrary to most "user level" screen filters on the market[/size]​
[size=+2]Screenshots[/size]
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
[SIZE=-1]The number you can see in the toggle button while the filter is enabled is the current value of the alpha layer (max range: 15 to 255).[/SIZE]
[SIZE=-1]Screen Filter has a settings activity and is recognized as a plugin in Tasker.[/SIZE]​
[size=+2]Requirements[/size]
You need the Xposed framework installed (and working, of course).
Screen Filter works with ICS (4.0.3), JB, KK and Lollipop
Should work well on any AOSP based ROM
May work on some stock ROM, please report your result (good or bad) if you give a try!
[highlight]Don't forget to read the troubleshooting section in the next post![/highlight]
XDA:DevDB Information
Screen Filter, Xposed for all devices (see above for details)
Contributors
tony78960
Xposed Package Name: com.tonymanou.screenfilter
Version Information
Status: Stable
Current Stable Version: 1.5.2
Stable Release Date: 2015-02-22
Created 2014-10-02
Last Updated 2015-02-22
[size=+2]Automation[/size]
It is possible to control Screen Filter via intents, here is how the magic works:
There are three different intent actions:
com.tonymanou.screenfilter.action.DISABLE
com.tonymanou.screenfilter.action.ENABLE
com.tonymanou.screenfilter.action.TOGGLE
With each of these actions, you can choose which filter you want to control by setting one or both of the following extras:
FILTER_DIM
Valid values for 'selected' are: "1" (int), "true" (boolean) or no value (null string).
Valid values for 'unselected' are: "0" (int), "false" (boolean) or just don't use this extra.
FILTER_COLOR
Valid values for 'selected' are: "1" (int), "true" (boolean) or no value (null string).
Valid values for 'unselected' are: "0" (int), "false" (boolean) or just don't use this extra.
In the case of ENABLE and TOGGLE actions, you can change the value of the filters with the following extras:
TRANSPARENCY
Valid values are 8 bit unsigned integers within the transparency interval you set, between 5 and 255.
Works only if FILTER_DIM is selected and if the darkening filter is getting enabled.
COLOR
Valid values are 32 bit signed integers in base 10 representing the ARGB color (hexadecimal string not supported yet).
Works only if FILTER_COLOR is selected and if the color filter is getting enabled.
Note: if both FILTER_DIM and FILTER_COLOR are unselected or if they are not given, only the darkening filter is affected by the action and TRANSPARENCY is skipped.
For instance, using the command-line:
adb shell am broadcast -a com.tonymanou.screenfilter.action.TOGGLE
Toggles the darkening filter.
adb shell am broadcast -a com.tonymanou.screenfilter.action.ENABLE --ez FILTER_DIM true --ei TRANSPARENCY 125
Enables the darkening filter at the transparency 125.
adb shell am broadcast -a com.tonymanou.screenfilter.action.ENABLE --ei FILTER_COLOR 1 --ei COLOR 792333838
Enables the color filter at the color #2F3A0E0E (792333838 = 0x2F3A0E0E).
But...
adb shell am broadcast -a com.tonymanou.screenfilter.action.DISABLE --ei FILTER_COLOR 0
Will disable the darkening filter /!\
Screen Filter is also provides shortcuts and is recognized as a plugin in Locale/Tasker.
Here is how the "linked filters" option works:
Not linked:
darkening enabled, color enabled
--> darkening is disabled, color is disabled
darkening enabled, color disabled
--> darkening is disabled, color is enabled & color updated
darkening disabled, color enabled
--> darkening is enabled & transparency updated, color is disabled
darkening disabled, color disabled
--> darkening is enabled & transparency updated, color is enabled & color updated
Linked:
darkening enabled, color enabled
--> darkening is disabled, color is disabled
darkening enabled, color disabled
--> darkening is disabled
darkening disabled, color enabled
--> darkening is enabled & transparency updated, color is updated
darkening disabled, color disabled
--> darkening is enabled & transparency updated, color is enabled & color updated
[size=+2]Testing[/size]
[size=+1]AOSP based[/size]
Successfully tested on:
Android emulator 4.0.3
Genymotion 4.1.1 / 4.3 / 4.4.2
CM 11 (KK 4.4.4)
Reported working on:
CM 10.2 (JB 4.3.1) on GT-i8190 [post]
CM 9 (ICS 4.0.4) on LG Optimus L3 [post]
[size=+1]Stock[/size]
Reported working on:
Omni Rom on Galaxy R [post] and Galaxy S3 (GT-I9300) [post]
Samy Deluxe Pick Your King 4.4.2 on Galaxy S4 (GTI9505) [post]
Stock 4.3 MK2 baseband on Galaxy S4 (SCH-R970 USCC) [post]
Stock 4.4 rooted on Galaxy Note 2 [post]
Crash ROM (17.1) on Galaxy Note 3 (N9005) [post]
Stock TouchWiz 4.4.2 on Galaxy Note 3 (SM-N9005) [post] and on Note Pro 12.2 (SM-P905) [post]
CloudyG3 (KitKat) on LG G2 [post]
Stock rooted ROM on T-Mobile LG G3 [post]
Stock 4.4.2 (version 183.46.15) on RAZR HD [post]
Stock 4.4.2 on Moto G (XT1032) [post]
Carbon Rom 4.4.4 on Galaxy S4 mini [post]
KitKat Google Edition on Galaxy S4 [post]
Stock 4.4.4 on Nexus 5 [post]
Stock Sony 4.4.4 on Xperia Z (C6603) [post]
Stock 4.2.1 on Cubot One [post]
. . .
If you get problems after installation, check in the following section if the bug is already known. If not, then read the Troubleshooting section.
[size=+2]Known bugs[/size]
Screen-off animation (like electron beam / CRT effect) is not affected by the filter
As you can see in the first post, screenshots are affected by the filter
Quick settings disappear when the toolbox is visible on Stock Sense 6 (HTC One m7 and m8)
Stock ROM where SystemUI addon is not loaded:
Stock 4.4.2 on Elephone P10c
Stock 4.4.2 on i9500
Stock 4.4.2 on Micromax A106
Neat rom 4.1.2 on SGS2
[size=+2]Troubleshooting[/size]
In case you set the filter too dark and you can't see anything on your screen, just reboot your device.
After installation or update of the module, [highlight]you must reboot your device[/highlight] to get the latest changes fully loaded.
If it does not work even after reboot:
first, check if Xposed is working and if the module is activated in the Xposed Installer,
then, post in the thread indicating your ROM and attaching:
your last Xposed error log (the /data/data/de.robv.android.xposed.installer/log/error.log file)
and your SystemUI.apk (should be located in /system/app or /system/priv-app)
Thanks!
[size=+2]To-do list[/size]
Toolbox customization:
Hide the toolbox from notification panel or quick settings independently
Choose location (top/bottom)
Change the height
Double tap on the icon to open settings activity
Full toolbox customization:
Change items location
Ability to make the button transparent or replace it by a grey(off)/white(on) image
Ability to add shortcuts to some values
Filter improvements:
Let the user create different settings (color + transparency)
Filter pattern [post] [post]
Darkening filter using an image [post]
Filter blending using multiply instead of addition (?)
Allow unfiltered screenshots (?)
Other ways to toggle the filter:
Notification with ^ and v buttons
Overlay control [post]
Automation:
Auto enable at device startup
Auto enable depending on application context
Auto enable depending on the time and/or battery level
Other:
Make the project open-source
Llama integration (locale changer)
Make use of the luminosity sensor
[size=+2]Download[/size]
You can download Screen Filter from the Xposed repository.
[size=+2]Translations[/size]
Strings are available on GitHub, translators are welcome to contribute!
Don't forget to read the "Translations" section in the README.
[size=+2]Changelog[/size]
v1.5.2 - Feb 22, 2015
-- Lollipop support with SELinux set to permissive (no toolbox)
-- Fixed transparency value display in the toolbox
-- Better exception handling in module initialization
-- Updated Simplified Chinese and Slovak translations​
v1.5.1 - Feb 18, 2015 [highlight](removed)[/highlight]
-- Probable Lollipop support (not tested)
-- Replaced third-party color picker by custom implementation
-- Added ability to edit values in color picker
-- Merged temperature picker and color picker
-- Fixed crash when using shortcuts or Locale/Tasker plugin if the filter service is not found
-- Added debug option: dump view hierarchy of the notification area
-- Updated French, Russian, Simplified Chinese & Slovak translations​
v1.5 - Jan 26, 2015
-- Draft customizable toolbox
---- Ability to tint the toolbox
---- More to come...
-- Long-press on the color button to choose a color temperature (in Kelvin)
-- Added warning message about hardware button backlight
-- Changed notification icon
-- Another potential fix for the hole left in system UI in some cases when the toolbox is hidden
-- Fixed value editing in Locale/Tasker plugin (value was not restored)
-- Updated French, Japanese, Russian, Slovak & Spanish translations​
v1.4.2 - Jan 11, 2015
-- Color filter's opacity is now independent from its color
-- Implemented shortcuts to toggle filters
---- can be used "like a widget" on the desktop
---- thanks to GravityBox, can be used as a quick setting tile
-- Added translator's name in About
-- Fixed Screen Filter plugin not showing in Locale
-- Potential fix for the hole left in system UI in some cases when the toolbox is hidden
-- Updated French, Russian & Slovak translations
-- Fixed Spanish translation​
v1.4.1 - Dec 23, 2014
-- Updated Locale/Tasker plugin in order to support color filter control
-- Added simple intents to control filters
-- Fixed FC in activity
-- Fixed bugs occurring at screen rotation
-- Prevent full flat colored filter (capped max opacity, fully transparent at first launch)
-- Lowered the minimum transparent limit to 5, use it wisely!
-- Updated French, Simplified Chinese & Slovak translations​
v1.4 - Dec 02, 2014
-- Refreshed UI: filter settings are separated from global settings
-- Color filter is now independent from darkening filter
-- Added ability to hide toolbox when the filter is disabled
-- Added help dialog
-- Changed the behavior of "change default" buttons, !!! read the help dialog !!!
-- Many other internal changes, bug-fixes and improvements
-- Added Russian translation
-- Updated French, Japanese, Spanish translations​
v1.3.3 beta - Nov 18, 2014
-- Added ability to choose the color of the filter
---- Choose a dark color, otherwise it will brighten the screen!
-- Improved the readability of transparency range values in the range dialog
-- Updated Dutch, French, Simplified Chinese, Slovak & Spanish translations​
v1.3.2 - Oct 31, 2014
-- Added ability to disable hardware button backlight when the filter is active
-- Added debug button to dump display list in logcat
-- Fixed transparency setting that was sometimes reset when sliding the seekbar​
v1.3.1 - Oct 28, 2014
-- Added "toggle" action in Tasker/Locale plugin
-- Added more internal checks to avoid wrong transparency
-- Seekbar is now movable even if the filter is disabled
-- Long-press on the icon of the toolbox opens the settings activity
-- Long-press on the toggle button in the toolbox enables the filter and sets it to the default level
-- Long-press on the "Change" button in settings activity reset the transparency to default value (but does not enable the filter)
-- Updated Dutch, Slovak and Traditional Chinese translations​
v1.3 - Oct 25, 2014
-- Added Locale/Tasker support
-- Added ability to change min and max transparency
-- Refactored toolbox injection system
-- Added more error checks and fixed minor bugs
-- Debug log enabled by default
-- Updated French, Japanese, Slovak and Spanish translations
-- Added Simplified & Traditional Chinese translations​
v1.2 - Oct 12, 2014
-- Added ability to change default transparency
-- Added ability to enable debug log (disabled by default)
-- Updated Japanese translation
-- Added Chinese translation
-- Code cleaning and small bugfixes​
v1.1.6 beta - Oct 11, 2014
-- Heavy code restructuring to allow the filter to work even if the toolbox cannot be injected into SystemUI
-- Added Dutch, Japanese and Slovak translations​
v1.1.5 beta - Oct 09, 2014
-- Fixed wrong cast exception introduced in 1.1.4​
v1.1.4 beta - Oct 09, 2014 [highlight](removed)[/highlight]
-- Added Spanish and Turkish translations
-- Experimental support for Gemini status bar​
v1.1.3 beta - Oct 09, 2014
-- Fixed AOSP support that was broken in 1.1.2​
v1.1.2 beta - Oct 09, 2014 [highlight](removed)[/highlight]
-- Output more debug log
-- Potential fix for stock Sony ROMs
-- Added support for JB tablet layout (statusbar at the bottom of the screen)​
v1.1.1 beta - Oct 07, 2014
-- Reduced service setup constraint (SystemUI is reloaded many times on some ROM like Spirit ROM)​
v1.1 - Oct 05, 2014
-- Added settings activity to control the filter
-- Ability to show/hide toolbox
-- Ability to make toolbox's background transparent
-- Added French translation​
v1.0.1 - Oct 02, 2014
-- Better ICS support​
v1.0 - Oct 02, 2014 [highlight](not released)[/highlight]
-- Headless Xposed module that puts filter's settings under the expanded statusbar's header​
Would it be possible to make this open source?
Thanks but i don't get to do transparancy setting, help me please..
Been looking for this for a long time. Working flawless on CM11, keep it up:good:
PünchUp said:
Would it be possible to make this open source?
Click to expand...
Click to collapse
Yes, very probably!
But first I need to find a suitable license and clean up my source tree a bit...
Rom said:
Thanks but i don't get to do transparancy setting, help me please..
Click to expand...
Click to collapse
According to your signature you are using CM 10.1, right? It should work like a charm...
It may not interfere but did you enable PowerWidgets in the expanded statusbar?
Are you using some Xposed modules that act on the statusbar?
Do you have any error log in the Xposed installer's "Log" tab?
Dumb question: did you reboot you device after enabling Screen Filter in the Xposed installer?
tony78960 said:
According to your signature you are using CM 10.1, right? It should work like a charm...
It may not interfere but did you enable PowerWidgets in the expanded statusbar?
Are you using some Xposed modules that act on the statusbar?
Do you have any error log in the Xposed installer's "Log" tab?
Dumb question: did you reboot you device after enabling Screen Filter in the Xposed installer?
Click to expand...
Click to collapse
I am on CM 10.2, yes i have other modules that act on statubar like XBlast Tools, Gravitybox, check my log in attachment
Edit: And i have reboot my device I can look it:
Rom said:
I am on CM 10.2, yes i have other modules that act on statubar like XBlast Tools, Gravitybox, check my log in attachment
Edit: And i have reboot my device I can look it:
Click to expand...
Click to collapse
Nice!
Most of the errors in your logs are thrown by AlternateAppPicker, LiveIcons and GravityBox. Maybe you should warn the developers of these modules...
Looking at you screenshot I added the following point in my to-do list: "Ability to change the background of filter's settings"
tony78960 said:
Nice!
Most of the errors in your logs are thrown by AlternateAppPicker, LiveIcons and GravityBox. Maybe you should warn the developers of these modules...
Looking at you screenshot I added the following point in my to-do list: "Ability to change the background of filter's settings"
Click to expand...
Click to collapse
Thank you very much, i will tell authors of these addons
Can you explain me how to change transparancy settings ?
Thanks.
:laugh:Forgot to say previously, this is a great battery life saver Thanks once more tony, you made my day:laugh::good:
Feature request...
Could you put in an auto time thingy...
Example...
After 9pm (when the sun is down) the screen filter kicks in saving my night vision or keeping me from having 'stare at the phone insomnia'
Thanks
rignfool said:
Feature request...
Could you put in an auto time thingy...
Example...
After 9pm (when the sun is down) the screen filter kicks in saving my night vision or keeping me from having 'stare at the phone insomnia'
Thanks
Click to expand...
Click to collapse
Nice idea, added to the to-do list
A thing to remember is that Screen Filter adds a layout on top of the screen to make it darker, so it assumes that you are already at the lowest luminosity. I do not plan to make the module control backlight luminosity as well.
@tony78960 Can you explain me how to change transparancy setting please ? :angel:
Rom said:
@tony78960 Can you explain me how to change transparancy setting please ? :angel:
Click to expand...
Click to collapse
Sorry, I missed your last post...
Just touch the "OFF" toggle button in your expanded status bar to activate the filter.
Once it is enabled, the "OFF" text is replaced by current value of the transparency (from 0 to 255, but locked between 50 and 200 for now) and you can drag the seek bar next to the toggle button to change the transparency.
:good:
tony78960 said:
Sorry, I missed your last post...
Just touch the "OFF" toggle button in your expanded status bar to activate the filter.
Once it is enabled, the "OFF" text is replaced by current value of the transparency (from 0 to 255, but locked between 50 and 200 for now) and you can drag the seek bar next to the toggle button to change the transparency.
:good:
Click to expand...
Click to collapse
He don't mean that (I think). He's asking about the black background & how to make it transparent. I'm using xblast & gbox, but as I like it black it's not big deal for me
tony78960 said:
Sorry, I missed your last post...
Just touch the "OFF" toggle button in your expanded status bar to activate the filter.
Once it is enabled, the "OFF" text is replaced by current value of the transparency (from 0 to 255, but locked between 50 and 200 for now) and you can drag the seek bar next to the toggle button to change the transparency.
:good:
Click to expand...
Click to collapse
No problem :good:
I understand what you told me and it took me 50 but it does not change the transparancy, I upload my SystemUI.apk maybe?
And i have send logs at devs to check my errors :highfive:
Edit: @mauam: yes, you have understand, i want to change the toggles transparancy :good:
Rom said:
No problem :good:
I understand what you told me and it took me 50 but it does not change the transparancy, I upload my SystemUI.apk maybe?
And i have send logs at devs to check my errors :highfive:
Edit: @mauam: yes, you have understand, i want to change the toggles transparancy :good:
Click to expand...
Click to collapse
You can't for now (I think), unless the dev add an option to change the background color/opacity.
mauam said:
You can't for now (I think), unless the dev add an option to change the background color/opacity.
Click to expand...
Click to collapse
Okkkk that's what I thought, I can indeed change the brightness of the screen (and it must not have sight problems hihi) but not the transparancy in fact I understand now if meiux tony78960 has yet to add this feature ..
@tony78960 For next version can you put an interface in your app to change setting (instead of in notification drawer) or ad an option have the choice please ?

How to toggle the navigation bar when the soft keyboard is showing

You need an application that can detect when the soft keyboard is showing or hidden, for example https://play.google.com/store/apps/details?id=com.jozein.xedgepro
Set the action when then keyboard is shown as running this shell command:
Code:
settings put system buttons_show_on_screen_navkeys 0 && settings put system op_navigation_bar_type 3
This hides the navigation bar and activate the gesture navigation. Note that the
Code:
&&
is part of the shell command.
Set the action when then keyboard is hidden as running this shell command:
Code:
settings put system buttons_show_on_screen_navkeys 1 && settings put system op_navigation_bar_type 1
This shows the navigation bar and disable the gesture navigation.
Both requires root access or maybe the changing system settings permission granted to the application making the change.
Other command:
Code:
settings put system buttons_show_on_screen_navkeys 1 && settings put system op_navigation_bar_type 2
Enable the navigation bar with the hide button.
thanks, finally a way to disable the navbar
the only problem is that the navbar space is not being used, I have now a black border underneath the keyboard... do you know how to move the keyboard down to the very bottom of the screen?
Sorry I don't know how to remove the black border you mentioned. I don't have any black border though using oxygenos oreo and gboard.
so it doesn't look like that for you (see attached screenshot)?
No, in my case when the keyboard is shown, the navigation bar disappears, and the keyboard move down. Actually it might not be a bad thing because in my case I found it rather annoying that the keyboard move down a little just when I am going to press a letter.
Tasker profile to show the navbar on any orientation other than portait orientation and revert to gesture navigation on portrait orientation - because using the gesture navigation in other than the portrait orientation is difficult.
Code:
<TaskerData sr="" dvi="1" tv="5.5">
<Profile sr="prof19" ve="2">
<cdate>1539321784266</cdate>
<edate>1539322145574</edate>
<id>19</id>
<mid0>5</mid0>
<mid1>8</mid1>
<nme>Auto NavBar</nme>
<State sr="con0" ve="2">
<code>122</code>
<Int sr="arg0" val="0"/>
</State>
</Profile>
<Task sr="task5">
<cdate>1539312802034</cdate>
<edate>1539322025410</edate>
<id>5</id>
<nme>Portrait</nme>
<Action sr="act0" ve="7">
<code>348</code>
<Int sr="arg0" val="1"/>
<Str sr="arg1" ve="3"/>
<Str sr="arg2" ve="3">%orientation</Str>
</Action>
<Action sr="act1" ve="7">
<code>548</code>
<Str sr="arg0" ve="3">%orientation</Str>
<Int sr="arg1" val="0"/>
</Action>
<Action sr="act2" ve="7">
<code>123</code>
<Str sr="arg0" ve="3">settings put system buttons_show_on_screen_navkeys 0 && settings put system op_navigation_bar_type 3</Str>
<Int sr="arg1" val="0"/>
<Int sr="arg2" val="1"/>
<Str sr="arg3" ve="3"/>
<Str sr="arg4" ve="3"/>
<Str sr="arg5" ve="3"/>
<ConditionList sr="if">
<Condition sr="c0" ve="3">
<lhs>%orientation</lhs>
<op>0</op>
<rhs>portrait</rhs>
</Condition>
</ConditionList>
</Action>
<Action sr="act3" ve="7">
<code>123</code>
<Str sr="arg0" ve="3">settings put system buttons_show_on_screen_navkeys 1 && settings put system op_navigation_bar_type 1</Str>
<Int sr="arg1" val="0"/>
<Int sr="arg2" val="1"/>
<Str sr="arg3" ve="3"/>
<Str sr="arg4" ve="3"/>
<Str sr="arg5" ve="3"/>
<ConditionList sr="if">
<Condition sr="c0" ve="3">
<lhs>%orientation</lhs>
<op>0</op>
<rhs>portrait-reverse</rhs>
</Condition>
</ConditionList>
</Action>
</Task>
<Task sr="task8">
<cdate>1539313091775</cdate>
<edate>1539322045807</edate>
<id>8</id>
<nme>Landscape</nme>
<pri>1006</pri>
<Action sr="act0" ve="7">
<code>123</code>
<Str sr="arg0" ve="3">settings put system buttons_show_on_screen_navkeys 1 && settings put system op_navigation_bar_type 1</Str>
<Int sr="arg1" val="0"/>
<Int sr="arg2" val="1"/>
<Str sr="arg3" ve="3"/>
<Str sr="arg4" ve="3"/>
<Str sr="arg5" ve="3"/>
</Action>
</Task>
</TaskerData>

How to display or hide some components of a list-item in the list?

You can display or hide a component using if or show. To display multiple list-items at the same time, you can assign an array value to each list-item. Each array contains a flag to indicate whether a list-item has been clicked.
Code:
<list-item onclick="listItemClick(num=$idx)" type="listItem"
class="item item-color" onlongpress="listItemLongPress"
for="{{listData}}">
<div style="flex-direction:column;height: {{x}}px;">
<text>{{$item}}--{{$idx}}</text>
<input type="button" value="{{$idx}}" show="{{num===$idx}}" />
</div>
</list-item>

Categories

Resources