Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Fix lack of info.json when installing graphic packs #505

Merged
merged 5 commits into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bcml"
authors = ["Caleb Smith"]
version = "3.10.7"
version = "3.10.8"
edition = "2021"
readme = "docs/README.md"

Expand Down
2 changes: 1 addition & 1 deletion bcml/__version__.py
Original file line number Diff line number Diff line change
@@ -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]} {
Expand Down
1 change: 1 addition & 0 deletions bcml/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down