Jump to content

[OLD THREAD SUPPORT ONLY] [ATOMICMOD]


Recommended Posts

Posted (edited)

no v2.0 update today... will be soon though as i have more things to add & problems to fix, dont really have alot of time for it at the moment sad.gif

after being put off by the huawei honors slim screen profile im not going to sell my OMC right now.. (probably after xmas / new year)

Edited by tillaz
Posted

after being put off by the huawei honors slim screen profile im not going to sell my OMC right now.. (probably after xmas / new year)

Yey :D

no v2.0 update today... will be soon though as i have more things to add & problems to fix, dont really have alot of time for it at the moment sad.gif

Awww :(

Posted (edited)

after being put off by the huawei honors slim screen profile im not going to sell my OMC right now.. (probably after xmas / new year)

Great news man,made my day :D

D

Edited by Guest
Posted

For camera issues:

Blue/Purple look: Would you please try disabling Automatic White adjustment and make it Cloudy?

The Cloudy setting produces a yellow/orange tint instead. The other white balance settings either produce the same yellow/orange colouring or the blue/purple look. It's handy having the last photo taken as the link to the gallery because you can look at the actual colouring through the viewfinder and directly compare to the last photo taken. The difference is clear.

Posted

The Cloudy setting produces a yellow/orange tint instead. The other white balance settings either produce the same yellow/orange colouring or the blue/purple look. It's handy having the last photo taken as the link to the gallery because you can look at the actual colouring through the viewfinder and directly compare to the last photo taken. The difference is clear.

Don't judge the preview, just take a picture with cloudy or day light settings and you'll notice the difference. Flash is too strong I guess, that's why we get that cloudy effect bottom...

@Tillaz: Is this what you need from music2.apk?

out.rar

Posted (edited)

@Tillaz: Is this what you need from music2.apk?

out.rar

not quite, but close.. its missing the res/drawable folders

i need to edit res/drawable/progress_horizontal.xml

to


<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<solid android:color="#new_colour_here" />
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<solid android:color="#new_colour_here" />
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<solid android:color="@color/played_text" />
</shape>
</clip>
</item>
</layer-list>
<?xml version="1.0" encoding="utf-8"?>

using apk multi tool decompiles it but with errors & wont build it sad.gif

Edited by tillaz
Posted (edited)

Don't judge the preview, just take a picture with cloudy or day light settings and you'll notice the difference. Flash is too strong I guess, that's why we get that cloudy effect bottom...

I wasn't judging a preview - I took actual photos at all the white balance settings and all produce either the yellow/orange or blue/purple hue. The view through the viewfinder looks normal of course and all I meant was that you can compare that to the last photo taken which appears in the top right of the screen. i.e. after you click to take the picture, that actual photo then appears top right and you can compare to what you are currently seeing in the viewfinder. The differences are clearly visible at all white balance settings.

Edited by Nozz
Posted (edited)

Does anyone else have this?

All my pictures are crisp with no colour distortion.But with the flash,it is hit and miss,sometimes come out good,others,the picture is completely messed up.I found that if a photo is to be taken with flash,setting white balance to daylight puts some color back in the photos.

Edited by Guest
Posted

not quite, but close.. its missing the res/drawable folders

i need to edit res/drawable/progress_horizontal.xml

to

<?xml version="1.0" encoding="utf-8"?>

<layer-list

  xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:id="@android:id/background">

        <shape>

            <solid android:color="#new_colour_here" />

        </shape>

    </item>

    <item android:id="@android:id/secondaryProgress">

        <clip>

            <shape>

                <solid android:color="#new_colour_here" />

            </shape>

        </clip>

    </item>

    <item android:id="@android:id/progress">

        <clip>

            <shape>

                <solid android:color="@color/played_text" />

            </shape>

        </clip>

    </item>

</layer-list>

using apk multi tool decompiles it but with errors & wont build it sad.gif

Is this what you need?

Music2.rar

Only gave me 2 errors about 9.png files when decompiling.

Posted (edited)

Is this what you need?

Music2.rar

Only gave me 2 errors about 9.png files when decompiling.

yep, but will it compile for you ?

its res/drawable/ manage_music_progressbar.xml that needs edited

to


<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<solid android:color="#33808080" />
</shape>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<solid android:color="#ff24ff19" />
</shape>
</clip>
</item>
</layer-list>
<?xml version="1.0" encoding="utf-8"?>





& res/values/ colors.xml 



to




<resources>
<color name="appwidget_text">#ffffffff</color>
<color name="played_text">#ff24ff19</color>
<color name="flash_to_when_paused_text">#bfffffff</color>
<color name="action_bar_selected_bg">#9924ff19</color>
<color name="current_text">#bfffffff</color>
<color name="error_text">#fff5ab00</color>
<color name="secondary_text">#bfffffff</color>
<color name="tertiary_text">#7fffffff</color>
<color name="dim_foreground_dark">#ffbebebe</color>
<color name="dim_foreground_dark_disabled">#80bebebe</color>
<color name="dim_foreground_dark_inverse">#ff323232</color>
<color name="dim_foreground_dark_inverse_disabled">#80323232</color>
<color name="transparent">#00000000</color>
<color name="manage_music_color">#ff99cc00</color>
<color name="search_list_header_background">#20808080</color>
<color name="tutorial_top_bar_background">#80000000</color>
<color name="tutorial_bottom_bar_background">#ff808080</color>
<color name="alert_color">#fff5ab00</color>
<color name="carousel_background">#ff1a1a4d</color>
<color name="now_playing_lines">#3f808080</color>
<color name="now_playing_label_color">#80ffffff</color>
<color name="now_playing_album_artist_color">#bfffffff</color>
<color name="now_playing_track_color">#ffffffff</color>
<item type="color" name="APKTOOL_DUMMY_0017">false</item>
</resources>
<?xml version="1.0" encoding="utf-8"?>

the red code has been edited, so if this woz compiled it would change things green

Edited by tillaz
Guest Atomix86
Posted

Does this ROM suffer from CM7's proximity sensor issue? If it doesn't, I'll download it.

Posted

Does this ROM suffer from CM7's proximity sensor issue? If it doesn't, I'll download it.

For major users it doesn't, but some had this issue which can be fixed by flashing ZTE's dialer add-on and dialing *983*0# and calibrating the sensor yourself.

Posted (edited)

Does this ROM suffer from CM7's proximity sensor issue? If it doesn't, I'll download it.

yes for everyone in v2.0 witch will be up very soon

edit: lol yes it should have said not no laugh.gif

Edited by tillaz
Posted (edited)

this problem with the Bluetooth has got me puzzled blink.gif

iv fixed it completely... send & receive files, BUT i wanted to know the exact cause of the problem...

and weird enough the cause of it is removing the stock music.apk...huh.gif

i have no idea why this is but it's 100% what causes the problem.. so music 4.0.9 is removed until i figger this out.

so in the meantime adding the stock music.apk & removing music2.apk should fix the Bluetooth (strange, i know lol)

link for stock music.apk > http://minus.com/mjaT2s49J#1

Edited by tillaz
Posted

this problem with the Bluetooth has got me puzzled blink.gif

iv fixed it completely... send & receive files BUT i wanted to know the exact cause of the problem...

and weird enough the cause of it is removing the stock music.apk...huh.gif

i have no idea why this is but it's100% what causes the problem.. so music 4.0.9 is removed until i figger this out.

so in the meantime adding the stock music.apk & removing music2.apk should fix the Bluetooth (strange i know, lol)

Did you try renaming music2.apk to music.apk? :)

Posted (edited)

this problem with the Bluetooth has got me puzzled blink.gif

That is very strange.I wonder is there a bluetooth sharing feature in the music app ?

Edited by Guest
Posted

Did you try renaming music2.apk to music.apk? :)

even with out music2.apk installed if you remove the stock musc.apk it brakes the Bluetooth file receiving, although sending still works lol

Posted

even with out music2.apk installed if you remove the stock musc.apk it brakes the Bluetooth file receiving, although sending still works lol

Can't you place both and "freeze" stock one?

Posted

Can't you place both and "freeze" stock one?

not sure, im going to try a couple of things as i don't want to lose music 4.0.9 sad.gif

Posted (edited)

@tillaz,will you be adding the updated ics launcher,should be released tomorrow.

Just reading what IntelSoftApps been saying,and this next update gonna be very good.

Edited by Guest
Guest pablitobm88
Posted (edited)

How will the new update?

I like very much your rom

Tranks for your work and sorry for my English

Edited by pablitobm88
Guest mike williams
Posted

I'm having trouble trying to buy from the market (those 10p offers) - I get "An error occurred. Please try later".

This updated v3.4.4 hasn't cured the problem.

It works fine on my blade.

Odd.

Posted

I'm having trouble trying to buy from the market (those 10p offers) - I get "An error occurred. Please try later".

This updated v3.4.4 hasn't cured the problem.

It works fine on my blade.

Odd.

Yeah I had that a few times.

Just clear market data in manage apps and reboot,usually sorts it.

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.