Skip to content

Commit

Permalink
Merge pull request #122 from fa0311/develop-v5
Browse files Browse the repository at this point in the history
update 5.5.1
  • Loading branch information
fa0311 authored Feb 21, 2024
2 parents 2e7b46b + 3154c60 commit 67d7526
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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.5.0"
VERSION = "v5.5.1"
RELEASE_VERSION = requests.get(UrlConfig.RELEASE_API).json().get("tag_name", VERSION)

DEVELOP: bool = os.environ.get("ENV") == "DEVELOP"
Expand Down
4 changes: 2 additions & 2 deletions DMMGamePlayerFastLauncher/static/loder.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def config_migrate():
version = Version(AppConfig.DATA.last_version.get() or "v0.0.0")
logging.info(f"Migration from {version} to {Env.VERSION}")

if version < Version("v5.4.1"):
logging.info("Migration from v5.4.0 to v5.4.1")
if version < Version("v5.5.0"):
logging.info("Migration from v5.5.0 to v5.5.1")
Path(AssetsPathConfig.I18N).joinpath("app.ja.yml").unlink(missing_ok=True)
Path(AssetsPathConfig.I18N).joinpath("app.en.yml").unlink(missing_ok=True)

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.5.0"
#define MyAppVersion "5.5.1"
#define MyAppPublisher "yuki"
#define MyAppURL "https://github.com/fa0311/DMMGamePlayerFastLauncher"
#define MyAppExeName "DMMGamePlayerFastLauncher.exe"
Expand Down

0 comments on commit 67d7526

Please sign in to comment.