From 1c4de935b3b7ea79b4752fec1806f5231aea34ba Mon Sep 17 00:00:00 2001 From: SpaghettDev <37266659+SpaghettDev@users.noreply.github.com> Date: Sun, 5 May 2024 09:28:36 -0500 Subject: [PATCH] update version --- BromaIDA.py | 5 ++--- broma_ida/pybroma_installer.py | 2 -- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/BromaIDA.py b/BromaIDA.py index 61402b9..e1a2f78 100644 --- a/BromaIDA.py +++ b/BromaIDA.py @@ -1,4 +1,4 @@ -VERSION = "3.0.0" +VERSION = "3.1.0" __AUTHOR__ = "SpaghettDev" PLUGIN_NAME = "BromaIDA" @@ -17,8 +17,7 @@ install_pybroma() from broma_ida.utils import ( - popup, stop, - get_platform, get_platform_printable + popup, stop, get_platform, get_platform_printable ) from broma_ida.broma.importer import BromaImporter from broma_ida.broma.exporter import BromaExporter diff --git a/broma_ida/pybroma_installer.py b/broma_ida/pybroma_installer.py index 6cdd43a..94a9ca1 100644 --- a/broma_ida/pybroma_installer.py +++ b/broma_ida/pybroma_installer.py @@ -17,7 +17,6 @@ def install_pybroma() -> int: try: si = STARTUPINFO() si.dwFlags |= STARTF_USESHOWWINDOW - #si.wShowWindow = subprocess.SW_HIDE # default ret = call([ "python", "-m", "pip", "show", "pybroma" ], startupinfo=si, stdout=DEVNULL, stderr=STDOUT) @@ -36,7 +35,6 @@ def install_pybroma() -> int: si = STARTUPINFO() si.dwFlags |= STARTF_USESHOWWINDOW - #si.wShowWindow = subprocess.SW_HIDE # default ret = call([ "python", "-m", "pip", "install", "https://github.com/CallocGD/PyBroma/archive/refs/heads/main.zip"