Skip to content

Commit

Permalink
Add default android config path (#17)
Browse files Browse the repository at this point in the history
* Add default android config path

* Update version

* Update version
  • Loading branch information
i30817 authored Oct 28, 2023
1 parent a6d5093 commit 8265e7b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libretrofuzz/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.4.4"
__version__ = "3.4.5"
2 changes: 2 additions & 0 deletions libretrofuzz/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@
CONFIG = Path(var, "RetroArch", "retroarch.cfg")
elif sys.platform == "darwin":
CONFIG = Path(Path.home(), "Library", "Application Support", "RetroArch", "config", "retroarch.cfg")
elif hasattr(sys, 'getandroidapilevel'):
CONFIG = Path("storage", "emulated", "0", "Android", "data", "com.retroarch.aarch64", "files", "retroarch.cfg")
else:
# all the rest based on linux.
# If they arent based on linux,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "libretrofuzz"
version = "3.4.4"
version = "3.4.5"
description = "Fuzzy Retroarch thumbnail downloader"
authors = ["i30817 <i30817@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 8265e7b

Please sign in to comment.