[APP][Xposed][L-M] Media notification seek bar [Mar/30/2016] - Xposed Framework Modules

{
"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"
}
Last update:
[Mar/30/2016] Link
Description:
With this module you can modify the notification of the music / video players.
You can add a seek bar and control the position of the current playing media without opening the application.
Also can change the colors of the notification.
Tutorials:
Tutorials
Compatibility:
- Roms
Android 5.x and 6.0 (sdk 21, 22 and 23).
Stock rom and CyanogenMod.
*Could work with other roms.
Apk ---> Xposed Module Repository: http://repo.xposed.info/module/com.ssrdroide.medianotificationseekbar
My other work:
Lock screen clock mods
Xda thread.
Xposed repository.
Lock screen widgets
Xda thread.
Xposed repository.
Qs X tiles per row
Google+ community.
Xposed repository.
NavBar color when the keyboard is open
Google+ community.
Xposed repository.
Google play music notification seek bar
Google+ community.
Xposed repository.
YouTube notification seek bar
Google+ community.
Xposed repository.

Tutorials:
1) Debug data provider
2) Debug layout name
3) Expert configuration
4) Configuration of some apps

Changelog:
V0.96
- Initial release

Reserved

Tutorials → 1) Debug data provider
*First of all you should check if the app that you want to configure is listed here: Tutorial 4: Configuration of some apps and you get the configuration.
With this tutorial you can check if the module is compatible with the selected media player app (we will configure Phonograph).
1) Go to the configuration section and enable the option “Debug notification”.
Also enable “Data provider”, save the new changes (press the fab button) and reboot your phone.
2) Go to Xposed installer – logs. You should see some lines that start with: “GpmNotificationSeekBar DebugDataProvider”.
You should find the line: “Package loaded: package_name” (if you can't see the line you have made the previous step wrong).
The line: “Mode A loaded!” is required (if you can't see it the module will not work).
The Mode B is an alternative way to get the current position of the media playing content.
The line “Broadcast received!” should appear when you finish the next step.
3) Open the media player app all and play some media content.
Go to the configuration section of the selected media app on the module and press the button “Debug data provider” 2 times faster:
You should see the following things:
- The playing media content should seek to the position 1:00 (one minute)
- The second time that you press the button you should receive the message “Current position and duration 1:00/duration”. The current position should be approximately one minute.
If you obtain the correct position, don't do the next step.
4) As you can see, with Phonograph the current position is incorrect. It says 0:09 and should be approximately one minute.
To fix this go to the advanced configuration and enable the option Get media info MODE_B.
Save the new changes, restart your phone and do again the step 3.
Now you should get the correct values.
Enable the MODE_B only if you get incorrect values when you press the button Debug data provider the second time.

Tutorials → 2) Debug layout name
*First of all you should check if the app that you want to configure is listed here: Tutorial 4: Configuration of some apps and you get the configuration.
With this tutorial we get the layout name of the compressed and expanded notifications (we will configure Phonograph).
The name is necessary to add the seek bar to the notification.
1) Go to the configuration section and enable the option “Debug notification”.
Also check “Layout name” and save the new configuration.
2) Close the media player app and dismiss the notification (if you have the media player app running).
Reopen the app and play some media content (the notification should be recreated).
3) Go to Xposed installer – logs. You should see some lines that start with: “GpmNotificationSeekBar DebugLayoutName”. We need the end of the LayoutName (the LayoutClass is not necessary).
Configuring Phonograph we obtain:
- /notification is the compressed layout name
- /notification_big is the expanded layout name
Generally, the expanded layout contains “big” and the compressed layout “small” or nothing.
The line “SeekBar added!” should appear when you finish the next step, and it means that the seekbar has been added to the notification.
4) Go to the configuration section of the selected media app and add the layout names.
Save the new changes, restart the media player app and the new changes should be applied.

Tutorials → 3) Expert configuration
Some apps use third party libraries to control playback of the audio/video files. If you know the class/method name you can make it compatible with this module.
Now we will configure Vlc (uses its own library called libvlc).
If you follow the steps of the tutorial “Debug data provider” the media content does not seek to the new position.
To make the app compatible open the module and go to the expert configuration.
Check the option custom data provider and set the next configuration:
- Fully qualified class name: org.videolan.libvlc.MediaPlayer
- Method name (seekTo): setTime
- Method name (getCurrentPosition): getTime
Apply changes, restart Vlc, play a media content and now should work.

Tutorials → 4) Configuration of some apps
Style of the configurations:
Code:
- Name_of_the_app: package_name
/name_of_the_compressed_layout
/name_of_the_expanded_layout
[optional - Expert conf] fully_qualified_class_name
[optional - Expert conf] method_name_seek_to
[optional - Expert conf] method_name_get_current_position
*The names could change (with different android versions or future updates of the apps).
Code:
- Phonograph: com.kabouzeid.gramophone
/notification
/notification_big
Advanced conf – get media info MODE_B: checked
- Poweramp: com.maxmpz.audioplayer
/status_controls
/status_controls_big
- PlayerPro: com.tbig.playerprotrial
/statusbar_controls
/statusbar_controls_big_alt
Use the alternative layout: unchecked
- BlackPlayer: com.kodarkooperativet.blackplayerfree
/notification_small_stock
/notification_big_stock
- MeloCloud: com.ranhzaistudios.melocloud.free
/simple_sound_cloud_notification
/simple_sound_cloud_notification_expanded
- Musixmatch: com.musixmatch.android.lyrify
/notification_player
/notification_big_player
- Shuttle: another.music.player
/notification_template_base
/notification_template_big_base
- Google play music: com.google.android.music
/notification_template_material_media
/notification_template_material_big_media
- YouTube: com.google.android.youtube
/playback_notification_small
/playback_notification_big
- YouTube Music: com.google.android.apps.youtube.music
/playback_notification_small
/playback_notification_big
- Music (CyanogenMod): com.cyanogenmod.eleven
/notification_template_material_media
/notification_template_material_big_media_narrow
- VLC: org.videolan.vlc
/notification_template_material_media
/notification_template_material_big_media_narrow
Expert conf - ClassName: org.videolan.libvlc.MediaPlayer
Expert conf - SeekTo: setTime
Expert conf - GetCurrentPosition: getTime
- Spotify: com.spotify.music
/notification_small_player
/notification_big_player
Expert conf - ClassName: com.spotify.mobile.android.orbit.OrbitPlayer
Expert conf - SeekTo: seekToPosition

Thank you for this module.
Unfortunately, it does not work correctly with GoneMAD Music Player. Neither seekbar nor seekbar button are shown in the notification.
- GoneMAD Music Player: gonemad.gmmp
/notification_controls_simple_layout​/notification_controls_simple_big_layout​
I followed all your steps, your app does obtain the correct time position of 01:00 minute (sending the broadcast and all other things are working as they intend to do, even “SeekBar added!” is shown in the Xposed logs), but it is not working.
My device configuration:
OnePlus X
Android Open Kang Project (CM13-based)
Xposed v80 SDK23 arm
SuperSU
Are any further information required to help me?
-------------------------------------------------------------------------------------------
EDIT: It is working... partially.
So I changed the notification style of GoneMAD Music Player from "Always Expanded" to "Default", and now the seekbar button is showing up. But no matter what I try, it is not possible to get the seekbar button working on expanded notification view.
What I also noticed: the seekbar isn't updating in real time. It just stays at the current time position when it has been opened. When closing the seekbar and re-opening it again, it gets updated but will remain at the new time as well.

This is awesome.

Thanks for this great app...
But why not add by default the most used apps like (Google Play Music, YouTube... etc.)... I'm still trying to get it working with GPM with no luck.

orville87 said:
Thank you for this module.
Unfortunately, it does not work correctly with GoneMAD Music Player. Neither seekbar nor seekbar button are shown in the notification.
- GoneMAD Music Player: gonemad.gmmp
/notification_controls_simple_layout​/notification_controls_simple_big_layout​
I followed all your steps, your app does obtain the correct time position of 01:00 minute (sending the broadcast and all other things are working as they intend to do, even “SeekBar added!” is shown in the Xposed logs), but it is not working.
My device configuration:
OnePlus X
Android Open Kang Project (CM13-based)
Xposed v80 SDK23 arm
SuperSU
Are any further information required to help me?
Click to expand...
Click to collapse
Excelent report!
You have told me the steps and the details at each step.
That style of notification requires the option "Use the alternative layout" unchecked (like other players as PlayerPro).
You can change also the position and colors (to improve the visibility).
I have tested it with cm13 and works.
If now works, update your comment, could be useful for other users.
Cheers and thanks for the excellent report.

Module works great, made it fit perfectly in the expanded poweramp notification with custom layout.
And damn this app is beautiful!! One of the best material apps I know.

osama-selo said:
Thanks for this great app...
But why not add by default the most used apps like (Google Play Music, YouTube... etc.)... I'm still trying to get it working with GPM with no luck.
Click to expand...
Click to collapse
Tutorials, configuration of some apps. link
Read the gpm configuration.
You just should set the layout name (copy and paste)
/notification_template_material_media -> compressed
/notification_template_material_big_media -> expanded

SergioSanchezR said:
Tutorials, configuration of some apps. link
Read the gpm configuration.
You just should set the layout name (copy and paste)
/notification_template_material_media -> compressed
/notification_template_material_big_media -> expanded
Click to expand...
Click to collapse
Already done this and it's not working.
My idea is that you can pre-add your configuration to your app the make it more simple... and over time you can add settings for more apps.
Anyway I'll try with other apps and report back.

Could you make also a video of the tutorial???
Sent from my Nexus 6 using Tapatalk

SergioSanchezR said:
Excelent report!
You have told me the steps and the details at each step.
That style of notification requires the option "Use the alternative layout" unchecked (like other players as PlayerPro).
You can change also the position and colors (to improve the visibility).
I have tested it with cm13 and works.
If now works, update your comment, could be useful for other users.
Cheers and thanks for the excellent report.
Click to expand...
Click to collapse
Updated my post, still not working completely.

SergioSanchezR said:
Tutorials, configuration of some apps. link
Read the gpm configuration.
You just should set the layout name (copy and paste)
/notification_template_material_media -> compressed
/notification_template_material_big_media -> expanded
Click to expand...
Click to collapse
I have managed to get it working on Google Play Music... I had a mistake last time
Now in expanded notification everything is OK except that we need an option to put the icon on the left side (for RTL languages)
In compressed notification the first time it works OK, but if I expand then unexpand the notification it will be all black.
EDIT: it happens exactly in this condition:
1- Press the seek bar button.
2- Try to seek the song and let the bar hide automatically and then I got it all black.
If I don't try to seek I would not have this problem

I can't see seek bar, is there something wrong???

piraboy said:
I can't see seek bar, is there something wrong???
Click to expand...
Click to collapse
According to post #8 it should be /notification_big_player instead of /notification_big_stock for expanded view in MusixMatch.

Related

[TOOL]{PC} WIFI & USB Android Manager |v.5.4| 30.06.2013

Hello,
First of all take a part in voting here
First of all take a part in voting here​First of all take a part in voting here​
I would need some good demo/tutorial video on how to use this tool. I don't have good microphone and experience to do this.
If there's anyone who can make a good video please PM. I'll include it in this thread.
In case You wouldn't understand all the functionality of this program just ask.
Here is a tool that I'm working on for some longer time.
On the beginning it was pretty lame, but now I use it even myself.
This program should work with every android phone (except: Mac Address Changer).
Just check out many features of this program.
Please keep in mind it has drag&drop functions in file explorer.
PS. You have to enter Your IP address in WIFI tab to enable all WIFI related stuff (also from the menu).
{
"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"
}
Do You like this layout of File Explorer or You would change that?
Here's some Youtube video for this program. It's v3.4, so pretty old. Also it's very lame.
But You can always make some other video presenting all program features or some kind of a tutorial how to use it.
I would place it over here instead of this old boring video.
It is only ~11717 lines of code, isn't that much isn't it?
You think it's newsworthy?
Nobody will never Donate, so I decided to make this program completely free, without any serial codes or anything. Maybe somebody will donate someday.
This is a very advanced program.
If You only want to have a quick file explorer please take a look at this thread: http://forum.xda-developers.com/showthread.php?t=2269808
RUN THE PROGRAM AS ADMINISTRATOR
Download v.5.4:Here
Download v.4.7:mirror
Download v.4.6: Now
Download v.3.7:From Here or here or HERE If not working try this (or this)
Download v.3.6: HERE
Download v.3.5: Here
Download v.3.4: HERE
Download v.3.2: Here
Download v.3.0: HERE (mirror)
Download v.2.9: http://freakshare.com/files/s415scp3/Backup-v.2.9.rar.html
Download v.2.8 : here (mirror)
Download v.2.4 :http://www.4shared.com/rar/AqjwTJeQ/Backup_24_1_.html
Download v.2.2 : 4shared
Download v.2.0 :Here or from Here
Download v.1.7 :from here if download doesn't work try this
Download v.1.6:http://www.filesonic.com/file/x9clkae/backup6.rar
Requires:
-rooted phone
-drivers for Your PC {only via USB}
-adb drivers
-Admin rights
-Busybox (with working ls -1 command)
-NET Framework 4.0
-For all WIFI stuff keep Your phone active, best if screen stays on or the transfer will stop
Click to expand...
Click to collapse
What You can do with this program:
-Pull out WIFI passwords
-Backup & Restore data [WIFI & USB]
-Install new apps [WIFI & USB]
-Check for running processes [WIFI & USB]
-Backup user apk's [WIFI & USB]
-Backup system apk's [WIFI & USB]
-Change the lcd-density [WIFI & USB]
-Remove forgotten password & pattern lock [WIFI & USB]
-Check for installed apps & remove them [WIFI & USB]
-Write text on Your PC and send i to Your X10
-Navigate Your phone
-Launch apps
-Browse through android & PC files and copy,cut, delete them between Android & PC without having Your storage mounted[WIFI & USB]
- And much much more.....
Click to expand...
Click to collapse
Known bugs:
-If music won't play by the first time. Give it another try. (No special chars support)
-If the phones files won't load kill the process.(green text)
Click to expand...
Click to collapse
Changelog:
Version 1.7:
-process list
-installed apps list doesn't require backup anymore
-list of system apps
Verison 2.0:
-writing text
-launching apps
-removing gesture&password lock
Version 2.2:
-new way of typing text
Version 2.4:
-Added file manager
Version 2.8
-Added more options to file explorer
Version 2.9:
-Minor Improvements in file explorer. Much Faster
Version 3.2:
-Fixed Image preview
-Fixed space locations
-Adding folders with space in the name
-Preview the pictures in Microsoft Office, Paint, Photohop
Version 3.4:
-Open text and word documents
Version 3.5:
-Added multiple file renaming
Version 3.6:
-Added Wifi File Explorer
Version 3.7:
-Changed the way of USB keyboard = faster text typing
-Added *.bz2 option to Wifi File Explorer
Version 3.9:
-Drag & Drop from phone to PC
Version 4.0:
-Install *.apk changed.
-One column system apps listing
-Check if the phone is connected via WIFI
Version 4.1:
- Fixed Multirenaming
- Fixed opening files
- Set wallpaper via File Manager
- Changed visual style
Version 4.2:
- Graphic changes in File Explorer
- Install *.apk's from PC via File Explorer
- Send fast e-mail to me
Version 4.3:
- Fixed error while copying from PC
Android Manager v.4.4:
- Added Mac Address Changer
- Advanced process Managing
- Added text while copying item by drag & drop
- Turn ON & OFF Wifi
Android Manager v.4.5:
- Fixed choosing files to copy
- You can prevent preview of the pictures
Android Manager v.4.6:
- Added drag&drop to delete files from phone and make a copy
Android Manager v.4.7:
- Changed trial problem
Android Manager v.4.9:
- Added one file renaming
- Fixed copymode while right mouse click
Android Manager v.5.0:
- Added tabs for phone location
- Added tightvnc Control
Android Manager v.5.1 & 5.2:
- You can copy the files to phone by drag&dropping them to phones storage in file explorer.
- Completely new UI
- Added LED disabling
- Installing apps via drag&drop
- Clicking with right mouse button will automatically select an item.
- You can quickly send e-mails with attachment coming straight from Your phone
- You can now search for files
- Change wallpaper on Your phone to the one You have on Your PC or any other picture (right mouse click in file explorer in PC section)
- Added WIFI Keyboard
- You can copy all of Your apps (even from SD Card and restore them < may cause force stop)
- Check Your SD Card space any time
- All functions from USB File Explorer were imported to WIFI File Explorer
- Fixed e-mailing me
- Removed all trial and serial stuff.
- Added Music Player
- Fixed problem with "R" in File Explorers
Android Manager v.5.3:
- Small changes in keyboard tab
- Different function of pressing enter in the text section. You may use it as enter or new line in text (automatic recognition)
- After sending text to Your phone correct form opens back
Android Manager v.5.4
- removed tabs for WIFI (one tab works for WIFI and USB)
- fixed copying list
- fixed sending cleared text
- fixed USB storage status for devices with internal storage (works on mine, need some confirmation from You)
Click to expand...
Click to collapse
Any Bug report or idea would be kindly seen
Use it carefully, playing with Your phone might be dangerous.
Also have a look at the bootanimation change tool: http://forum.xda-developers.com/showthread.php?p=20768824#post20768824
Hi, just a quick suggestion: use .NET framework v2.0 b/c that comes preloaded with nearly all machines [and if not, comes in windows updates].
Otherwise great work! What is this programmed in? and with what? [IMO it looks like Microsoft Visual Studio? ]
hello,
your usage is the false one, you take the how to from your bootanimation tool.
greetings
kicker13 said:
hello,
your usage is the false one, you take the how to from your bootanimation tool.
greetings
Click to expand...
Click to collapse
Oh, yeah. Thx, I haven't noticed it
pheel said:
Hi, just a quick suggestion: use .NET framework v2.0 b/c that comes preloaded with nearly all machines [and if not, comes in windows updates].
Otherwise great work! What is this programmed in? and with what? [IMO it looks like Microsoft Visual Studio? ]
Click to expand...
Click to collapse
Yes, It's Visual Basic, but it's already to late to change the framework. The framework v.4.0 is the default Framework for VB 2010
nice work... but to many batch files for my taste
and on win7 doesn't work.. any pressed button app exits...
you could add single instance code in main app multiple instances will just jam communication.
aZuZu said:
nice work... but to many batch files for my taste
and on win7 doesn't work.. any pressed button app exits...
you could add single instance code in main app multiple instances will just jam communication.
Click to expand...
Click to collapse
it works on .bat files. It works on windows 7 (I have one), it doesn't exit, just hides and opens a cmd window. Take a look on Your taskbar

			
				
aZuZu said:
Click to expand...
Click to collapse
Yeah, the file isn't found because the "Location of the backup folder" (in this case backup3) is empty. Enter Your path to d:\backup3 and save it
updated to v.1.6
another Polish dev? Hell yeah! tnx for the tool.
seriously, have to fill in survey to download? not worth it. all i need is more crap spamming my email
Hi,
just a small question.
what´s the difference (if any) between this & bootanimation tool and THIS one besides wifi s.th
thks
mpgrimes said:
seriously, have to fill in survey to download? not worth it. all i need is more crap spamming my email
Click to expand...
Click to collapse
Oh sorry. I wanted to test new hosting page but I didn't think that it would be with survey
Crowds said:
Hi,
just a small question.
what´s the difference (if any) between this & bootanimation tool and THIS one besides wifi s.th
thks
Click to expand...
Click to collapse
Yeah,I haven't seen this before.
Could You please test this verison and let know if deleting apps works because i keep getting some errors
Version 1.7 is out
Added:
-process list
-installed apps list doesn't require backup anymore
-list of system apps
v.2.0:
-writing text
-launching apps
-removing gesture&password lock
-for more you have to take a look
In v.2.2 there is a new way of typing text
In v.2.4 I added File Manager. I will make more functions for it in the future.

[ROM] [AOSP] [GCC4.8] ThunderKat | Nexus 7 | Grouper | 4.4.2 | KOT49H | 2014/01/11

I AM NO LONGER BUILDING THIS ROM FOR GROUPER.
THREAD CLOSED.
{
"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"
}
____________________________________________________________________________________________________
It is an AOSP (Android Open Source Project) 4.4.x ROM with a simple aim... add a few useful features to AOSP without deviating too much.
Each new release will have a few new features or updates & bug fixes to existing features. Keeping each release small will allow for testing the ROM thoroughly and increase the frequency of releases.​
Requirements:
1. Unlocked bootloader
2. Custom recovery like TWRP 2.6.3.1+ or CWM 6.0.4.3+
Instructions:
1. Wipe data/factory reset if you are moving from another ROM
2. Wipe cache/dalvik cache for every update
3. Flash the ROM using a custom recovery
4. [Optional] Flash Google Apps Pack using a custom recovery. You can choose to install any other Android 4.4 compliant Google Apps Pack
Download:
ThunderKat_grouper-KOT49H-20140111 (Dev-Host)
ThunderKat_grouper-KOT49H-20140111 (MediaFire)
Google Apps Pack:
1. Built from de-odexed 4.4.2 KOT49H Nexus factory image
2. Latest Play Store apps as of 2013/12/15
3. Includes Google Home (from the Nexus 5) & emoji-enabled Google Keyboard
Download:
GoogleAppsPack-4.4.2-20131217 (AndroidFileHost)
GoogleAppsPack-4.4.2-20131217 (MediaFire)
Know Issues:
1. NTFS OTG auto-mount via vold is broken
Source:
GitHub
Manifest
Tips & Tricks:
Launcher replacements enhance your customisation capabilities. I recommend one of these amazing launcher replacement:
1. Action Launcher Pro by Chris Lacy
2. Apex Launcher by Android Does
3. Nova Launcher by TeslaCoil Software
Adware is often intrusive. If you wish to block adware and advertisements, I recommend AdAway by Dominik Schürmann. You can get newer unofficial user-compiled builds here.
Need to know what app or service is eating your battery? Try BetterBatteryStats by Sven Knispel
Having Issues?
If you are having issues, I will try my best to help you. But you need to provide me with some information so that I can narrow down the possible cause of the issue. What would be useful is logcats, dmesg logs & last_kmsg logs. Here's a nice wiki about how to get logs
Support this project:
If you like Craig’s work or the features of this ROM, buy him a beer !!!
ROM main development is done by craigacgomez. Please take a second and click the thanks button for him over HERE.
Credits:
Google, Asus, ARM, Goo.im, CyanogenMod, TeamWin, Koush, SlimRoms, DevHost, craigacgomez
Changelog (notable features):
2014/01/11:
1. Re-synced repositories (2014/01/10 - 04:30PM PST)
2. Fixed ART runtime on GCC-4.8 builds (credit SlimRoms, craigacgomez)
3. Fixed Google Play backup-restore on Android 4.4+
4. Updated Quick Settings location tile drawables to reflect the current location mode (credit SlimRoms for drawables, craigacgomez)
5. Enabled DessertCake dream
6. Fixed wallpaper reset when restarting SystemUI
7. Improved AppOps layout (credit CyanogenMod, craigacgomez)
8. Removed option to move navigation bar buttons for phones
9. Added back option to switch to ART runtime in Settings > Developer options
10. Added detailed warning message when switching to ART runtime
11. Allow user to trigger volume media rescan (only for internal emulated volumes, primary volumes & non-removable volumes) from Settings > Storage (credit SlimRoms, craigacgomez)
12. Updated to libflac from AOSP master to fix pop & crackle when playing FLAC audio files
2013/12/27:
1. Bugfix: Properly update the state of the Expanded Desktop, Sync & Ringer Mode Quick Settings tiles when changes are triggered elsewhere
2013/12/26:
1. Re-synced repositories (2013/12/26 - 06:40PM PST)
2. Added Expanded Desktop Quick Settings tile. Press to toggle. Long-press for Display Settings
3. Added Sync Quick Settings tile. Press to toggle. Long-press for Sync Settings
4. Added Ringer Mode Quick Settings tile. Press to toggle between Normal, Vibrate & Silent ringer modes. Long-press for Sound Settings
5. Added back button long-press foreground app kill (configure via Settings > Developer options)
6. Added ability to set a user-defined hostname (configure via Settings > Developer options)
7. Added screen-off volume rocker wake (configure via Settings > Display)
8. Added screen-off volume rocker long-press music controls (configure via Settings > Sound)
9. Added safe headset volume toggle (configure via Settings > Sound)
10. Added lock screen quick unlock for pin and password security options (configure via Settings > Security)
11. Updated Settings application Android drawables to match the new KitKat style guidelines (credit SlimRoms)
12. Miscellaneous bug-fixes and enhancements
2013/12/17: Initial Release
Based to AOSP Android 4.4.2_r1 (KOT49H)
Navigation bar positioning (default/center, left or right) via Settings -> Display
Enabled root access by default
Includes Launcher3
Option to enable battery percent meter in Settings > Display
Enabled hidden App Ops (configure via Settings > Apps)
Advanced power menu (when screen is unlocked)
LockClock (cLock), CMFileManager & Calculator from CyanogenMod
Recent Apps clear all functionality with long-press action to drop VM caches
Inverted press/long-press actions of Wifi, Bluetooth & Location tiles
Translucent status bar & navigation bar
Enabled hidden physical keyboard Quick Launch configurations (configure via Settings > Apps)
Various fixes for the Exchange security policy bypass
Support for exec command with support for properties expansion in init scripts
Quiet Hours (configure via Settings > Sounds)
Categorized Settings > Display screen
Potential external storage access permissions fix
Disabled ability to change to ART runtime via Developer Settings temporarily
System-wide expanded desktop using the new immersive mode feature (credit SlimRoms & CyanogenMod)
Changed Settings > Apps to go to Application Settings instead of directly going to Manage Applications
Disabled lock/unlock sounds during music playback
Updated Superuser & CyanogenMod applications
Busybox, fuse, ntfs-3g, e2fsprogs & vold from CyanogenMod
USB OTG read/write support with dismissible notifications for non-primary volumes
Fixes for GCC 4.8+ toolchains
Enabled secure boot and secure adb
Enabled Google Location Services
Bluetooth AVRCP to use ARTIST metadata, and use ALBUMARTIST metadata only if ARTIST is not present
Remove file format transfer restriction in Bluetooth application, and use the Download directory to save received files
Enabled SELinux status information under Settings -> About
Disabled headset safe volume restriction
Disclaimer:
I make no guarantees that your experience with this ROM will be flawless. If you decide to flash this ROM, remember that you are doing so at your own discretion. I cannot and will not be held responsible if your jelly beans become rotten and your tablet decides implode. I will try to help you to the best of my ability, but beyond that, you stand alone behind enemy lines!! Have fun!!

			
				
Nice! Thanks for this ROM. It is one of my favourite Manta roms.
nvm
sorry, cant delete damn post!
I think ART is broken because the rom is deodexed, unless I'm mistaken
Sent from my Nexus 4 using XDA Premium HD app
XsceneXhippieX said:
I think ART is broken because the rom is deodexed, unless I'm mistaken
Sent from my Nexus 4 using XDA Premium HD app
Click to expand...
Click to collapse
I think you are. There are deodexed roms that it does work on.
Sent from my Nexus 7 using Tapatalk
XsceneXhippieX said:
I think ART is broken because the rom is deodexed, unless I'm mistaken
Sent from my Nexus 4 using XDA Premium HD app
Click to expand...
Click to collapse
ART is not working with 4.8 tool chain. I don't know if / when this will be fixed. That is #3 in the Known Issues section of the OP.
ROM is updated with some new features. Go check it out. Change log is in post #2. Happy Holidays!
I can't seem to find the advanced ROM settings. They're not showing up in the settings app.
arrtoodeetoo said:
I can't seem to find the advanced ROM settings. They're not showing up in the settings app.
Click to expand...
Click to collapse
What setting are you looking for? There is not an advanced section.
Sent from my Nexus 7 using Tapatalk 4
jase33 said:
What setting are you looking for? There is not an advanced section.
Sent from my Nexus 7 using Tapatalk 4
Click to expand...
Click to collapse
I found what I need. It's in developer settings. What I was referring to was the extra settings like center clock, am/pm, battery options, quick setting tiles options, etc.
looks like ART is working on the N10 version
I will posting an update shortly with ART working
ROM Update...links updated in OP
Changelog is in post #2
jase33 said:
ROM Update...links updated in OP
Changelog is in post #2
Click to expand...
Click to collapse
Thanks for this.

[Touchwiz ROM] : MIUI V5 4.6.20 with Multiwindows & S-Pen

[Touchwiz ROM] : MIUI V5 4.6.20 with Multiwindow & S-Pen
{
"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"
}
Your warranty is now void
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
THANKS
I would like to give my sincere thanks to: eZdubzitmk4 for his work
INSTRUCTIONS
1. Wipe data, cache, and dalvik
2. Install Rom zip file
3. Install gapps
4. Flash modem (if needed)
5. Flash kernel (if needed)
6. Boot into rom. You will likely have working 3g and not 4g. Setup the rom all the way through until you get to the homescreen.
7. Enable root using the permissions app in the security folder.
8. Add APN details ( Only if no Data connection you see even after turning ON 3G, else skip this part)
9. Download Terminal Emulator from play store ( only if Data connection messed up or not available, else skip this part)
10. Type "su" without qoutes. Hit enter. ( only if Data connection messed up or not available, else skip this part)
11. Type "fixdata.sh" without the quotes.The device will reboot.
*****************************************************************************************************************
A few force closes when you boot up but after that very smooth.
NOTE: If your Network Data is not working, just run "fixdata.sh" from terminal again
*Not sure if this applies to everyone(need further feedbacks), because I had to go set up the Singtel APN and save it..
*****************************************************************************************************************
UPDATES: MIUI V5 4.6.20
Google Gapps Added
Android L Boot Animation and MIUI Animated Icons added
MIUI ROM 4.6.20 Full Changelog
[System]
Fix - Sometimes, volume would change when playing music using bluetooth (Mi3) (6-17)
[Gallery]
Optimization - When viewing images from Camera, the title bar and editing bar will show by default (6-19)
Optimization - Support pinching to change sizes of Gif images (6-19)
Fix - Unclear watermarks on pictures taken in HDR/RAW modes (6-19)
[Themes]
New - Added 'Declaration and Impunity' popup message when first connecting to the Internet or first using the app (6-19)
New - Added option to set MIUI system font (6-19)
New - Resources introduction and recommendation for new users (6-19)
Optimization - Optimized the layout of themes list (6-19)
Fix - Free trail notification wouldn't disappear (6-19)
Fix - Preview images wouldn't show when sharing local fonts (6-19)
Fix - Couldn't set MMS images as wallpaper (6-19)
[Security]
Optimization - Enhanced smoothness of Permission - Manage App Permissions page (6-19)
[Calendar]
Fix - Sometimes, app would stop responding (6-18)
[Mail]
Fix - App might FC when setting up Hotmail accounts (6-19)
Fix - Inaccurate attachments sizes for IMAP protocol accounts (6-19)
Fix - Mistakes in sorting attachments by date (6-19)
Fix - For some POP3 protocol accounts, couldn't download an attachment again after deleting it in the attachments management page (6-19)
Fix - Sometimes, app would fake freeze when downloading attachments (6-19)
Fix - Sometimes, mail content would show as unrecognizable codes (6-19)
Fix - yeah.net mails couldn't download attachments (6-19)
Fix - Some POP3 accounts might receive mails repeatedly (6-19)
Fix - Sometimes, couldn't download images automatically even when connected to WiFi (6-19)
Downloading LINK:
http://www.mediafire.com/download/t7gvelauptbsefw/STABLE_MIUI-N7105-4.6.20-Gapps_V9.zip
UPDATES: MIUI V5 4.6.13
MIUI ROM 4.6.13 Full Changelog
[System]
Fix - Sometimes could not get IP address (Mi3 WCDMA) (6-12)
[Gallery]
Fix - Sometimes Gallery would FC when opening pictures from a third-party app (6-9)
[Mail]
Optimization - There will be a reminder if a mail was not sent out (6-9)
Optimization - The add attachment button will always show in the mail composing page (6-9)
Fix - Could log into a same account repeatedly (6-9)
Fix - Sometimes there were mistakes in folders number counting if there were several accounts (6-9)
Fix - Attachments would continue downloading after pressing stop (6-9)
Fix - Sometimes could not forward mails with attachments (6-9)
Fix - Errors in signature UI after saving a mail as draft (6-9)
Fix - App might exit abnormally when editing account name (6-9)
[Browser]
New - Support pulling down to refresh cloud tags (6-11)
New - Sync history and Sync webapp functions added (6-11)
Fix - It would still automatically fill in usernames after clearing the saved passwords (6-11)
[Radio]
Fix - There was no sound when playing using the speaker (Mi3 WCDMA) (6-12)
Fix - There was no sound when recording using FM Radio (Mi3 WCDMA) (6-12)
[Calendar]
Fix - Could not open calendar if not logged into a Xiaomi account (6-9)
Downloading LINK:
http://www.mediafire.com/download/21j6zf9ivy6pjvf/STABLE_MIUI-N7105-4.6.13-Android4.1_V8.zip
UPDATES: MIUI V5 4.6.6
MIUI ROM 4.6.6 Full Changelog
[System]
Fix - Slow charging speed (Mi3 WCDMA/CDMA) (6-5)
Fix - Sometimes couldn't open WLAN after booting (Mi3 WCDMA/CDMA) (6-5)
Fix - Sometimes couldn't connect to any WiFi router without rebooting (Mi3 WCDMA/CDMA) (6-5)
Fix - Recorder couldn't adjust volume on speaker (Mi3 WCDMA/CDMA) (6-5)
Fix - OTG couldn't write in (Mi3 WCDMA/CDMA) (6-5)
[Messaging]
Optimization - Optimized UI of Notification messages. Support viewing messages by types by pulling down (6-4)
[Camera]
Optimization - It blurred when long pressing to take pictures (Mi3 WCDMA/CDMA) (6-5)
[Gallery]
New - Press the blank area to add pictures when Cloud images page is empty (6-4)
New - Support editing pictures in cloud albums (6-4)
New - Support pinching to return to image list when viewing pictures in full screen (6-4)
[Mail]
Fix - Some POP accounts could not log in (6-3)
Fix - ZIP attachments did not automatically open after downloading (6-3)
Fix - Using 'Sort by' in searching results may cause FC (6-3)
Fix - Could not send mails by clicking the email address in contact details page (6-3)
[Browser]
Fix - Some webpages said password was not filled in after auto-fill (6-4)
Fix - Some webpages didn't zoom in/out by double press (6-4)
Downloading LINK:
http://www.mediafire.com/download/h0gzqkq0241e4v4/STABLE_MIUI-N7105-4.6.6-Android4.1_V7.zip
UPDATES: MIUI V5 4.4.25
1) A lot of language
2) CRT OFF (not buggy with lockscreen.)
3) WeatherBZ instead Chinese weather app
4) Added MIUI Old wallpaper
5) Some New Icons and Way more V5 style icons
6) Little Change in Window animations
7) Stock Kernel
NOTE: No bug seen for the moment except SNote functioning, I will fix this up.
Downloading LINK:
http://www.mediafire.com/download/f89dhe95a9w1wxp/STABLE_MIUI-N7105-4.4.25-Android4.1_V6.zip
UPDATES:
1. Added Sony Walkman
2. Added TrackID from Sony Xperia
3. DSP Manager for Music
4. Added Note2Settings for icons DPI settings
5. Flash player Added
6. Added QuickOffice and Adobe Reader
7. Added MovieStudio for modifications
8. Added Taptalk, Adway and SamsungApps
9. MIUI Security Centre works like charm
For TORCH on lockscreen : After flashing ROM it asks to disable the Recovery Flash say NO on the confirmation. Worked on CMW, TWRP and Philz Recovery.
Downloading LINK: http://www.mediafire.com/download/a137ayegp3obd1h/MIUI_V5_LTE_4.2.28_AROMAV5.zip
NEW RELEASE UPDATES: 4.2.28
I DONT HAVE N7105 NOW AS I SWITCHED BACK TO N7100, SO WONT BE POOSIBLE FOR FUTURE UPDATES
Change Log:
1. No more Phone force closed
2. Don't ask me LTE for now, please use 3G
3. AROMA working need some clean up, please take care
4. Android Version : 4.1.2
5. Works with any variant of Note II
6. Torch Fixed
7. Please use the default Kernal else you wont be having working Torch.
AND MANY MORE, TRY IT.
LATEST ROM FILE:
MIUI_V5_LTE_4.2.28_AROMAV4.zip
ROM FILE:
MIUIv5_3.12.20_N7105-FixedV1.zip
Change Log:
1.Added S-Voice app
2.Added Paper Artitst app
3.Added Burgerz International Weather app
4.FIXED: Browser for file downloading
5.Removed MiuiVideo player for now
6.Removed FMRadio app as N7105 doesnt have Radio hardware to support it
7.Updated the MIUI Music app for some know issues
8.Google Contact and Calander Sync support without installing GAPPS
DOWNLOAD
MediaFire LINK[UPDATED]: MIUIv5_3.12.20_N7105-UPDATED.zip
GAPPS LINK( Thanks to eZdubzitmk4) : GAPPS
SABRE KERNAL: HERE
KNOWN ISSUES AS OF NOW
1. Phone.apk crashes a few times at bootup (turn off show force closes if you don't want to see it)
2. Downloaded Themes might lead theme manager to crash
3. Torch needs a fix
4. 3G/1X always shows no signal regardless of actual strength
5. Stock theme causes Phone.apk to crash when making a call ---- switch to a different theme and reboot to fix
HOW TO DISABLE MULTI-WINDOWS
TAKE BACKUP FIRST
Just freeze FlashBarService.apk in /system/app. Titanium Backup can freeze apps, but it requires root. Don't forget to reboot the phone after freezing it.
Link to Titanium Backup:
https://play.google.com/store/apps/d...dW1CYWNrdXAiXQ
MODS
WSM Tools
http://forum.xda-developers.com/show....php?t=2481178
XPOSED Framework
http://forum.xda-developers.com/show....php?t=1574401
CHANGELOG
MIUI ROM 3.12.20 Full Changelog
[Home screen]
New - App location function added in Global Search (12-17)
Optimization - Auto-complete search: User doesn't need to enter the full name of the app or file they are looking for to view search results (12-17)
[Calendar]
New - New version (new day view and month view, transparent black and full white widgets added) (12-19)
Fix - Fixed display issue with description on calendar details page (12-19)
[Contacts]
Optimization - When user is not signed in to Email account, tapping a contact's picture on their cover page will display their Email address (12-17)*
Fix - When an unknown number was added to contacts, sometimes the list view would not be displayed correctly (12-17)
Fix - Sometimes, when syncing contacts from SIM card to phone, app would FC (12-17)
Fix - When user had no contacts, the "Select all" button could still be tapped (12-17)
Fix - On contact's detail page, birthday was displayed incorrectly (12-17)*
Fix - When contact's detail page had 3 tabs, the triangle indicating the current tab would not align properly (12-17)*
Fix - When airplane mode was on, user would be reminded to re-sign in to their Xiaomi Account (12-17)
Fix - When using the +17951 and +86 prefixes to dial the same number, the number would display as two separate numbers in call history (12-17)
[Clock]
Optimization - Updated 2014 holiday info for China ("work days" for alarm settings) (12-19)
[Downloads]
Fix - File formats and links to apps were incorrect (12-17)
[Phone]
Fix - Some parts of the dial pad were displayed incorrectly (12-17)
[Messaging]
Fix - Outing going message status icon displayed incorrectly (12-18)*
[MiCredits]*
New - Horizontal view added for pop-up payment windows (12-18)
New - Details page for user purchase and top-up history (12-18)
New - After top-up card QR code is read, app will complete top-up automatically (12-18)
Optimization - When user needs to enter a password, keyboard appears automatically (12-18)
Optimization - Lock screen hides user account info (12-18)
[MiCloud Back ups]
Optimization - Only apps that have been used on the day of the back up are backed up to cloud (12-19)
[Music]
New - Sync playlist feature (12-17)
New - Song select feature for Leishi KTV consoles (12-17)
New - Baidu High Quality Music service (pay per month) (12-17)
[Security Center]
Optimization - After check process is complete, new title displayed at Cache Clean Up page (12-19)*
Optimization - In Permissions, user can view blank pages display format (12-19)
Fix - After check process was complete, tapping the Clean up button would cause app to FC (12-19)
Fix - After apps were designated as risks or viruses during scan, when user tapped app to view details, the app size would display as "0" (12-19)*
[Video]*
Fix - Sometimes when user was streaming content, app would FC (12-19)
Fix - User couldn't delete items in "My videos" list view (12-19)
Thanks: If it weren't for these guys, we wouldn't have the newest TW MIUI!
dtroup64 - For maintaining the Verizon base now, again making this port possible as well.
WarlockLord - For his Verizon base, making this all possible
lbxmobbin_1 - For his sprint base, getting the ball rolling, and a bunch of tech support
aminalmo - For his AT&T base that I pulled a lot of ideas and info from
Great Great Great Great:laugh:
I Like IT:good::good::good::good:
Hope upload will update soooooooooon.:fingers-crossed:
I will give this rom a try.. Thanks Kat0072 for your hard work. I will provide feedback soon, once I can download it
Updates:
1) Dropbox File uploading finished....
2) Uploading the same on MediaFire as well.. which is still going on << Completed and added the link to the main thread
Maw2607 said:
Great Great Great Great:laugh:
I Like IT:good::good::good::good:
Hope upload will update soooooooooon.:fingers-crossed:
Click to expand...
Click to collapse
For now I uploaded to dropbox, please a try on it.
MediaFire link still under uploading status...
slysurfer said:
I will give this rom a try.. Thanks Kat0072 for your hard work. I will provide feedback soon, once I can download it
Click to expand...
Click to collapse
Dropbox links is available now :silly:
Thanks already download it.
Dopeeee.
Thanks for posting! Keep us updated!!
At first side, the rom is very good !!!
My APN is well recognise :victory: which is really cool because on ATT and VZW i always have to enter it manually. I will test it even more to see if 4G end everything work but i think it's a really good base.
You just forget to include the fixdata.sh in xbin, i will try with this on the att rom.
Thanks you very much kat0072 :good:
Maw2607 said:
Great Great Great Great:laugh:
I Like IT:good::good::good::good:
Hope upload will update soooooooooon.:fingers-crossed:
Click to expand...
Click to collapse
which is better for GT N7105T - MIUI V5 OR DN3
paddypm said:
which is better for GT N7105T - MIUI V5 OR DN3
Click to expand...
Click to collapse
dn3 by far, but MIUI TW . needs a lot of attention, but will be a perfect alternative to tw rom if stable + fixes,
thanks
Maw2607 said:
At first side, the rom is very good !!!
My APN is well recognise :victory: which is really cool because on ATT and VZW i always have to enter it manually. I will test it even more to see if 4G end everything work but i think it's a really good base.
You just forget to include the fixdata.sh in xbin, i will try with this on the att rom.
Thanks you very much kat0072 :good:
Click to expand...
Click to collapse
Thanks for giving it a try and pointing to my mistake. Let me check the fixdata.sh file in the base.
KNOWN ISSUES AS OF NOW
1. Phone.apk crashes a few times at bootup (turn off show force closes if you don't want to see it)
2. Downloaded Themes might lead theme manager to crash
3. Torch needs a fix
4. 3G/1X always shows no signal regardless of actual strength
5. Stock theme causes Phone.apk to crash when making a call ---- switch to a different theme and reboot to fix
Click to expand...
Click to collapse
Tried it, but have to uninstall after few hours. Phone, contact, Video folder not working, tried to download new theme but each time crash while trying to import theme, so can't change theme to fix it.
After some little test:
I don't have crash with phone.apk (make call and receive call) but i could fill lucky for now as i use it as is and don't install theme.
After fixdata.sh 4G ok (verify with network monitor and the icon show 4G on status bar) :good:
Translate in french wit jbart master: all is good.
I Have some FC with themes.
Here i am for now.
pspeter said:
Tried it, but have to uninstall after few hours. Phone, contact, Video folder not working, tried to download new theme but each time crash while trying to import theme, so can't change theme to fix it.
Click to expand...
Click to collapse
Hey thanks for the feedback. I would advise you to give a try with cleaning your internal SD card.
Initially I faced issue when I was using another MIUI based and tried putting MIUI Touchwiz. The phone and contact started crashing.
I didn't see phone and contact crashing yet, Themes I know its crashing as soon as its starts importing it. I am working on this to get it fixed.
Maw2607 said:
After some little test:
I don't have crash with phone.apk (make call and receive call) but i could fill lucky for now as i use it as is and don't install theme.
After fixdata.sh 4G ok (verify with network monitor and the icon show 4G on status bar) :good:
Translate in french wit jbart master: all is good.
I Have some FC with themes.
Here i am for now.
Click to expand...
Click to collapse
Thanks for the valuable feedback, Theme manager having some bug. I will start working tomorrow onwards.
Hi all.
Can I install it with the 4.3 bootloader? My warranty is already void.
Thanx in advance.
nambinina said:
Hi all.
Can I install it with the 4.3 bootloader? My warranty is already void.
Thanx in advance.
Click to expand...
Click to collapse
Should not be a problem ROM will take care of it, only thing make sure the internal SD card stuff is backed up and in clean state.
Don't keep old files and folder. External micro card no need to touch, you can keep the stuff as it is.
Good Luck.
pspeter said:
Tried it, but have to uninstall after few hours. Phone, contact, Video folder not working, tried to download new theme but each time crash while trying to import theme, so can't change theme to fix it.
Click to expand...
Click to collapse
Based on the last response I made some changes to the build, which will fix the below:
1) No more Phone dial crashing
2) No more contact crashing
3) APN File working fine: fixdata.sh not required until you really have issue with Data connection or APN
4) More importantly Theme Manager application crashing which is somehow fixed.
The latest file is still uploading, will share the latest link in the morning.
I NEED A TESTER, to try this build .......
In Progress
----------------
Torch and Video app still working on
GOOD NIGHT

[ROM] Custom firmware for K1 Plus DVB-S2/T2

Only K1 Plus DVB-S2 / T2​
Android 5.1.1​
{
"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"
}
Sorry, I write in bad English. Used Google translator.
Firmware was made on the basis of the factory firmware from 06.06.2016.
What added, modified and deleted:
Version 2.5 of 29/07/2016
Changed the info bar in the application for DVB television viewing, namely: EPG became fixed and changed the color of the line - the elapsed time
and I made semi-transparent substrate under the panel.
Built into the firmware Xposed.
Remove the Chinese keyboard and some programs.
Added programs: ES File Explorer , Root Explorer and Titanium Backup
Established another, completely redesigned home launcher, sharpened for our unit.
Android base dated June 06, 2016
DVB-T2 is run a separate icon.
Added program to autorun programs (eg TV) at system startup.
You can set your wallpaper and live wallpaper (in the factory launcher that could be done)
Removed Kodi, who pre-install the Chinese version of the installed Play Market
Now there is a choice of firmware run - Launcher, DVB-T2, DVB-S2 / DVB-T2 / The first time you ask that run by default. Change then start: press the Apps button on Moodle, launch the Settings - Home Screen, activate on Moodle mouse button and choose the cursor that run at startup.
Many other small fixes.
If you like my firmware and think that I'm wasting a lot of time to improve the firmware, then "Donate to Me"
Download: https://mega.nz/#!RgxmXB7D!u1Xvcr2Mqwpz6N8K96eA_sVP9aUukJVjis807xOCNAE
Version 3 of 04/09/2016
Firmware was made on the basis of the factory firmware from 09.08.2016.
Separate selection of firmware run - TV launcher, launcher Staff, DVB-S2, DVB-T2, DVB-S2 / DVB-T2. When you first start you will be asked what to run by default. Change then start: press the Apps button on Moodle, launch the Settings - Home Screen, activate on Moodle mouse button and choose the cursor that run at startup.
SPMC - can be removed in the Settings - Applications
Kodi - can be removed in the Settings - Applications
All programs can be run in the TV launcher.
Many other fixes.
Download: https://mega.nz/#!opgTCLAB!DWuXujguK7_3qZ12fYUEu8yiQTk70Awo-yI1TX90yME
Version 4.5 of 09/10/2016
Firmware was made on the basis of the factory firmware from 09.02.2016.
Base of September 02,
Established last SuperSu
Changed info Bar in the DTV application
Button to access the settings and the BISS key sharinga made directly in the basic settings (now do not need to enter the code 111111)
Fully customizable clock and weather.
Changed Status Bar
Added YouTube
Added - Settings - Display - Traffic display in status bar.
Altered settings.
Reworked DTV application. Enjoying all screenshots
Many other fixes.
If you want to install the firmware update just - while retaining all of your settings and programs that change factory_update_param.aml file, which is in the archive with the firmware in the folder - "To save all the data app to change the file"
View attachment 3882359View attachment 3882360
Version 5.2 of 23/11/2016
Firmware was made on the basis of the factory firmware on November 11, 2016.
+ New launcher (serial removed)
+ Reworked application for DVB S2 - T2
+ Changed the volume control
+ Corrections and additions in the new launcher
+ After exiting the DTV application is now immediately get into the launcher
+ The launcher now can set their wallpaper. Settings - Display - Wallpaper.
+ The launcher is added off button - Restart the machine. If you choose to exit there rekaveri and insert the SD card with the firmware, the device will begin flashing, without of pressing a button on the rear of the unit.
View attachment 3941916View attachment 3941917View attachment 3941918View attachment 3941919
Version 6 of 19/12/2016
Firmware was made on the basis of the factory firmware on November 22, 2016.
+ Fixed problem with Google Play authorization
+ Added a choice of aspect Pan&Scan and Combo (Thanks _sm0ke_)
+ Added a choice of visiting infobar 1-2-3-5-7-10-15-20 seconds.
+ Fixed launcher NewLauncher
+ Added ViperFX
+ Added button in the status bar Back, Home, Menu, Latest Applications Screenshot (convenient for those who use the mouse Aero)
+ The TV settings added setting Prognosis
+ The weather added launcher show
+ By correcting the little things.
Download Version 6: https://yadi.sk/d/fQPfQRuA342Dza
Version 6.5 of 02/26/2017
+ Updated Google Services
+ New Boot Animation
+ Visually redesigned infobar in DTV application
+ Changed launcher NewLauncher, you can now change the program to run on the main icons (which in the mid - high)
+ Changed the status bar and adds it off button - reload.
+ Added new settings for the display of hours in the status bar (located under Settings - System - Setting the clock and date) is now possible to change the layout, color, date, seconds, size and so on..
+ Added new settings statusbare gradient (found in Settings - System - Polat gradient) You can put any color (two - 4 colors) in the status bar.
+ Other settings under Settings - System.
+ New app to clear the memory (in the launcher NewLauncher).
+ Many other fixes and additions.
Download Version 6.5:https://yadi.sk/d/P7A_Xk6U3EeJuj
Version 7.0 of 03/09/2017
When you first start the DTV application, you will not see Infobar! Do not panic and click on the MENU button - Installation - Configuring InfoBar and Weather - Configuring InfoBar and there we enable and configure Infobar itself.
Now you can fully configure InfoBar and not only. Almost all DTV applications have been redesigned in a graphic form.
You can completely disable Infobar, disable - include individual elements in it, set as one color of the background, and set a gradient of two different colors, change the color of all elements and labels, etc. That is, you can modify about 100,000 varieties of graphical appearance.
+ Added service information in InfoBar (Satellite name, Frequency, Speed, VPID, APID, etc.) You can disable - Enable,
Change the color in Settings - Install in the DTV application.
+ Only for DTV-T2: Infobar, Weather, Dates and Clock settings (Menu - Install)
+ Application signature check disabled
+ APK integrity and version checking disabled
+ Increased the volume level to 30 (was 10), now you can more fine-tune the volume level.
+ Fixed a volume scale (there was an overlay of two pictures)
+ Added files to control the gyro of the mouse and mouse
+ Added a button for cleaning background processes and displaying free memory in the curtain Last apps (you can turn off in Settings - System)
+ Error correction.
Download Version 7.0:https://yadi.sk/d/FjnY5jDK3FNrVb
Version 7.5 of April 3, 2017
+ Added support for Picons ( images Channel )
+ Added to TV Settings item autoframerate
+ Support for scripts in Init.d is added
+ Added information to the channel list: channel name, channel number, epg of the ongoing transmission, epg of the next transmission, description of the ongoing transmission. The only downside - when switching the channel does not have time to load epg, just pressing the up-down button will update the information.
+ Added 5 on the screen invisible buttons for controlling the air mouse.
List of channels - middle
Menu - the upper left corner (where the weather information)
EPG - bottom left corner
Detal EPG channel - right upper corner
Favourites - right bottom corner
+ Added about 40 new buttons !!! For controlling the air mouse in the DTV application
+ When switching favorites, it is now NOT automatically triggered Channel list
+ Other fixes and additions.
Now to the Picon. For satellites, your help is required. In order for the picons to show up, you need to copy the Picons folder into the internal memory of the receiver to the root of the disc. The path will look like this - mnt/sdcard/picons/. To make the picon appear on a specific channel, the name of the png file must have the same name as the channel. For example channel name First HD, then the picture name should be such First HD.png To make it much easier to fill your backup channels in the Channel Editor and just copy the name of the channel to the picture. Picks are recommended with a resolution of 220X132, and then put it on this site, and I'll add them to my main message.
Download Version 7.5:https://yadi.sk/d/Z2RSwL2V3Gbqcs
Examples of Pikons of 220x132 with names: https://yadi.sk/d/rK4xvWlt3Gbo7j
Movistar+ picons - https://yadi.sk/d/_kzwudQB3GbDzz
Version 8.1 of May 30, 2017
I recommend installing this firmware with cleaning all data !!!
1. Delete the Google services.
2. An analog of Google services is installed - MicroG. Now after downloading free RAM became more than 740 mb from 1 Gb. Correctly need to configure only them - read this
See photos - https://forum.xda-developers.com/showpost.php?p=72475106&postcount=219
1. go into the microG Settings application and activate the background services:
- Register your device with Google
- Google Cloud Messaging
2. In the same place, select the UnifiedNlp settings and note (if you only use GPS, you can skip it):
- location programs (just select one that is more like it), so that the search for networks
- address search programs - mark Nominatim with a daw (conversion of coordinates to address)
3. reboot the device
4. Go to the Play Market and enter your account.
Click to expand...
Click to collapse
3. The default picture in the display of picos in the DTV application has been deleted. (You can set transparent picos)
4. The picture of the displayed picos is enlarged.
5. Replaced bootanimation.
6. Added what did Pily_W (for which many thanks to him)
Boot with init.d support, root shell, more than 100 hid drivers
SAMBA server, copy speed ~ 11.5MB / s, minimal assembly, no GUI (settings are in /system/usr/data/samba/smb.conf, login: admin pass: admin)
If you have a different workgroup name on the network on behalf of WORKGROUP, then go to /system/usr/data/samba/smb.conf and change the name in the line "workgroup = WORKGROUP"
MSG is a very useful micro application for displaying dialog boxes and notifications from under the shell
Autoframerate script and LED display scripts displaying toasts via MSG
7. YouTube has been added with support for downloading and without ads.
8. Added control of the aero mouse, here's a - https://ru.aliexpress.com/item/MX3-...8b56b76aa14d0e57-1496145022581-08947-VnYZvQVf
Download Version 8.1:https://yadi.sk/d/psi-Vlnx3JfBBv
Version 8.5 of August 10, 2017
1. The firmware was made on the basis of the last official on December 17 (before that all were on the November version)
2. The firmware is completely deodexed.
3. MicroG services are cleaned and installed the latest versions of Google Services (official)
4. Xposed is removed as a braking system.
5. The latest versions of SuperSU (hidden RTH access), Bysybox and fixed time zones are installed.
6. Only the launch of the SAMBA server is left, who needs the rest (script autoframerate and LED display scripts output toasts via MSG) go Root Explorer by the way System/ETC/ Init.d and there we set the right 0755 on the scripts you want to start when the system boots.
7. Changes in the launch of the main application for DTV (now there is a countdown of 5 seconds and the start occurs automatically, what you ran last) and changes in the DTV application itself.
8. YouTube 4K for consoles (will appear if you install the firmware into a clean one with the removal of all data)
9. There are a lot of other additions and fixes.
Download Version 8.5:https://yadi.sk/d/IbJ9ihFR3LtKTc
Version 9.0 of 13/01/2018, Android 5.1 ONLY OLD KI Plus!
Android base from the factory firmware from August 18, 2017.
1. The provider's name is written to the root of the internal memory in the folder SDCARD\Picons\namesprov\ names.ini
We look in the InfoBar or in the Channel list number of the provider and then write his name.
Example file names.ini:
Code:
[settings]
112=NTV +
43001=GeoTelekom
253=Tricolor
2. The image of the provider must be copied to the folder SDCARD\Picons\Piconprov with the same name that you wrote in the names.ini file
For example :
Code:
NTV+ image name will be NTV+ .png
GeoTelekom image name will be GeoTelekom.png
Tricolor image name will be Tricolor.png
3. The satellite image must be copied to the SDCARD \ Picons \ Piconsat folder
The image name must match the satellite name in the DTV-Menu-Settings-Satellite List
For example :
Code:
Eutelsat 36A image name will be Eutelsat 36A.png
If the satellite name is a slash "/" then in the DTV-Menu-Settings-Satellite list, select the satellite and click Edit.
Write your satellite name without a slash.
For example, the satellite name was Eutelsat 36A/36B, then rename it to Eutelsat 36A and the name of the picture will also be Eutelsat 36A.png and the position
picture in the folder SDCARD\Picons\Piconsat
Download fully customized Picons for satellite 36, provider NTV + (suitable for other satellites, if the names match) -
https://yadi.sk/d/JmpykWjd3RRGNi
Unarchive. Copy the entire Picons folder to the internal memory of the device.
Download firmware 9.0, Android 5.1 ONLY OLD KI Plus!: https://yadi.sk/d/5ddJQ4Io3RRGNt
If you like my firmware and think that I'm wasting a lot of time to improve the firmware, then "Donate to Me"
Installation (standard):
A MicroSD - in FAT32, write it 3-4 files from the archive, turn the power off the map - in the box,
the bottom through the hole with a needle push button,
connect the power, after 5 seconds, release the needle - waiting for the end of the firmware.
The first boot will be more long.
Setting Weather - http://forum.xda-developers.com/showpost.php?p=69706785&postcount=53
K1 PLUS EDITOR Сhannels - http://forum.xda-developers.com/showpost.php?p=68260031&postcount=13
.
A big thanks , you do a great job, i have one question , we can adabt the firmware of ferguson avira combo 4K for impliment it in our K1 PLUS
ferguson-digital.eu/en/ferguson-ariva-4k-combo/
thank you for this great work
I think the solution is to adapt a firmware "wetek play 2" in which the same processor etc.
because with the original firmware lot of bugs and list of DVBS2 channels can not be classified
So it is best to work on another stable and brand as wetek or ariva
give this firmware "wetek play 2" now i know how to do
thnks
here for wetek play
wetek. com/downloads
the biggest dream is to run enigma2 [OpenELEC (Vitmos OS) ] but I think this is not your field?
hello pleas need enigma2
thank you for this great work
Hi,
THanks for your job!
Do you think if it works with the K2 plus?
It's the same only with 2gb and ram 16gb !
Would this work for the original K1 Plus S905?
Thanks Malaysk for the work you did with the firmware, it looks great from the screenshots you posted.
Could this be adapted to work with the original K1 Plus S905 (without DVB-S2/T2)?
They look mostly identical to me apart from the tuner. goo.gl / AjN6ts and goo.gl / cVbNB9 .
I am trying to make that Fake Wi-fi fix work with mine but I don't know where to start (found this goo.gl / g97Ngx) for Root, Xposed, etc.
I don't understand why the original firmware build doesn't have a checkbox similar to what they were able to put in that thread, so many apps check for wi-fi these days.
Since you already have Xposed in your build, this could be great step forward in getting there if they can't put it in the firmware itself.
(Sorry for the links, the forum policy thing prevents me from putting urls in my post)
Thanks!
Thank you very much
I have android 6 installed on my k1 combo very smoth and stable but unfortunately no dtv app inside is possible to install dtv app on android 6 or modifying or not??
Verstuurd vanaf mijn SM-G901F met Tapatalk
Perfect work. Thanks. If you could add oscam support to the dtv application or make the tvheadend backend working, I would donate 10 beers.
Thanks for your great job.
Could you add to firmware that it accept external bluetooth dongle?
And, it is possible made fav list with sat and tdt channels mixed as other combo receivers?
K1 PLUS EDITOR Сhannels
4PDA- http://4pda.ru/forum/index.php?showtopic=730111&st=1880
How to work:
By clicking on the button "Загрузка" you must choose "dtv_user_data" folder;
When you click on "Сохранить" - ​​saves in the previously selected folder;
Removing the channel - the channel selected in the list, and press the Delete button (on the keyboard);
Moving the channel in the list up / down (buttons are located to the right of the channel list);
Possibly select multiple channels (but only in sequence), and move them;
It is necessary to add that you can also select multiple channels (either sequentially or through the Ctrl key in any order), and also remove the button Delete.
With the change of the order there is a nuance - normally only channel group will move that highlighted consistently. Those. if through the Ctrl key mark the channels in any order, the move will be a group that starts on the first selected, and ends on the last selected.
version 0.3
[+] Added context menu (right click), through which you can delete and move selected lines.
Moving rows to the specified position: select the channels we want to move (on Ctrl can be selected in a random order, not
necessarily in a row), press the right mouse button and select "Move". In the window that appears, specify the number of positions on which we want
move the selected channel and press OK. It made to speed up the channel grouping.
[-] Removed conversion;
[+] Cosmetic changes
[*] Working on the firmware to version from 25.06.2016.
version 0.4
[+] Added support for the new format (for firmware from 25.06.2016)
[+] Added the ability to convert between the formats from 06.25.2016 <-> 06.06.2016. To do this, you need to download the channel list and, at the bottom of the window (in the status bar, where a written format), select the format in which we want to convert.
version 0.4.2
[+] Remembers the last selected folder.
version 0.5
[+] Add to the list of channels on the satellite information (name, latitude, transponder data)
[+] Added the ability to edit the list of satellites. To do this, you must switch to "каналы/спутники" translate to "спутники" and download the list via the "Загрузить" button. The satellite list by double-clicking on the satellite, the transponder list will be thrown out (you can add / delete).
version 0.5.2
[+] Click "Группировка" is added to the context menu - the grouping of dedicated channels (takes all selected, and puts them behind the first selected). Allocate by CTRL.
version 0.6.0
[*] Changed almost all code
[*] The application design with multi-window interface with a tabbed interface
[+] Following function template (template includes favorite channels, regardless of the version of the channel list;
those. imposing a pattern on the channel list, favorites are restored)
[+] For foreigners added 2 languages ​​- English and German (toggle through the "Help" menu item)
[+] To choose the audio track by default.
[+] Filter to use to search for the channel (s) (for example, when searching for 3 satellites (astra, hotbird, sirius) finds more than 4000 channels; look for scrolling through the list would take a lot of time, but knowing that the desired channel has a specific signature ( name, frequency, etc.), it is possible to apply a filter)
[+] Column indicating the channel type (HD, encrypted)
version 0.6.3.3
[*] Fixed bug with downloading the configuration to the receiver;
[*] Fixed a bug with the addition of transponders;
version 0.6.4.0
[*] Fixed bugs;
version 0.6.5.0
[+] Added support for T2 (until a minimum volume - rename, move, delete, and favorites);
[+] Added languages;
[*] Bug fixes.
version 0.6.5.1
[+] Added languages
version 0.6.5.3
[+] Changed the way display the channel list;
[+] To the channel list added drag & drop (the ability to drag and drop channels);
[+] Added languages
version 0.6.5.5
[+] Added the ability to check program updates (check carried out each time you start);
thank you for this tutorial.my k1 on dvb s2 .with DTV application I can not logged more than 4 server cccam . i managed to logged in to 5 but no more. you have the same problem ?
Sorry I use Google translate.
thanksK; can i install this rom in kII pro s2 t2?
Hi Malaysk, i know your custom firmware is for K1 PLUS, but i have Xtreamer MXV PRO (it's the same box....) i have try to install your firmware but i have this error :
E:failed to verify whole-file signature
E:signature verification failed
Installation aborted
you think is possible to bypass this error and your firmware work in this box ? or is totaly not compatible ?
because the xtreamer firmware is... VERY POOR !!!!
thank you in advance for your help.
Deki95 said:
Hi Malaysk, i know your custom firmware is for K1 PLUS, but i have Xtreamer MXV PRO (it's the same box....) i have try to install your firmware but i have this error :
E:failed to verify whole-file signature
E:signature verification failed
Installation aborted
you think is possible to bypass this error and your firmware work in this box ? or is totaly not compatible ?
because the xtreamer firmware is... VERY POOR !!!!
thank you in advance for your help.
Click to expand...
Click to collapse
You must install this firmware before instal firmware's malaysk
https://mega.nz/#!TwwkTJ7D!5UhmMkkO6...hcWfQn3eCjSKv0
OR this one with android 6.0 for K1 plus but without DTV
https://mega.nz/#F!lp4zyb6Z!-0y-n5ByZSgJKryRDgeOPw
futrist said:
You must install this firmware before instal firmware's malaysk
https://mega.nz/#!TwwkTJ7D!5UhmMkkO6...hcWfQn3eCjSKv0
OR this one with android 6.0 for K1 plus but without DTV
https://mega.nz/#F!lp4zyb6Z!-0y-n5ByZSgJKryRDgeOPw
Click to expand...
Click to collapse
this link no ok
https://mega.nz/#!TwwkTJ7D!5UhmMkkO6...hcWfQn3eCjSKv0
Please port rom for Ferguson Ariva 4K Combo to K1plus
Thank you for this rom.
Damage, restore DVB channels not working.

[MOD][Xposed][4.0.3+][27-06-2016] KMod for WhatsApp v2.3.8

KMod v2.3.8​
{
"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"
}
Disclaimer:
USE KMOD AT YOUR OWN RISK
Readers, end-users, and downloaders of KMod are responsible for their own actions.
Readers, end-users, and downloaders of KMod agree not to use for illegal actions.
This disclaimer is subject to change without notice at any time for any reason.
Introduction:
Hello everyone.
After a long time. I will launch the update of my module. You can customize the appearance of the latest versions WhatsApp, Store and Beta versions. (only WhatsApp official, NO mods).
This module will not focus on privacy at any time, because we could be in breach of the terms of WhatsApp, respect to manipulation the working of servers.
Requests of any kind will not be accepted. This is something I do as a hobby, so I will add the new features that I believe appropriate.
Features:
Independent customization of each section of the application.
You can change color backgrounds, fonts and icons.
New icons and ticks in diferences sections.
Personalized customization of different images of the application.
Hiding unwanted elements or of little use.
Direct access from inside the application to module.
Minimum requirements:
Xposed Framework
Android 4.0.3 or higher.
WhatsApp 2.16.13 or higher.
Instructions:
Download the module and install.
Activate it in Modules section of Xposed Installer, and reboot device.
Open KMod and accept permisions of root.
Make all the changes you want in Customization section.
To see the changes made, click on the refresh icon, located to the top right.
To save a theme, go to the Backup section, or click the save icon at the top of the application.
To load an item, go to the Backup section, select the item you want to upload, and wait the message that the theme has been loaded.
Downloads:
- Version 2.3.8 (Stable version):
http://dl-xda.xposed.info/modules/kmod.xposed_v2_07260e.apk
MD5: 07260ee6dc3a2752b506f732401e76db
Repository:
http://repo.xposed.info/module/kmod.xposed
Change Log:
Version 2.3.8 (27-06-2016 - WhatsApp 2.16.13 or higher):
Added icons of new interface.
Interface
Icons
Header
Conversations
Icons
Header
Added customizing floating buttons, in .
Added personalization floating button, of message counter, in conversation screen.
Fixed to the latest beta version of Google Play.
Fixed other bugs.​
Complete log:
Version 2.3.7 (Beta version) (23-06-2016 - WhatsApp 2.16.13 or higher):
F - Fixed for last beta version of Play Store.​
Version 2.3.6 (08-06-2016 - From WhatsApp 2.16.13 to WhatsApp 2.16.133):
F - Fixed problems to accessing the Backup section.​
Version 2.3.5 (07-06-2016 - From WhatsApp 2.16.13 to WhatsApp 2.16.133):
F - Fixed for last beta version of Play Store.
F - Fixed some problems.​
Version 2.3.4 (26-05-2016 - From WhatsApp 2.16.13 to WhatsApp 2.16.133):
N - You can now save the application in internal memory or SD Card.
F - Fixed for last beta version of Play Store.​
Version 2.3.3 (24-05-2016 - From WhatsApp 2.16.13 to WhatsApp 2.16.133):
N - Added autoupdate, to detect and download future versions of KMod.
F - Fixed some problems.​
Version 2.3.1 (12-05-2016 - From WhatsApp 2.16.13 to WhatsApp 2.16.133):
F - Fixed camera hide button, in the conversation screen.
N - Added support for Beta versions of Play Store, in the section: Customization > Interface > Icons > General​
Version 2.3.0 (11-05-2016 - From WhatsApp 2.16.13 to WhatsApp 2.16.133):
N - Update to work from version 2.16.13, higher versions and betas.
N - Updated some icons on the interface.
N - Restructured some sections on the interface.
D - Removed the settings section, now this setting applies from the interface section (reviewing this section in created themes is advised).
N - Added option to hide the Launcher icon.
N - More general changes.​
Version 2.2.1 (23-03-2016 - From WhatsApp 2.12.451 to WhatsApp 2.12.510):
F - Rectification errors of Russian language.​
Version 2.2.0 (09-03-2016 - From WhatsApp 2.12.451 to WhatsApp 2.12.510):
F - Fixed bug that didn't display correctly the color on names in the contact list.
F - Fixed save settings on all Samsung devices, but still can't save or load images.
D - Deleted base color on Headers.
N - Now the gradient is applied on all headers.
N - Now when you load or save from the Backup section, it will save a copy of the background image of the conversation screen in the Images KMod folder, on KMod folder on your SD card or internal memory. (It can't work on Samsung devices).
N - Reorganization of the customization menu. Now the sections are better organized and are more intuitives.
N - Added option to select a background color in conversation screen, when there isn't an image.
N - Added Russian language.
N - Added two new categories of icons in all sections.
N - Added documents icon in attach section from conversation screen.
N - Added configuration KMod icon, of Settings section.​
Version 2.1.0 (25-12-2015 - From WhatsApp 2.12.374 to WhatsApp 2.12.491):
N - The screen format settings in interface options are also applied to Starred messages.
N - Added settings for the new icons on Starred and unstarred messages.
----> Customization > Conversations > Icons > Header
N - Setting to round the Microphone icon background with Material Design interface.
N - Added Text Format section (Resize text) in sections Calls, Chats and Contacts.
F - Fixed KMod shortcut option from menu.
N - Added two new message ticks and bubbles.
N - Added option to color the texts of the thumbnails when sending links.
N - Fixed icons section:
----> Customization > Conversations > Icons > Categories
F - Changed the names of some icons categories (kmod to kmod 3D), and changed some icons to better suit the new categories.
N - Added two new categories of icons for sections:
----> Customization > Conversations > Icons > Bottom
----> Customization > Conversations > icons > Categories
N - Added option to hide icons on conversation screen (call, camera, microphone)
----> Customization > Conversations > Extensions
N - Added drop-down settings menu:
----> Customization > Interface > Menu.
N - Added status bar automatic tinting. The status bar will have the same color as the header of the current app (this option applies to the entire system).
----> Customization > Interface > Header > Extensions
N - Added languages:Portuguese (Brazil), Bengali, Hindi, Turkish.
N - Restructured the Contact section in Help.
N - Direct access to the Xposed repository from the Help section.
N - Added link to themes forum at XDA-Developers to upload and download themes (Backup section)​
Version 2.0.0 (12-10-2015 - From WhatsApp 2.12.304 to WhatsApp 2.12.370):
N - Change application interface.
N - Independent customizing of the application icons.
N - Update module to the latest versions of WhatsApp 2.12.304.
N - Added section backup, log, and more.
N - Many more changes and customizations.​
Version 1.0.0 (09-03-2015 - From WhatsApp 2.11.476 to WhatsApp 2.12.30):
N - Initial release.​
Known issues:
The color of the letters on the menu are reset to change section.
The background color of the menu, is restarted by selecting one or more contacts in the list.
The list of participants in the group, sometimes not correctly apply the color.
Translations:
Looking for volunteers to translate the module into different languages, to publish in the next update.. Interested send me private messages.
Current language:
Bengali
English
German
Hindi
Spanish
Portuguese (Brazil)
Russian
Turkish
XDA:DevDB Information
KMod for WhatsApp, Xposed for the Acer Liquid
Contributors
Krowne
Source Code: http://forum.xda-developers.com/xposed/modules/kmod-whatsapp-t3223791
Xposed Package Name: kmod.xposed
Version Information
Status: Stable
Current Stable Version: 2.3.8
Stable Release Date: 2016-06-27
Created 2016-08-03
Last Updated 2016-08-03
FAQ:
Q: Why it doesn't work in some versions of WhatsApp?
A: This only works in official versions of WhatsApp higher than that specified in the requirements.
Q: Installed and activated the module, why the changes do not apply to WhatsApp?
A: Maybe you have not successfully activated the module, deactivate, activate, and then restart of device. You may also be using a version of WhatsApp not compatible with the module.
Q: Can't download themes from the cloud?
A: At the moment this option is not available, you can upload your themes to external and share servers.
Q: Where was it saved, or where should I save new themes to load them into KMOD?
A: Used to place their issues on your SD card or internal memory, in the /KMod/Themes route. Make sure the directory exists before placing, if doesn't exist, open the module for create directories.
Q: I have changed the application icon, and no changes are applied.
A: After changing the application icon you must restart your device. If it still doesn't change the icon, you may be using a launcher who does not support changing the application icon (such as Nova Launcher).
Click to expand...
Click to collapse
Download Themes:
Place their issues on your SD card or internal memory, in the /KMod/Themes route. Make sure the directory exists before placing, if doesn't exist, open the module for create directories.
Download from the index of themes
Reserved 2
Thread closed, continue discussion here.
Nathan
Forum Moderator

Categories

Resources