diff --git a/cyberdrop_dl/__init__.py b/cyberdrop_dl/__init__.py index 7cb8b6eb3..9ec9c0a04 100644 --- a/cyberdrop_dl/__init__.py +++ b/cyberdrop_dl/__init__.py @@ -1 +1 @@ -__version__ = "5.0.46" +__version__ = "5.0.47" diff --git a/cyberdrop_dl/managers/path_manager.py b/cyberdrop_dl/managers/path_manager.py index b64853384..3ead4b359 100644 --- a/cyberdrop_dl/managers/path_manager.py +++ b/cyberdrop_dl/managers/path_manager.py @@ -38,7 +38,7 @@ def __init__(self, manager: 'Manager'): def pre_startup(self): if self.manager.args_manager.appdata_dir: global APP_STORAGE - APP_STORAGE = Path(self.manager.args_manager.appdata_dir) + APP_STORAGE = Path(self.manager.args_manager.appdata_dir) / "AppData" self.cache_dir = APP_STORAGE / "Cache" self.config_dir = APP_STORAGE / "Configs" diff --git a/pyproject.toml b/pyproject.toml index 7b6717b5e..85291b252 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cyberdrop-dl" -version = "5.0.46" +version = "5.0.47" description = "Bulk downloader for multiple file hosts" authors = ["Jules Winnfield "] readme = "README.md"