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

Commit

Permalink
Merge pull request #380 from GingerAvalanche/master
Browse files Browse the repository at this point in the history
texts.py: Reverse language mapping in diff again
  • Loading branch information
GingerAvalanche authored Jul 5, 2022
2 parents 1077bc9 + 55e5045 commit d3eaaef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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.9.16"
version = "3.9.17"
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=9
_PATCH="16"
_PATCH="17"

VERSION = f"{_MAJOR}.{_MINOR}.{_PATCH}"
USER_VERSION = f"""{_MAJOR}.{_MINOR}.{_PATCH[0:1]} {
Expand Down
2 changes: 1 addition & 1 deletion bcml/mergers/texts.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def generate_diff(self, mod_dir: Path, modded_files: List[Union[str, Path]]):
util.vprint(language_map)

language_diffs = {}
for user_lang, mod_lang in language_map.items():
for mod_lang, user_lang in language_map.items():
print(f"Logging text changes for {user_lang}...")
mod_pack = (
mod_dir / util.get_content_path() / "Pack" / f"Bootup_{mod_lang}.pack"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "bcml"
version = "3.9.16"
version = "3.9.17"
description = "A mod manager for The Legend of Zelda: Breath of the Wild"
author = "NiceneNerd"
author_email = "[email protected]"
Expand Down
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.9.16",
version="3.9.17",
author="NiceneNerd",
author_email="[email protected]",
description="A mod manager for The Legend of Zelda: Breath of the Wild",
Expand Down

0 comments on commit d3eaaef

Please sign in to comment.