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

Commit d6c997f

Browse files
committed
Update AltServer binary Fix iOS 15 support (x64 only)
1 parent d66bf0e commit d6c997f

File tree

7 files changed

+9
-13
lines changed

7 files changed

+9
-13
lines changed

AltServer-aarch64/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
0.2.7
1+
0.3
22
aarch64

AltServer-armv7/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
0.2.7
1+
0.3
22
armv7

AltServer-x64/AltServer

100644100755
-9.48 MB
Binary file not shown.

AltServer-x64/AltServerDaemon

-55.4 MB
Binary file not shown.

AltServer-x64/run.sh

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ fi
2222
if [[ "stat AltServer | grep -- '-rw-r--r--'" != "" ]] ; then
2323
chmod +x AltServer
2424
fi
25-
if [[ "stat AltServerDaemon | grep -- '-rw-r--r--'" != "" ]] ; then
26-
chmod +x AltServerDaemon
27-
fi
2825

2926
# Version
3027
LocalVersion=$(sed -n 1p version)
@@ -96,7 +93,7 @@ UpdateNotification
9693
echo "Please connect to your device and press Enter to continue"
9794
read key
9895
idevicepair pair > /dev/null
99-
./AltServerDaemon &> /dev/null &
96+
./AltServer &> /dev/null &
10097

10198
RunScript=0
10299
while [ $RunScript = 0 ] ; do
@@ -109,17 +106,17 @@ while [ $RunScript = 0 ] ; do
109106
;;
110107

111108
d|--Restart-Daemon-mode )
112-
killall AltServerDaemon
109+
killall AltServer
113110
for job in `jobs -p`
114111
do
115112
wait $job
116113
done
117114

118115
idevicepair pair
119-
./AltServerDaemon &> /dev/null &
116+
./AltServer &> /dev/null &
120117
;;
121118
e|--Exit )
122-
killall AltServerDaemon
119+
killall AltServer
123120
exit
124121
;;
125122
h|--Help )

AltServer-x64/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
0.2.7
1+
0.3
22
x64

update.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ if [[ $LatestVersion > $LocalVersion ]] ; then
1616
if [[ -e "AltServer" ]]; then
1717
chmod +x AltServer
1818
fi
19-
if [[ -e "AltServerDaemon" ]]; then
20-
chmod +x AltServerDaemon
21-
fi
2219
echo "Done"
2320
cat << EOF
2421
@@ -27,6 +24,8 @@ What updated in version $LatestVersion ?
2724
- None
2825
AltStore:
2926
- Updated to 1.4.9
27+
AltSerevr:
28+
- Fix Support fot iOS 15(currently only x64)
3029
Others:
3130
- GUI edition is now available
3231
if interested,please check https://github.com/powenn/AltServer-LinuxGUI

0 commit comments

Comments
 (0)