Skip to content

Commit

Permalink
Merge pull request #97 from fa0311/develop-v5
Browse files Browse the repository at this point in the history
v5.1.2
  • Loading branch information
fa0311 authored Sep 7, 2023
2 parents 9f826fa + 7f5768c commit a036b6b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion DMMGamePlayerFastLauncher/lib/DGPSessionV2.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,12 @@ def logger(self, res: requests.Response) -> requests.Response:
def lunch(self, product_id: str, game_type: str) -> requests.Response:
if game_type == "GCL":
url = self.LAUNCH_CL
else:
elif game_type == "ACL":
url = self.LAUNCH_CL
elif game_type == "AMAIN":
url = self.LAUNCH_PKG
else:
raise Exception("Unknown game_type: " + game_type + " " + product_id)
json = {
"product_id": product_id,
"game_type": game_type,
Expand Down
2 changes: 1 addition & 1 deletion DMMGamePlayerFastLauncher/static/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class Env(Dump):
VERSION = "v5.1.1"
VERSION = "v5.1.2"
RELEASE_VERSION = requests.get(UrlConfig.RELEASE_API).json().get("tag_name", VERSION)

DEVELOP: bool = os.environ.get("ENV") == "DEVELOP"
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 "5.1.1"
#define MyAppVersion "5.1.2"
#define MyAppPublisher "yuki"
#define MyAppURL "https://github.com/fa0311/DMMGamePlayerFastLauncher"
#define MyAppExeName "DMMGamePlayerFastLauncher.exe"
Expand Down

0 comments on commit a036b6b

Please sign in to comment.