diff --git a/dist/BrawlTemplateMatcher.exe b/dist/BrawlTemplateMatcher.exe new file mode 100644 index 0000000..9addf89 Binary files /dev/null and b/dist/BrawlTemplateMatcher.exe differ diff --git a/dist/results/Brawlhalla 1vs1 Ranked Stream #350 (Trim)/time_0_2_13.jpg b/dist/results/Brawlhalla 1vs1 Ranked Stream #350 (Trim)/time_0_2_13.jpg new file mode 100644 index 0000000..7f7ef1a Binary files /dev/null and b/dist/results/Brawlhalla 1vs1 Ranked Stream #350 (Trim)/time_0_2_13.jpg differ diff --git a/modules/__pycache__/crop_image.cpython-312.pyc b/modules/__pycache__/crop_image.cpython-312.pyc deleted file mode 100644 index 9c3c597..0000000 Binary files a/modules/__pycache__/crop_image.cpython-312.pyc and /dev/null differ diff --git a/modules/__pycache__/load_images_from_folder.cpython-312.pyc b/modules/__pycache__/load_images_from_folder.cpython-312.pyc deleted file mode 100644 index 3b09087..0000000 Binary files a/modules/__pycache__/load_images_from_folder.cpython-312.pyc and /dev/null differ diff --git a/modules/__pycache__/open_dialog.cpython-312.pyc b/modules/__pycache__/open_dialog.cpython-312.pyc deleted file mode 100644 index 296b430..0000000 Binary files a/modules/__pycache__/open_dialog.cpython-312.pyc and /dev/null differ diff --git a/modules/open_dialog.py b/modules/open_dialog.py index 0a87bd1..1de8cdb 100644 --- a/modules/open_dialog.py +++ b/modules/open_dialog.py @@ -8,7 +8,10 @@ def open_image_dialog(): root.withdraw() # Hide the root window # Open the file dialog - file_path = filedialog.askopenfilename(filetypes=[("Image files", "*.png;")]) + print("Select a template image") + file_path = filedialog.askopenfilename( + title="Select a template image", + filetypes=[("Image files", "*.png;")]) # Close the Tkinter root window root.destroy() @@ -22,7 +25,9 @@ def open_mp4_dialog(): root.withdraw() # Hide the root window # Open the file dialog + print("Select a Brawlhalla 1v1 Ranked VOD") file_path = filedialog.askopenfilename( + title="Select a Brawlhalla 1v1 Ranked VOD", filetypes=[("MP4 files", "*.mp4")] )