Skip to content

Commit 33825c3

Browse files
authored
Merge pull request #169 from fa0311/develop-v6
fix
2 parents 3ad130d + ce23d36 commit 33825c3

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

DMMGamePlayerFastLauncher/launch.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,8 @@ def launch(self, id: str, kill: bool = False, force_non_uac: bool = False):
121121
else:
122122
process = ProcessManager.run([game_path] + dmm_args, cwd=str(game_file))
123123
if data.external_tool_path.get() != "":
124-
external_tool_pid_manager = ProcessIdManager()
125-
ProcessManager.run([data.external_tool_path.get()], cwd=str(game_file))
126-
external_tool_pid = external_tool_pid_manager.new_process().search_or_none(data.external_tool_path.get())
124+
external_tool_process = ProcessManager.run([data.external_tool_path.get()], cwd=str(game_file))
125+
external_tool_pid = external_tool_process.pid
127126
if data.rich_presence.get():
128127
start_rich_presence(process.pid, data.product_id.get(), response["data"]["title"])
129128
assert process.stdout is not None

DMMGamePlayerFastLauncher/static/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class Env(Dump):
11-
VERSION = "v6.2.1"
11+
VERSION = "v6.2.2"
1212
RELEASE_VERSION = requests.get(UrlConfig.RELEASE_API).json().get("tag_name", VERSION)
1313

1414
DEVELOP: bool = os.environ.get("ENV") == "DEVELOP"

setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "DMMGamePlayerFastLauncher"
5-
#define MyAppVersion "6.2.1"
5+
#define MyAppVersion "6.2.2"
66
#define MyAppPublisher "yuki"
77
#define MyAppURL "https://github.com/fa0311/DMMGamePlayerFastLauncher"
88
#define MyAppExeName "DMMGamePlayerFastLauncher.exe"

0 commit comments

Comments
 (0)