Skip to content

Commit

Permalink
Merge pull request #32 from fa0311/develop-v4
Browse files Browse the repository at this point in the history
v4.2.2
  • Loading branch information
fa0311 authored May 28, 2022
2 parents b4f6b07 + a810515 commit 1752d58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DMMGamePlayerFastLauncher.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ def get_dpg5_config(dgp5_path):
verify=False,
proxies=PROXY,
).json()

print(response)
if response["result_code"] == 100:
dmm_args = response["data"]["execute_args"].split(" ")
start_time = time.time()
process = subprocess.Popen(
[game_path, dmm_args[0], dmm_args[1]], shell=True, stdout=subprocess.PIPE
[game_path] + dmm_args, shell=True, stdout=subprocess.PIPE
)
for line in process.stdout:
text = line.decode("utf-8").strip()
Expand Down
2 changes: 1 addition & 1 deletion setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "DMMGamePlayerFastLauncher"
#define MyAppVersion "4.2.1"
#define MyAppVersion "4.2.2"
#define MyAppPublisher "yuki"
#define MyAppURL "https://github.com/fa0311/DMMGamePlayerFastLauncher"
#define MyAppExeName "DMMGamePlayerFastLauncher.exe"
Expand Down

0 comments on commit 1752d58

Please sign in to comment.