Skip to content

Commit 1752d58

Browse files
authored
Merge pull request #32 from fa0311/develop-v4
v4.2.2
2 parents b4f6b07 + a810515 commit 1752d58

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DMMGamePlayerFastLauncher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,12 +160,12 @@ def get_dpg5_config(dgp5_path):
160160
verify=False,
161161
proxies=PROXY,
162162
).json()
163-
163+
print(response)
164164
if response["result_code"] == 100:
165165
dmm_args = response["data"]["execute_args"].split(" ")
166166
start_time = time.time()
167167
process = subprocess.Popen(
168-
[game_path, dmm_args[0], dmm_args[1]], shell=True, stdout=subprocess.PIPE
168+
[game_path] + dmm_args, shell=True, stdout=subprocess.PIPE
169169
)
170170
for line in process.stdout:
171171
text = line.decode("utf-8").strip()

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 "4.2.1"
5+
#define MyAppVersion "4.2.2"
66
#define MyAppPublisher "yuki"
77
#define MyAppURL "https://github.com/fa0311/DMMGamePlayerFastLauncher"
88
#define MyAppExeName "DMMGamePlayerFastLauncher.exe"

0 commit comments

Comments
 (0)