diff --git a/data/changelog.txt b/data/changelog.txt index 6a27c36..e42165b 100644 --- a/data/changelog.txt +++ b/data/changelog.txt @@ -1,3 +1,2 @@ -Fixed issue with import/create save not working for some users -I have hundreds of hours invested in this project with over 8,000 lines of code written +Fixed issue with stat editor being unable to acquire stats from some characters If you enjoy the app and want to support future updates, PLEASE donate! Even $1 is appreciated! diff --git a/hexedit.py b/hexedit.py index a279034..81a680d 100644 --- a/hexedit.py +++ b/hexedit.py @@ -498,7 +498,7 @@ def get_stats(file, char_slot): indexes = [] # List to store the indexes of the stats for ind, b in enumerate(slot1): - if ind > 60000: + if ind > 120000: return None try: diff --git a/os_layer.py b/os_layer.py index c493000..55c00bf 100644 --- a/os_layer.py +++ b/os_layer.py @@ -13,8 +13,8 @@ update_dir = "./data/updates/" temp_dir = "./data/temp/" post_update_file = "./data/post.update" -version = "v1.72" -v_num = 1.72 # Used for checking version for update +version = "v1.73" +v_num = 1.73 # Used for checking version for update video_url = "https://youtu.be/LQxmFuq3dfg" custom_search_tutorial_url = "https://youtu.be/li-ZiMXBmRk" background_img = "./data/background.png"