Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaghettDev committed May 5, 2024
1 parent 0724183 commit 1c4de93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 2 additions & 3 deletions BromaIDA.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "3.0.0"
VERSION = "3.1.0"
__AUTHOR__ = "SpaghettDev"

PLUGIN_NAME = "BromaIDA"
Expand All @@ -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
Expand Down
2 changes: 0 additions & 2 deletions broma_ida/pybroma_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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"
Expand Down

0 comments on commit 1c4de93

Please sign in to comment.