This repository was archived by the owner on Sep 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-6
lines changed
Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ SaveAcccount() {
8383}
8484
8585# Start Script Main
86- idevicepair pair
8786RunScriptMain=0
8887while [ $RunScriptMain = 0 ] ; do
8988cat << EOF
Original file line number Diff line number Diff line change @@ -21,9 +21,8 @@ if [[ $LatestVersion > $LocalVersion ]] ; then
2121
2222What updated in version $LatestVersion ?
2323 Script:
24- - AltSerevrDaemon is no longer needed,you can delete it
25- - Fixed 24 characters UDID issue
2624 - support wifi refresh (only x64 currently)
25+ - x64 version have several modification , deleted 'd' option and added 'w' and 't'
2726 AltStore:
2827 - Updated to 1.4.9
2928 AltSerevr:
Original file line number Diff line number Diff line change @@ -48,8 +48,10 @@ OPTIONS
4848
4949 i, --Install AltStore or ipa files
5050 Install AltStore or ipa files to your device
51- d, --Restart Daemon mode
52- Restart Daemon mode to refresh apps or AltStore
51+ w, --Switch to wifi Daemode mode (Default using it after launch)
52+ Switch and restart to wifi Daemode mode to refresh apps or AltStore
53+ t, --Switch to usb tethered Daemode mode
54+ Switch and restart to usb tethered Daemode mode to refresh apps or AltStore
5355 e, --Exit
5456 Exit script
5557 h, --Help
@@ -111,13 +113,24 @@ while [ $RunScript = 0 ] ; do
111113 i|--Install-AltStore-or-ipa-files )
112114 ./main
113115 ;;
114- d |--Restart-Daemon -mode )
116+ w |--Switch-to-wifi-Daemode -mode )
115117 killall AltServer
118+ sudo killall netmuxd
116119 for job in ` jobs -p`
117120 do
118121 wait $job
119122 done
120123
124+ sudo -b -S ./netmuxd
125+ ./AltServer & > /dev/null &
126+ ;;
127+ t|--Switch-to-usb-tethered-Daemode-mode )
128+ killall AltServer
129+ sudo killall netmuxd
130+ for job in ` jobs -p`
131+ do
132+ wait $job
133+ done
121134 ./AltServer & > /dev/null &
122135 ;;
123136 e|--Exit )
You can’t perform that action at this time.
0 commit comments