diff --git a/mtk b/mtk index 087de3e..79a2122 100755 --- a/mtk +++ b/mtk @@ -1,10 +1,10 @@ #!/usr/bin/env python3 -# MTK Flash Client (c) B.Kerler 2018-2022. +# MTK Flash Client (c) B.Kerler 2018-2023. # Licensed under GPLv3 License import argparse from mtkclient.Library.mtk_main import Main, metamodes -info = "MTK Flash/Exploit Client V1.6.1 (c) B.Kerler 2018-2023" +info = "MTK Flash/Exploit Client V1.6.2 (c) B.Kerler 2018-2023" cmds = { "printgpt": "Print GPT Table information", diff --git a/mtkclient/Library/daconfig.py b/mtkclient/Library/daconfig.py index 7fdabbf..696359b 100755 --- a/mtkclient/Library/daconfig.py +++ b/mtkclient/Library/daconfig.py @@ -116,7 +116,6 @@ class DAconfig(metaclass=LogBase): self.mtk = mtk self.pathconfig = pathconfig() self.config = self.mtk.config - self.iot = False self.usbwrite = self.mtk.port.usbwrite self.usbread = self.mtk.port.usbread self.flashsize = 0 diff --git a/mtkclient/config/mtk_config.py b/mtkclient/config/mtk_config.py index e4deed9..f41472a 100644 --- a/mtkclient/config/mtk_config.py +++ b/mtkclient/config/mtk_config.py @@ -33,6 +33,7 @@ class Mtk_Config(metaclass=LogBase): self.preloader_filename = None self.payloadfile = None self.loader = None + self.iot = False self.gpt_file = None self.tr = QObject().tr if sys.platform.startswith('darwin'): diff --git a/setup.py b/setup.py index fb13ea3..f45723f 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='mtkclient', - version='1.9', + version='1.6.2', packages=find_packages(), long_description=open("README.md").read(), scripts=['mtk','stage2'],