Page 4 of 14 FirstFirst 12345678910111213 ... LastLast
Results 46 to 60 of 205
  1. #46
    offline So I Hear You Can Mod
    Join Date
    Feb 2007
    Posts
    119
    Thanks
    10
    Thanked 14 Times in 8 Posts
    Downloads
    13
    Uploads
    0
    Great wok , quick question tho

    Mankind had implement the use of the camera button and the volume up and down instead of the dpad , I kinda hate it sometime you press on it to go down and it does the 'enter' function instead that can be tricky especially in recovery mode.. volume up and down ( for up and down) and camera key as enter was the perfect work around for this any reason you put this aside in your builds ?

  2. #47
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,244
    Thanks
    1,881
    Thanked 3,138 Times in 1,338 Posts
    Downloads
    28
    Uploads
    29
    Originally I wanted to have it controlled like the stock recovery (camera button does nothing) but several d-pad click made me return it back. Also "enter" key does the "enter" function.

    Thanks Semseddin for the signature and avatar.

  3. #48
    offline So I Hear You Can Mod
    Join Date
    Feb 2007
    Posts
    119
    Thanks
    10
    Thanked 14 Times in 8 Posts
    Downloads
    13
    Uploads
    0
    Quote Originally Posted by Skrilax_CZ View Post
    Originally I wanted to have it controlled like the stock recovery (camera button does nothing) but several d-pad click made me return it back. Also "enter" key does the "enter" function.
    Well my main question was any reason you removed that function ( that I personally enjoyed )

    btw the issue is not hitting enter the issue is going down or up with the dpad and it does 'enter' instead ...

  4. #49
    offline Itty Bitty Modder
    Join Date
    May 2010
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Downloads
    4
    Uploads
    0
    how to list files and display them? if the amount of files is larger than the size of the screen

  5. #50
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,244
    Thanks
    1,881
    Thanked 3,138 Times in 1,338 Posts
    Downloads
    28
    Uploads
    29
    Scrollbars ain't implemented. Don't really think that it is needed, as for gui file explorer if you have adb.

    Thanks Semseddin for the signature and avatar.

  6. #51
    offline Itty Bitty Modder
    Join Date
    May 2010
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Downloads
    4
    Uploads
    0
    I use these lines to list .apk in a folder

    if [ -d /sdcard/OpenRecovery/apk ]
    then
    cd /sdcard/OpenRecovery/apk
    for dirs in $( ls -c . )
    do
    echo "$dirs:shell:installapk.sh $dirs" >> "$MENU_FILE"
    done
    fi

    and installapk.sh is:

    #!/sbin/sh

    APK="/sdcard/OpenRecovery/apk"
    SYSAPP="/system/app"

    echo "Instalando"$1"..."
    busybox cp -f "${APK**/$1" "${SYSAPP**/$1"
    but if the amount of apk are many on the screen are not

  7. #52
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,244
    Thanks
    1,881
    Thanked 3,138 Times in 1,338 Posts
    Downloads
    28
    Uploads
    29
    Why at all are you installing apps to the system and from recovery? You can install them normally (there is an Apk manager application for it).

    Thanks Semseddin for the signature and avatar.

  8. The Following User Says Thank You to Skrilax_CZ For This Useful Post:

    pjcons (10-25-2010)

  9. #53
    offline So I Hear You Can Mod
    Join Date
    Feb 2007
    Posts
    119
    Thanks
    10
    Thanked 14 Times in 8 Posts
    Downloads
    13
    Uploads
    0
    Quote Originally Posted by Skrilax_CZ View Post
    Originally I wanted to have it controlled like the stock recovery (camera button does nothing) but several d-pad click made me return it back. Also "enter" key does the "enter" function.

    btw just to make my self clear .. by enter I meant 'center to select' function , and the enter button doesnt work for that ..

    I do wanna clear htings out as it was my mistake it seem you havent removed thse function ( silly me ) time for a smilie :

  10. #54
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,244
    Thanks
    1,881
    Thanked 3,138 Times in 1,338 Posts
    Downloads
    28
    Uploads
    29
    The d-pad center always was set to to 'select' function.

    Thanks Semseddin for the signature and avatar.

  11. #55
    offline Itty Bitty Modder
    Join Date
    May 2010
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Downloads
    8
    Uploads
    0
    hi,
    using the 1.14 and having a issue: the led blinks in RED.
    another Q: is possible to show the menus in blue (like stock) instead of red?
    thx, great work!

    whats the difference btw bash enable colors and disable?
    another. when i show a menu and i return to the previous, the echoes for the shells is showed one moment. dont like...
    Last edited by bartito; 06-11-2010 at 02:58 PM. Reason: Automerged Doublepost

  12. #56
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,244
    Thanks
    1,881
    Thanked 3,138 Times in 1,338 Posts
    Downloads
    28
    Uploads
    29
    The red UI is hardcoded atm. and I changed the LED back to red with the RED UI. But yeah to support more variations (to be read on switch) is quite simple to implement.

    Bash colour setting is due to windows cmd not being able to handle the ANSI colours. And the echoes between menu changes are unchangeable (since a script is run in that case), will fix that later.
    Last edited by Skrilax_CZ; 06-11-2010 at 03:57 PM.

    Thanks Semseddin for the signature and avatar.

  13. #57
    offline Itty Bitty Modder
    Join Date
    May 2010
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Downloads
    4
    Uploads
    0
    Quote Originally Posted by Skrilax_CZ View Post
    Why at all are you installing apps to the system and from recovery? You can install them normally (there is an Apk manager application for it).


    I am doing a recovery with several more options and wanted to include this option...

  14. #58
    offline Maybe Modder
    Join Date
    Jan 2008
    Posts
    22
    Thanks
    2
    Thanked 0 Times in 0 Posts
    Downloads
    5
    Uploads
    0
    i was wondering if you could implement the option to install busybox as well =DDDD greatly appreciated and thanks

    PS: can you clarify (in noob language) what the BASH colour settings do?
    Also if you can change the LED lights, would it be possible to fix the LED notifications on the rooted android to work properly? Or to change them. (Ex. change LED colour for text messages to blue and red for emails etc)
    Last edited by antonyfl; 06-14-2010 at 02:41 AM.

  15. #59
    offline So I Hear You Can Mod
    Join Date
    Feb 2007
    Posts
    119
    Thanks
    10
    Thanked 14 Times in 8 Posts
    Downloads
    13
    Uploads
    0
    Quote Originally Posted by antonyfl View Post
    i was wondering if you could implement the option to install busybox as well =DDDD greatly appreciated and thanks

    PS: can you clarify (in noob language) what the BASH colour settings do?
    Also if you can change the LED lights, would it be possible to fix the LED notifications on the rooted android to work properly? Or to change them. (Ex. change LED colour for text messages to blue and red for emails etc)

    lmf script does that and its based on this recovery ,

    there is an app in the market to change the led color notifications ...

  16. #60
    offline Maybe Modder
    Join Date
    Jan 2008
    Posts
    22
    Thanks
    2
    Thanked 0 Times in 0 Posts
    Downloads
    5
    Uploads
    0
    Quote Originally Posted by DAGr8 View Post
    lmf script does that and its based on this recovery ,

    there is an app in the market to change the led color notifications ...
    Those types of apps are reported as unfunctional in 2.1
    (For example an app called Missed Call)

LinkBacks (?)

  1. 10-11-2010, 02:59 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •