Skip to content

Commit d339300

Browse files
Merge pull request #505 from GingerAvalanche/master
Fix lack of info.json when installing graphic packs
2 parents d17cff2 + f6aad2f commit d339300

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bcml"
33
authors = ["Caleb Smith"]
4-
version = "3.10.7"
4+
version = "3.10.8"
55
edition = "2021"
66
readme = "docs/README.md"
77

bcml/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_MAJOR=3
22
_MINOR=10
3-
_PATCH="7"
3+
_PATCH="8"
44

55
VERSION = f"{_MAJOR}.{_MINOR}.{_PATCH}"
66
USER_VERSION = f"""{_MAJOR}.{_MINOR}.{_PATCH[0:1]} {

bcml/upgrade.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def convert_old_mods(source: Path = None):
3333

3434

3535
def convert_old_mod(mod: Path, delete_old: bool = False):
36+
rules_to_info(mod / "rules.txt", delete_old=delete_old)
3637
if (mod / "logs").exists():
3738
info = parse_rules(mod / "rules.txt")
3839
convert_old_logs(mod, info["name"])

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,21 @@ build-backend = "maturin"
44

55
[project]
66
name = "bcml"
7-
version = "3.10.7"
7+
version = "3.10.8"
88
description = "A mod manager for The Legend of Zelda: Breath of the Wild"
99
author = "NiceneNerd"
1010
author_email = "[email protected]"
1111
license = { file = "docs/LICENSE.md" }
1212
dependencies = [
1313
"botw-utils~=0.2.3",
14-
"oead~=1.2.4",
14+
"cefpython3~=66.1; platform_system == 'Windows'",
15+
"oead~=1.2.6",
1516
"packaging~=21.3",
1617
"pythonnet~=3.0.1",
1718
"PyQt5; platform_system == 'Linux'",
18-
"pyqtwebengine; platform_system == 'Linux'",
19-
"QtPy; platform_system == 'Linux'",
2019
"pyqtwebengine~=5.15.2; platform_system == 'Linux'",
21-
"cefpython3~=66.1; platform_system == 'Windows'",
2220
"pywebview==3.7.2",
21+
"QtPy; platform_system == 'Linux'",
2322
"requests~=2.27.1",
2423
"rstb>=1.2.2",
2524
"xxhash~=3.2",

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
botw-utils~=0.2.3
2-
oead~=1.2.0
2+
cefpython3~=66.1; platform_system == 'Windows'
3+
oead~=1.2.6
34
packaging~=21.3
45
pythonnet~=3.0.1
56
PyQt5; platform_system == 'Linux'
67
pyqtwebengine; platform_system == 'Linux'
7-
QtPy; platform_system == 'Linux'
8-
cefpython3~=66.1; platform_system == 'Windows'
98
pywebview==3.7.2
9+
QtPy; platform_system == 'Linux'
1010
requests~=2.26.0
1111
rstb>=1.2.2
1212
xxhash~=3.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="bcml",
12-
version="3.10.7",
12+
version="3.10.8",
1313
author="NiceneNerd",
1414
author_email="[email protected]",
1515
description="A mod manager for The Legend of Zelda: Breath of the Wild",

0 commit comments

Comments
 (0)