Skip to content

Commit 38461bf

Browse files
authored
Merge pull request #177 from fa0311/develop-v6
remove debug code
2 parents 9f4fee3 + 2f2386e commit 38461bf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

DMMGamePlayerFastLauncher/launch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def launch(self, id: str, kill: bool = False, force_non_uac: bool = False):
6868
browser_config = BrowserConfigData.from_path(browser_config_path)
6969
profile_path = DataPathConfig.BROWSER_PROFILE.joinpath(browser_config.profile_name.get()).absolute()
7070
userdata = session.post_dgp(DgpSessionWrap.USER_INFO).json()
71-
if userdata["result_code"] != 100 or True:
71+
if userdata["result_code"] != 100:
7272
res = session.post_dgp(DgpSessionWrap.LOGIN_URL, json={"prompt": ""}).json()
7373
if res["result_code"] != 100:
7474
raise Exception(res["error"])

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.3.0"
11+
VERSION = "v6.3.1"
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.3.0"
5+
#define MyAppVersion "6.3.1"
66
#define MyAppPublisher "yuki"
77
#define MyAppURL "https://github.com/fa0311/DMMGamePlayerFastLauncher"
88
#define MyAppExeName "DMMGamePlayerFastLauncher.exe"

0 commit comments

Comments
 (0)