Skip to content

Commit

Permalink
return string instead of Path for correct usage later
Browse files Browse the repository at this point in the history
return string instead of Path for correct usage later

update version numbers for new release
  • Loading branch information
n8marti committed Apr 20, 2024
1 parent b41d1ee commit 5c85529
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

- 40.0.0-alpha.5
- 4.0.0-alpha.6
- Hotfix to get correct LOGOS_EXE value after installation [N. Marti]
- 4.0.0-alpha.5
- Fix #19 [N. Marti]
- Fix #64 [N. Marti]
- Fix #77 [N. Marti]
Expand Down
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
L9PACKAGES = None
LEGACY_CONFIG_FILE = os.path.expanduser("~/.config/Logos_on_Linux/Logos_on_Linux.conf") # noqa: E501
LLI_AUTHOR = "Ferion11, John Goodman, T. H. Wright, N. Marti"
LLI_CURRENT_VERSION = "4.0.0-alpha.5"
LLI_CURRENT_VERSION = "4.0.0-alpha.6"
LLI_LATEST_VERSION = None
LLI_TITLE = "Logos Linux Installer"
LOG_LEVEL = logging.WARNING
Expand Down
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ def find_installed_product():
exe = None
for root, _, files in drive_c.walk(follow_symlinks=False):
if root.name == name and f"{name}.exe" in files:
exe = root / f"{name}.exe"
exe = str(root / f"{name}.exe")
break
return exe

Expand Down

0 comments on commit 5c85529

Please sign in to comment.