Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Scripts/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from Scripts._build import BUILD

VERSION = "0.2"
VERSION = "0.3"

if getattr(sys, "frozen", False) and hasattr(sys, "_MEIPASS"):
current_dir = Path(sys.executable).parent
Expand Down
4 changes: 3 additions & 1 deletion base.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,9 @@ def build_kext(self):

personality["IOProviderMergeProperties"]["ports"][port_name] = {
"port": binascii.a2b_hex(hexswap(hex(port["index"])[2:].zfill(8))),
"usb-port-number": binascii.a2b_hex(hexswap(hex(port["index"])[2:].zfill(8))),
"UsbConnector": port["type"] or port["guessed"],
"usb-port-type": port["type"] or port["guessed"],
}

if self.settings["add_comments_to_map"] and port["comment"]:
Expand Down Expand Up @@ -695,4 +697,4 @@ def monu(self):

response = menu.start()
self.on_quit()
self.utils.custom_quit()
self.utils.custom_quit()