Visualizzazione stampabile
-
Quote:
Originariamente inviato da
RoboTrigger
I just installed v4. Will let you know if any problems occur :)
In the meantime, I had a question -- older Android versions had a setting for custom Date & time formatting and I see this setting is mostly gone in newer versions and the OS pulls the Date & time settings for the language chosen in Language & input. I personally like to use the
ISO date format but it isn't available. Any chance this could be added or do you know of any application that does custom Date & time formatting?
umh...I don't know if is possible to implement, I see if I can find some information.
I looked at the market and I found no app for this setting
-
Quote:
Originariamente inviato da
securecrt
Thanks for you update.
The V4 is working like a charm, very smooth. I think it is because of the linaro toolchain .
Can you also do more optimization on the kernel? for example can you backport the ZRAM feature to the 3.4 kernel from higher base line of the kernel.
https://git.kernel.org/cgit/linux/ke...740bac5670d18b
if you want to try the kernel with zram support download and flash this zip (without wipe)
cm12.1_zramkernel.zip
zram is disabled by default but you can enable with trickster mod app
-
Quote:
Originariamente inviato da
paolothlw8
umh...I don't know if is possible to implement, I see if I can find some information.
I looked at the market and I found no app for this setting
So did I and found nothing. Don't bother too much, it's not crucial, it was just a question -- you know much more about the inner workings of Android than anyone else I can contact. Thanks! :)
Also, a report: the fix for the bright LED didn't completely take: I got it a few hours ago while reading Reddit through the Relay app. I can't reliably reproduce it, though.
-
for those who have the touch bug try with this kernel
from the first tests seems to work
(flash without wipe)
cm12.1_kernel_test6.zip
-
This work! Thank you very much for your great work! I can fully give up official rom! Thank you!:)
-
1 allegato(i)
Quote:
Originariamente inviato da
paolothlw8
if you want to try the kernel with zram support download and flash this zip (without wipe)
cm12.1_zramkernel.zip
zram is disabled by default but you can enable with trickster mod app
I think you just have enabled the ZRAM option in the Makefile, I have the experiance of using zram in other phone(Samsung Galaxy S2) I know the current zram code has some unstable issues, anyway I will testing the kernel first and feedback to you the results.
== edit after installed the new kernel ===
Allegato 148231
I have enabled 384MB zram , now it is working , I can have more apps in the cache most of the apps can stay in the ram and reduced much more loading time, Now the phone has better user experiance than before, but I need to test more time to see the stablity.
-
Quote:
Originariamente inviato da
paolothlw8
for those who have the touch bug try with this kernel
from the first tests seems to work
(flash without wipe)
cm12.1_kernel_test6.zip
goooooooooooooooooooooooooooood
i think the problem is solved by flashing this kernel!!!
-
Quote:
Originariamente inviato da
securecrt
I think you just have enabled the ZRAM option in the Makefile, I have the experiance of using zram in other phone(Samsung Galaxy S2) I know the current zram code has some unstable issues, anyway I will testing the kernel first and feedback to you the results.
== edit after installed the new kernel ===
Allegato 148231
I have enabled 384MB zram , now it is working , I can have more apps in the cache most of the apps can stay in the ram and reduced much more loading time, Now the phone has better user experiance than before, but I need to test more time to see the stablity.
zram is already present in codeaurora kernel, I added the lz4 support (for better compress/uncompress speed) and enabled
-
Quote:
Originariamente inviato da
no1chan
goooooooooooooooooooooooooooood
i think the problem is solved by flashing this kernel!!!
ehehe nice :)
-
Paolo! In V4... I observed performance gains. AnTuTu outstanding results 45858 and 21811 issued AnTuTu HTML5 test.
Thank you for your excellent work.
I also want to tell about the malfunction LED illumination range, if the charge is less than 14%. The circle blinks very dim light. Side buttons are lit at the same time at full brightness. It looks undignified. Moreover, not found possible to adjust the frequency range of the pulsations during charging. in CM12 was previously a function (not on your build).
Thanks to you, I can enjoy the new Android and Material Design style.
-
Quote:
Originariamente inviato da
paolothlw8
zram is already present in codeaurora kernel, I added the lz4 support (for better compress/uncompress speed) and enabled
The zram code has a lot of upgrade after kernel 3.4, in the codeaurora the code for the MSM89X4 TAG is stopped at 2013-11-20.
The TAG list
But the zram driver has been upgrade much since it has been promoted out of staging. more stable I think. If you can backport that part I think we can get better porformance and gain more stablity while using the zram in the next release.
so far I have tested the zram kernel for several hours now, it looks fine, no reboot or crash issues.
-
Quote:
Originariamente inviato da
paolothlw8
zram is already present in codeaurora kernel, I added the lz4 support (for better compress/uncompress speed) and enabled
I replied a long post , why it has been deleted?
-
Quote:
Originariamente inviato da
securecrt
I replied a long post , why it has been deleted?
maybe it's in moderation because of the link inside
I read the message in the mail notification that I received :)
-
Quote:
Originariamente inviato da
paolothlw8
maybe it's in moderation because of the link inside
I read the message in the mail notification that I received :)
so did you read my reply or you just only get the notification?
-
Quote:
Originariamente inviato da
securecrt
so did you read my reply or you just only get the notification?
I read your reply
-
Thanks Paolo! Your last firmware is very stable!
Can you add to firmware auto call recording, the same as in YIOS?
-
Quote:
Originariamente inviato da
paolothlw8
if you want to try the kernel with zram support download and flash this zip (without wipe)
cm12.1_zramkernel.zip
zram is disabled by default but you can enable with trickster mod app
after 24 hours running, the zram kernel looks good, no problem has been found until now.
I added a file to enable the zram : /system/etc/init.d/65zram
#!/system/bin/sh
#
######################
# script made by securecrt
######################
#
#
# resetting zram
echo 1 > /sys/block/zram0/reset
#
# setting zram size to 384 mb
echo 402653184 > /sys/block/zram0/disksize
#
# making zram swapable
mkswap /dev/block/zram0
#
# starting swap on zram
swapon /dev/block/zram0
#
# setting swappiness to 60
#echo 60 > /proc/sys/vm/swappiness
#
# done
#
######################
-
Quote:
Originariamente inviato da
securecrt
after 24 hours running, the zram kernel looks good, no problem has been found until now.
I added a file to enable the zram : /system/etc/init.d/65zram
#!/system/bin/sh
#
######################
# script made by securecrt
######################
#
#
# resetting zram
echo 1 > /sys/block/zram0/reset
#
# setting zram size to 384 mb
echo 402653184 > /sys/block/zram0/disksize
#
# making zram swapable
mkswap /dev/block/zram0
#
# starting swap on zram
swapon /dev/block/zram0
#
# setting swappiness to 60
#echo 60 > /proc/sys/vm/swappiness
#
# done
#
######################
more updates, I have kept the phone running for 55 hours until now, so far it works well, thanks for your great job.
-
1 allegato(i)
Quote:
Originariamente inviato da
securecrt
more updates, I have kept the phone running for 55 hours until now, so far it works well, thanks for your great job.
nice :)
I'm working to update the kernel to 3.4.108 version and (maybe) zram from 3.10 kernel
edit:
done :)
Allegato 148331
now in testing... :D
-
Quote:
Originariamente inviato da
paolothlw8
nice :)
I'm working to update the kernel to 3.4.108 version and (maybe) zram from 3.10 kernel
edit:
done :)
Allegato 148331
now in testing... :D
wow , nice ...... can't wait to test the new kernel...
-
Quote:
Originariamente inviato da
securecrt
wow , nice ...... can't wait to test the new kernel...
check your PM :)
-
release V5 and changelog in first page
-
Hello
I am in v2 version.
If I want go to v5 version, will I lost all the data (phone, sms, appli, ...) and will I must reinstall all ?
Thks
-
no, just do a wipe cache and dalvik cache and flash over
(better if you make a full backup in recovery before doing it all)
-
Thank you Paolo for V5 Release!
You can add to the next release of the automatic call record?
-
Quote:
Originariamente inviato da
brooklyn2006
Thank you Paolo for V5 Release!
You can add to the next release of the automatic call record?
I do not think that the cm12.1 has this feature
-
Hi,
here is my problem with the Roma.
I do not know if this is due to the passage v5 because it seems to me that I had no problems with the v2.
I have a lot of enormously 4g see the same at all.
i still question marks on the network icons, and I have more data connections.
Yet everything is set and everything worked well before.
Best regards
-
Quote:
Originariamente inviato da
Kokireg
Hi,
here is my problem with the Roma.
I do not know if this is due to the passage v5 because it seems to me that I had no problems with the v2.
I have a lot of enormously 4g see the same at all.
i still question marks on the network icons, and I have more data connections.
Yet everything is set and everything worked well before.
Best regards
I can't really understand what you mean, would suggest you to upload some screenshots.
-
1 allegato(i)
Allegato 148512
this is what appears ca me and I have more data.
Occasionally the data not long but almost never work in 4G.
before it worked very well in V2
-
Quote:
Originariamente inviato da
paolothlw8
release V5 and changelog in first page
Wow!!! You are the best, Paolo. ;-) You fixed touch panel!!!!
Testing now.
-
Quote:
Originariamente inviato da
Kokireg
Allegato 148512
this is what appears ca me and I have more data.
Occasionally the data not long but almost never work in 4G.
before it worked very well in V2
umh...try to flash this zip (without wipe) and see if change something
cm12.1_delqcril.zip
-
hello
first thks.
I put your fix but i have no change.
I have no data and sometimes i have data but no LTE.
???
I will have try a full install.
?
-
Quote:
Originariamente inviato da
Kokireg
hello
first thks.
I put your fix but i have no change.
I have no data and sometimes i have data but no LTE.
???
I will have try a full install.
?
you have tried to change the preferred network type ?
yes, you can try with a full wipe but before this you can also try with V4 release
-
yes of course i have tried with different network type but no change.
OK i have tried the V4. Can I put the V4 on V5 for test or i must full install V4.
thks
-
Try to flash over the v5, if still not work reflash with a full wipe
-
I installed the v5 with a full wipe.
The problem are solve I think.
And I have a problem with a watch too (garmin Fenix 3) who function now.
So it's good for the moment.
Thks
Sorry for my language but I m french
-
Quote:
Originariamente inviato da
paolothlw8
Yesterday I encountered the similar issue, My 4G can't work at all , the data only stay in the 2G. But after reboot the phone it works back to normal.
I can't make sure is it the CM problem or the Radio part firmware issues.
-
Quote:
Originariamente inviato da
securecrt
Yesterday I encountered the similar issue, My 4G can't work at all , the data only stay in the 2G. But after reboot the phone it works back to normal.
I can't make sure is it the CM problem or the Radio part firmware issues.
in V5 the network preferred list is again broken (like some versions ago) -.-
I'm working to fix
edit:
V5 fix network preferred list
cm12.1_V5fix_preferrednetwork.zip
-
link and changelog release V6 in first page
-
Thank you very much for your great work! Updating... : *