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() {
83
83
}
84
84
85
85
# Start Script Main
86
- idevicepair pair
87
86
RunScriptMain=0
88
87
while [ $RunScriptMain = 0 ] ; do
89
88
cat << EOF
Original file line number Diff line number Diff line change @@ -21,9 +21,8 @@ if [[ $LatestVersion > $LocalVersion ]] ; then
21
21
22
22
What updated in version $LatestVersion ?
23
23
Script:
24
- - AltSerevrDaemon is no longer needed,you can delete it
25
- - Fixed 24 characters UDID issue
26
24
- support wifi refresh (only x64 currently)
25
+ - x64 version have several modification , deleted 'd' option and added 'w' and 't'
27
26
AltStore:
28
27
- Updated to 1.4.9
29
28
AltSerevr:
Original file line number Diff line number Diff line change @@ -48,8 +48,10 @@ OPTIONS
48
48
49
49
i, --Install AltStore or ipa files
50
50
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
53
55
e, --Exit
54
56
Exit script
55
57
h, --Help
@@ -111,13 +113,24 @@ while [ $RunScript = 0 ] ; do
111
113
i|--Install-AltStore-or-ipa-files )
112
114
./main
113
115
;;
114
- d |--Restart-Daemon -mode )
116
+ w |--Switch-to-wifi-Daemode -mode )
115
117
killall AltServer
118
+ sudo killall netmuxd
116
119
for job in ` jobs -p`
117
120
do
118
121
wait $job
119
122
done
120
123
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
121
134
./AltServer & > /dev/null &
122
135
;;
123
136
e|--Exit )
You can’t perform that action at this time.
0 commit comments