From 9edaf030ddaa79a28df3556422712e560754b922 Mon Sep 17 00:00:00 2001 From: Dummerle Date: Mon, 9 Nov 2020 16:46:51 +0100 Subject: [PATCH] Update Readme --- README.md | 19 +++++++++++++++---- Rare/GameWidget.py | 3 +-- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index db20db40..9bee92bc 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,24 @@ Rare is currently considered beta software and in no way feature-complete. You **will** run into issues, so make backups first! -### Disclaimer -I'm in no way experienced in Python or PyQt5 (this project originally was a "Let's learn Python", then became a "Let's learn Qt"), so the code will be messy. If you have suggestions to improve it, please issue a pull request or message me on Discord (CommandMC#7964). - ### Requirements - requests, pillow and pyqt5 installed via PyPI - - Legendary installed somewhere in your $PATH + - Legendary installed via PyPI ### Usage When you run Rare, it'll check if you're currently logged in and walk you through logging in if you aren't. Once you're logged in, it will pull game covers from the "metadata" folder in Legedary's config folder, join logo and background together and then display a list of games you have in your account. Installed games will appear in full color while not installed ones will appear in black and white. + + ### Implemented +- Launch, install and uninstall games +- Authentication(Import from existing installation and via Browser)**(Please test it!)** + +### Todos +- Sync saves +- Settings +- Search Games +- In-app Browser to buy games +- ... + +If you have features you want to have in this app, create an issue on github or build it yourself. Please report bugs(Especially Windows) + diff --git a/Rare/GameWidget.py b/Rare/GameWidget.py index 3501f26e..4325d881 100644 --- a/Rare/GameWidget.py +++ b/Rare/GameWidget.py @@ -148,6 +148,5 @@ class UninstalledGameWidget(QWidget): data = dia.get_data() if data != 0: path = data.get("install_path") - # TODO logger.info(f"install {self.app_name} in path {path}") - legendaryUtils.install(self.app_name) + legendaryUtils.install(self.app_name, path=path)