use futurerestore main for ios 15-, use dev for 16+ only

This commit is contained in:
LukeeGD 2024-12-02 15:18:26 +08:00
parent 09592e510e
commit e6680a39a4

View File

@ -4838,33 +4838,45 @@ restore_futurerestore() {
ExtraArr+=("--set-nonce") ExtraArr+=("--set-nonce")
fi fi
log "futurerestore nightly will be used for this restore: https://github.com/futurerestore/futurerestore" log "futurerestore nightly will be used for this restore: https://github.com/futurerestore/futurerestore"
print "* Builds from here: https://github.com/LukeeGD/futurerestore"
if [[ $platform == "linux" && $platform_arch != "x86_64" ]]; then if [[ $platform == "linux" && $platform_arch != "x86_64" ]]; then
warn "futurerestore nightly is not supported on Linux $platform_arch, cannot continue. x86_64 only." warn "futurerestore nightly is not supported on Linux $platform_arch, cannot continue. x86_64 only."
return return
fi fi
log "Checking for futurerestore updates..." log "Checking for futurerestore updates..."
#local fr_latest="$(curl https://api.github.com/repos/futurerestore/futurerestore/commits | $jq -r '.[0].sha')" #local fr_latest="$(curl https://api.github.com/repos/futurerestore/futurerestore/commits | $jq -r '.[0].sha')"
local fr_latest="1a5317ce543e6f6c583b31e379775e36b0ac0916--" local fr_latest
local fr_current="$(cat ${futurerestore2}_version 2>/dev/null)" local fr_branch
local device_det3=$(echo "$device_target_vers" | cut -c -2)
if (( device_det3 > 15 )); then
fr_latest="21990ed74bff49937de8185d1209d8bace51b18f"
fr_branch="dev"
else
fr_latest="cb5376bfd1b5deba512a80578b15daf47257262b"
fr_branch="main"
fi
local fr_current="$(cat ${futurerestore2}-${fr_branch}_version 2>/dev/null)"
log "futurerestore $fr_branch branch will be used for this restore"
if [[ $fr_latest != "$fr_current" ]]; then if [[ $fr_latest != "$fr_current" ]]; then
log "futurerestore nightly update detected, downloading." log "futurerestore nightly update detected, downloading."
rm $futurerestore2 rm -f ${futurerestore2}-${fr_branch}*
fi fi
if [[ ! -e $futurerestore2 ]]; then if [[ ! -e ${futurerestore2}-${fr_branch} ]]; then
local url="https://github.com/LukeZGD/Legacy-iOS-Kit-Keys/releases/download/jailbreak/" local url="https://github.com/LukeeGD/futurerestore/releases/download/latest/"
local file="futurerestore-" local file="futurerestore-"
case $platform in case $platform in
"macos" ) file+="macOS-RELEASE.zip";; "macos" ) file+="macOS-RELEASE-${fr_branch}.zip";;
"linux" ) file+="Linux-x86_64-RELEASE.zip";; "linux" ) file+="Linux-x86_64-RELEASE-${fr_branch}.zip";;
esac esac
url+="$file" url+="$file"
download_file $url $file download_file $url $file
unzip -q "$file" -d . unzip -q "$file" -d .
tar -xJvf futurerestore*.xz tar -xJvf futurerestore*.xz
mv futurerestore $futurerestore2 mv futurerestore ${futurerestore2}-${fr_branch}
perl -pi -e 's/nightly/nightlo/' $futurerestore2 # disable update check for now since it segfaults #perl -pi -e 's/nightly/nightlo/' $futurerestore2 # disable update check for now since it segfaults
chmod +x $futurerestore2 chmod +x ${futurerestore2}-${fr_branch}
if [[ $platform == "macos" ]]; then if [[ $platform == "macos" ]]; then
: '
ldid="../saved/ldid_${platform}_${platform_arch}" ldid="../saved/ldid_${platform}_${platform_arch}"
if [[ ! -e $ldid ]]; then if [[ ! -e $ldid ]]; then
download_file https://github.com/ProcursusTeam/ldid/releases/download/v2.1.5-procursus7/ldid_macosx_$platform_arch ldid download_file https://github.com/ProcursusTeam/ldid/releases/download/v2.1.5-procursus7/ldid_macosx_$platform_arch ldid
@ -4872,9 +4884,12 @@ restore_futurerestore() {
mv ldid $ldid mv ldid $ldid
fi fi
$ldid -S $futurerestore2 $ldid -S $futurerestore2
'
xattr -cr ${futurerestore2}-${fr_branch}
fi fi
echo "$fr_latest" > ${futurerestore2}_version echo "$fr_latest" > ${futurerestore2}-${fr_branch}_version
fi fi
futurerestore2+="-$fr_branch"
fi fi
# custom arg(s), either --use-pwndfu or --skip-blob, or both # custom arg(s), either --use-pwndfu or --skip-blob, or both
if [[ -n "$1" ]]; then if [[ -n "$1" ]]; then