From dce3affbe01d0fddf9141917574f487e3c92abb0 Mon Sep 17 00:00:00 2001 From: JeanExtreme002 Date: Sat, 2 Dec 2023 02:51:26 -0300 Subject: [PATCH] improved GUI --- PyMemoryEditor/__init__.py | 2 +- PyMemoryEditor/sample/main_application_window.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/PyMemoryEditor/__init__.py b/PyMemoryEditor/__init__.py index 5888725..9ecb955 100644 --- a/PyMemoryEditor/__init__.py +++ b/PyMemoryEditor/__init__.py @@ -8,7 +8,7 @@ """ __author__ = "Jean Loui Bernard Silva de Jesus" -__version__ = "1.5.18" +__version__ = "1.5.19" from .enums import ScanTypesEnum diff --git a/PyMemoryEditor/sample/main_application_window.py b/PyMemoryEditor/sample/main_application_window.py index 738717a..1294769 100644 --- a/PyMemoryEditor/sample/main_application_window.py +++ b/PyMemoryEditor/sample/main_application_window.py @@ -417,6 +417,7 @@ def __start_scan(self, pytype: Type[T], length: int, value: Union[T, Tuple[T, T] Search for a value on the whole memory of the process. """ self.__new_scan_button.config(text="Scanning") + self.__count_label.config(text=f"Found {len(self.__addresses)} addresses.") self.update() self.__finding_addresses = True