Skip to content

Commit

Permalink
Update requirements.txt as well as some bugs introduced by that
Browse files Browse the repository at this point in the history
Also pseudo-merge PR #35
  • Loading branch information
nythepegasus committed Aug 17, 2024
1 parent 7afdc51 commit 79473b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions SideJITServer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import atexit
import asyncio
import click
import socket
import logging
Expand Down Expand Up @@ -120,7 +121,7 @@ def refresh_devs():
devs = []
for dev in get_tunneld_devices():
try:
auto_mount_personalized(dev)
asyncio.run(auto_mount_personalized(dev))
except AlreadyMountedError:
pass
devs.append(Device(dev, dev.name, dev.udid, []).refresh_apps())
Expand Down Expand Up @@ -170,7 +171,7 @@ def enable_jit_for_app(device, name):

def start_tunneld_proc():
TunneldRunner.create(TUNNELD_DEFAULT_ADDRESS[0], TUNNELD_DEFAULT_ADDRESS[1],
protocol=TunnelProtocol('quic'), usb_monitor=True, wifi_monitor=True)
protocol=TunnelProtocol('quic'), mobdev2_monitor=True, usb_monitor=True, wifi_monitor=True, usbmux_monitor=True)

def prompt_device_list(device_list: list):
device_question = [inquirer3.List('device', message='choose device', choices=device_list, carousel=True)]
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pymobiledevice3>=4.2.3,<4.3.0
pymobiledevice3>=3.4.0
pymobiledevice3>=4.11.20,<5.0.0
Flask==3.0.2
zeroconf==0.132.2

0 comments on commit 79473b6

Please sign in to comment.