Skip to content

Commit

Permalink
Version 1.14.3 (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVG207 authored Aug 16, 2024
2 parents dc2bec6 + 65fc49c commit dd8b481
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 18 deletions.
11 changes: 0 additions & 11 deletions umalauncher/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,17 +310,6 @@ class DefaultSettings(se.NewSettings):
se.SettingType.BOOL,
tab="English Patch"
),
"english_patch_dll": se.Setting(
"Mod DLL Name",
"Change if you encounter issues.",
{
"version.dll": True,
"umpdc.dll": False,
"xinput1_3.dll": False
},
se.SettingType.RADIOBUTTONS,
tab="English Patch"
),
"english_patch_customize_btn": se.Setting(
"Customize Patch",
"Choose what parts of the game should be translated.",
Expand Down
7 changes: 1 addition & 6 deletions umalauncher/umapatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,7 @@ def patch(threader):
exe_path = get_patcher_path(settings)

# Run the patcher
dll_name = "version.dll"
for dll, selected in settings['english_patch_dll'].items():
if selected:
dll_name = dll
break
command = f"\"{exe_path}\" -U -p {dll_name}"
command = f"\"{exe_path}\" -U -p"

run_patcher_and_wait(command, umaserver, "Applying English Patch.")

Expand Down
2 changes: 1 addition & 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.2"
VERSION = "1.14.3"

def parse_version(version_string: str):
"""Convert version string to tuple."""
Expand Down

0 comments on commit dd8b481

Please sign in to comment.