Compare commits

...

4 Commits

Author SHA1 Message Date
Nex
6d8de5b461 Bumped version 2021-10-23 13:51:44 +02:00
Nex
b0177d6104 Upgraded adb-shell 2021-10-23 13:51:33 +02:00
tek
e0c9a44b10 Merge branch 'main' of github.com:mvt-project/mvt 2021-10-21 21:17:31 +02:00
tek
ef8c1ae895 Adds recent iOS versions 2021-10-21 21:17:09 +02:00
3 changed files with 4 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
import requests
from packaging import version
MVT_VERSION = "1.2.12"
MVT_VERSION = "1.2.13"
def check_for_updates():
res = requests.get("https://pypi.org/pypi/mvt/json")

View File

@@ -224,6 +224,8 @@ IPHONE_IOS_VERSIONS = [
{"build": "18G82", "version": "14.7.1"},
{"build": "18H17", "version": "14.8"},
{"build": "19A346", "version": "15.0"},
{"build": "19A348", "version": "15.0.1"},
{"build": "19A404", "version": "15.0.2"}
]
def get_device_desc_from_id(identifier, devices_list=IPHONE_MODELS):

View File

@@ -26,7 +26,7 @@ requires = (
# iOS dependencies:
"iOSbackup>=0.9.921",
# Android dependencies:
"adb-shell>=0.4.1",
"adb-shell>=0.4.2",
"libusb1>=2.0.1",
)