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

Long-overdue minor fixes #496

Merged
merged 4 commits into from
Jan 29, 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.5"
version = "3.10.6"
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="5"
_PATCH="6"

VERSION = f"{_MAJOR}.{_MINOR}.{_PATCH}"
USER_VERSION = f"""{_MAJOR}.{_MINOR}.{_PATCH[0:1]} {
Expand Down
9 changes: 7 additions & 2 deletions bcml/assets/src/js/Mods.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -385,11 +385,16 @@ class Mods extends React.Component {
<OverlayTrigger
overlay={
<Tooltip>
{"Sort priority:\n" +
{"Current sort priority:\n" +
(this.state.sortReverse
? "highest to lowest"
: "lowest to highest") +
" (Ctrl+O)"}
"\nClick to change to:" +
(this.state.sortReverse
? "lowest to highest"
: "highest to lowest") +
" (Ctrl+O)"
}
</Tooltip>
}>
<Button
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.10.5"
version = "3.10.6"
description = "A mod manager for The Legend of Zelda: Breath of the Wild"
author = "NiceneNerd"
author_email = "macadamiadaze@gmail.com"
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.10.5",
version="3.10.6",
author="NiceneNerd",
author_email="macadamiadaze@gmail.com",
description="A mod manager for The Legend of Zelda: Breath of the Wild",
Expand Down
5 changes: 4 additions & 1 deletion src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,10 @@ impl Settings {
if self.no_cemu {
Some(self.export_dir.clone())
} else {
Some(self.cemu_dir.join("graphicPacks/BreathOfTheWild_BCML"))
#[cfg(target_os = "windows")]
return Some(self.cemu_dir.join("graphicPacks/BreathOfTheWild_BCML"));
#[cfg(target_os = "linux")]
return Some("~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML".into());
}
} else {
Some(self.export_dir_nx.clone())
Expand Down