Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I flashed 40, will post more when I get a chance to check it out. Zoandroid, I think there is a stand alone flash to 39 somewhere in this thread....
**edit** it shows version 40 but still says I need a connection to the server under option 1. Cosmetic Changes.
The script update function (1) doesn't work for me. The first 2 times I tried it nothing happened aside from returning to the main script menu. The third time it hung the terminal app, igmoring the keyboard. Had to reboot. 4th time, still nothing.
Still on script 40.
velocity -update
Ok, I made a silly mistake and had the online variable declared early as 0 (offline) so I fixed that and now it should be kosher. The link to the new one is http://goo.gl/7xoOs it is still not signed, the version is now 41. Please test online content such as cosmetic settings.
If you already have script version 40 test on your phone, please attempt to update through the script menu to version 41. I disabled the auto update checker in the startup function to cut the "boot" time down, so now to check for updates you need to use the script menu. I can reenable the auto update feature if enough people care.
Yeah, I mis-spoke the version 40 has the online var defined as 0 which wont allow the script update through the menu, BUT if you start with
Code:velocity -update
it should force it without an online check
No dice. I tried velocity -update as an initial command. When that failed twice I exited the script menu and typed it into terminal manually. It just goes straight to the script menu. Still on script 40.
script_update()
{
dir_check
wget -O $DownloadDir/update/version $server/version > /dev/null 2>&1
ServerScriptVersion="$(cat $DownloadDir/update/version)"
if [ $SCRIPT_VERSION -lt $ServerScriptVersion ];then
$BB echo "There is a script update available to Version $ServerScriptVersion"
$BB echo "Would you like to update now? (Y/N)"
read input
case "$input" in
'')
no_input
script_update
;;
y|Y)
;;
n|N)
clear
main_menu
;;
esac
$BB echo "Downloading scripts..."
wget -O $DownloadDir/update/velocity $server/velocity > /dev/null 2>&1
sync
$BB cp -R $DownloadDir/update/velocity /system/bin/
SCRIPT_VERSION="$(cat $DownloadDir/update/version)"
sync
$BB chmod 777 /system/bin/velocity
wget -O $DownloadDir/update/changelog $server/changelog > /dev/null 2>&1
sync
clear
cat $DownloadDir/update/changelog
pause
clear
exit 0
else
clear
main_menu
fi
}
-update|update|ud|-ud)
script_update
;;
-force|-forceupdate|force|forceupdate|-fu|fu)
mirrorselect
server="http://$mirror/velocity/scripts"
wget -O $DownloadDir/update/velocity $server/velocity > /dev/null 2>&1
sync
$BB cp -R $DownloadDir/update/velocity /system/bin/
$BB chmod 777 /system/bin/velocity
;;
velocity -fu gave me this:
mirrorselect: not found
cp: can't stat '/sdcard/velocity/update/velocity' : No such file or directory
This is making reference to MY SD card, right? Is there supposed to be something in the velocity/update path, such as another velocity folder or file? If so, the velocity/update folder is empty.
Ok
http://goo.gl/7xoOs
That is a recovery flashable Script Version 41
I tweaked the updater and the mirror selection hardcoding the server to avoid problems.
If anyone has a moment, please flash this, then try updating (I put this same script version up on the server as v42, so it will update although there will not be changes)
If it wont update through the menu, please try invoking velocity -fu in the terminal.
let me know how it goes.
Thats the download cache, if the folder is empty after trying to update it did NOT download the new script, or the version file. The changes I made this morning will hopefully get you back on track
I've gotten updated to v42 of the script, but I can't get the OTA update to Velocity 1.2 to work; the script keeps telling me I've got the latest, which is 1.1. Am I doing something wrong or am I just misunderstanding what's supposed to the happen? Thanks!
AFAIK the ability to get OTA ROM updates has not yet been implemented. They are being provided as flashable zip files you can download to your Ally, then install using recovery and following the typical instructions for flashing a ROM.
Oh OK, then I had in fact misunderstood. Thanks!