-FuFu-
Ikone
- 3.296
- Themenstarter
- #181
sollte eigentlich ohne Probleme funktionieren, da ich in der OR immer die updates auf die sdcard schiebe und meine nandroids auf den PC ziehe
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion erfordert derzeit den Zugriff auf die Seite über den integrierten Safari-Browser.
Ich probiers mal aus. Ist es egal wohin ich die Apps kopiere?OwnApp -- copy own apps to /system/app or /data/app
In the Textbased Menu some thinks moved to clear the Main Menu:
wipe Menu moved into Nandroid Menu
Apply Update Custom Path, USB Mass Storage Mode and Filemanager moved into a new Menu called File Menu
WIPE_MENU_FILE=/menu/wipe.menu
echo "Wipe Menu" > "$WIPE_MENU_FILE"
echo "Go Back:menu:nand.menu" >> "$WIPE_MENU_FILE"
echo "Show Free Space:shell:freespace.sh" >> "$WIPE_MENU_FILE"
echo "Wipe Options:break:*" >> "$WIPE_MENU_FILE"
echo "Wipe Dalvik Cache:shell:wipe_dalvik_cache.sh" >> "$WIPE_MENU_FILE"
echo "Wipe Data / Factory Reset:wipe_data:*" >> "$WIPE_MENU_FILE"
echo "Wipe Cache Partition:wipe_cache:*" >> "$WIPE_MENU_FILE"
echo "Wipe ext Partition:shell:wipe_ext2.sh" >> "$WIPE_MENU_FILE"
##############################################################
#### 8. Wipe Menu
####
menubox(
#-- Title
"Wipe Menu",
#-- Sub Title
"<~wipe.stitel>",
#-- Icon
"@alert",
#-- Will be saved in /tmp/aroma/demo.prop
"wipe_menu.prop",
"Dalvik-Cache", "<~wipe.idalvik>", "@default", #-- selected = 1
"Cache Partition", "<~wipe.icache>", "@default", #-- selected = 2
"Factory Reset", "<~wipe.ifactory>", "@default", #-- selected = 3
"SD-EXT", "<~wipe.iext>", "@default", #-- selected = 4
"<~wipe.sd>", "<~wipe.isd>", "@default" #-- selected = 5
);
if prop("wipe_menu.prop","selected")=="1" then
if
confirm(
#-- Title
"<~main.confirm>",
#-- Text
"<~wipe.dalconfi>",
#-- Icon (Optional)
"@alert"
)=="yes"
then
pleasewait("<~wipe.dalprocc>");
resexec("scripts/wipe-dcache.sh");
alert( "<~wipe.dalfin>", "<~nandroid.backup.ifin>", "@info" );
back("1");
else
back("1");
endif;
endif;
if prop("wipe_menu.prop","selected")=="2" then
if
confirm(
#-- Title
"<~main.confirm>",
#-- Text
"<~wipe.caconfi>",
#-- Icon (Optional)
"@alert"
)=="yes"
then
pleasewait("<~wipe.caprocc>");
resexec("scripts/wipe-cache.sh");
alert( "<~wipe.cafin>", "<~nandroid.backup.ifin>", "@info" );
back("1");
else
back("1");
endif;
endif;
if prop("wipe_menu.prop","selected")=="3" then
if
confirm(
#-- Title
"<~main.confirm>",
#-- Text
"<~wipe.faconfi>",
#-- Icon (Optional)
"@alert"
)=="yes"
then
pleasewait("<~wipe.faprocc>");
resexec("scripts/wipe-full.sh");
alert( "Factory Reset", "<~wipe.fafin>", "@info" );
back("1");
else
back("1");
endif;
endif;
if prop("wipe_menu.prop","selected")=="4" then
if
confirm(
#-- Title
"<~main.confirm>",
#-- Text
"<~wipe.extconfi>",
#-- Icon (Optional)
"@alert"
)=="yes"
then
pleasewait("<~wipe.extprocc>");
resexec("scripts/wipe-ext.sh");
alert( "EXT Wipe", "<~wipe.extfin>", "@info" );
back("1");
else
back("1");
endif;
endif;
if prop("wipe_menu.prop","selected")=="5" then
if
confirm(
#-- Title
"<~main.confirm>",
#-- Text
"<~wipe.sdconfi>",
#-- Icon (Optional)
"@alert"
)=="yes"
then
pleasewait("<~wipe.sdprocc>");
resexec("scripts/wipe-sd.sh");
alert( "<~nandroid.backup.sdcard>", "<~wipe.sdfin>", "@info" );
back("1");
else
back("1");
endif;
endif;
endif;