diff --git a/Cargo.toml b/Cargo.toml index 6b71de6..58768c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bcml" authors = ["Caleb Smith"] -version = "3.10.7" +version = "3.10.8" edition = "2021" readme = "docs/README.md" diff --git a/bcml/__version__.py b/bcml/__version__.py index 26ea405..36eaf9d 100644 --- a/bcml/__version__.py +++ b/bcml/__version__.py @@ -1,6 +1,6 @@ _MAJOR=3 _MINOR=10 -_PATCH="7" +_PATCH="8" VERSION = f"{_MAJOR}.{_MINOR}.{_PATCH}" USER_VERSION = f"""{_MAJOR}.{_MINOR}.{_PATCH[0:1]} { diff --git a/bcml/upgrade.py b/bcml/upgrade.py index 690c5aa..3d83423 100644 --- a/bcml/upgrade.py +++ b/bcml/upgrade.py @@ -33,6 +33,7 @@ def convert_old_mods(source: Path = None): def convert_old_mod(mod: Path, delete_old: bool = False): + rules_to_info(mod / "rules.txt", delete_old=delete_old) if (mod / "logs").exists(): info = parse_rules(mod / "rules.txt") convert_old_logs(mod, info["name"]) diff --git a/pyproject.toml b/pyproject.toml index bd44e19..293bbe4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,22 +4,21 @@ build-backend = "maturin" [project] name = "bcml" -version = "3.10.7" +version = "3.10.8" description = "A mod manager for The Legend of Zelda: Breath of the Wild" author = "NiceneNerd" author_email = "macadamiadaze@gmail.com" license = { file = "docs/LICENSE.md" } dependencies = [ "botw-utils~=0.2.3", - "oead~=1.2.4", + "cefpython3~=66.1; platform_system == 'Windows'", + "oead~=1.2.6", "packaging~=21.3", "pythonnet~=3.0.1", "PyQt5; platform_system == 'Linux'", - "pyqtwebengine; platform_system == 'Linux'", - "QtPy; platform_system == 'Linux'", "pyqtwebengine~=5.15.2; platform_system == 'Linux'", - "cefpython3~=66.1; platform_system == 'Windows'", "pywebview==3.7.2", + "QtPy; platform_system == 'Linux'", "requests~=2.27.1", "rstb>=1.2.2", "xxhash~=3.2", diff --git a/requirements.txt b/requirements.txt index 53c8717..624d8b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,12 @@ botw-utils~=0.2.3 -oead~=1.2.0 +cefpython3~=66.1; platform_system == 'Windows' +oead~=1.2.6 packaging~=21.3 pythonnet~=3.0.1 PyQt5; platform_system == 'Linux' pyqtwebengine; platform_system == 'Linux' -QtPy; platform_system == 'Linux' -cefpython3~=66.1; platform_system == 'Windows' pywebview==3.7.2 +QtPy; platform_system == 'Linux' requests~=2.26.0 rstb>=1.2.2 xxhash~=3.2 diff --git a/setup.py b/setup.py index 9d06063..90abb73 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="bcml", - version="3.10.7", + version="3.10.8", author="NiceneNerd", author_email="macadamiadaze@gmail.com", description="A mod manager for The Legend of Zelda: Breath of the Wild",