Skip to content

Commit

Permalink
Version 1.14.4 (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVG207 authored Aug 16, 2024
2 parents dd8b481 + a2246d2 commit 8dee905
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion umalauncher/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import gui
import glob

VERSION = "1.14.3"
VERSION = "1.14.4"

def parse_version(version_string: str):
"""Convert version string to tuple."""
Expand Down Expand Up @@ -103,6 +103,11 @@ def upgrade(umasettings, raw_settings):
shutil.move(rel_path, util.get_appdata(path))

logger.info("Moving complete.")

if settings_version <= (1, 14, 3):
patcher_exe = util.get_appdata("CarotenePatcher.exe")
if os.path.exists(patcher_exe):
os.remove(patcher_exe)

# If upgraded at all
if script_version > settings_version:
Expand Down

0 comments on commit 8dee905

Please sign in to comment.