Skip to content
This repository was archived by the owner on Sep 7, 2023. It is now read-only.

Commit b26ae00

Browse files
committed
updating x64 wifi refresh support
1 parent a6d704b commit b26ae00

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

main

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ SaveAcccount() {
8383
}
8484

8585
# Start Script Main
86-
idevicepair pair
8786
RunScriptMain=0
8887
while [ $RunScriptMain = 0 ] ; do
8988
cat << EOF

update.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ if [[ $LatestVersion > $LocalVersion ]] ; then
2121
2222
What 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:

x64-run.sh

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff 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 )

0 commit comments

Comments
 (0)