From e5388d09dba4a079c9eb5076c97c47e0f67151a4 Mon Sep 17 00:00:00 2001 From: Sit Melai Date: Mon, 31 Oct 2022 23:06:07 +0100 Subject: [PATCH] Update README.md --- README.md | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 8adbaf1..d92fd0e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ +# Python version +The script uses basic python3 with no additional 3rd part libraries. The main file is main.py and the only other file it uses is tk_tooltip.py. +To just run the GUI, run: +`python3 main.py` + +## Mac executable +Executable for Mac can be downloaded from https://ryzom.siela1915.com/download/ryzom_log_cleaner_mac.zip (Unzip it and then right-click -> Open the executable to open) + +## +If you want to create a binary for distribution, it seems that pyinstaller is the easiest way. +Just run: + +`pip3 install pyinstaller` +`pyinstaller --onefile --noconsole --clean --log-level=WARN --strip main.py tk_tooltip.py` + + # Gestion des logs Ensemble de scripts bash pour nettoyer les logs clients de Ryzom @@ -69,16 +85,3 @@ Attention ! Il laisse quelques fichiers dans le dossier courant. Gardez les logs ## Crédits et licence Auteur : Zatalyz. Tout est sous licence CC0, c'est de l'assemblage de bons conseils et de tests, rien de transcendant. Plus de détail dans chaque script. - - -## Python version -The script uses basic python3 with no additional 3rd part libraries. The main file is main.py and the only other file it uses is tk_tooltip.py. -To just run the GUI, run: -`python3 main.py` - -### -If you want to create a binary for distribution, it seems that pyinstaller is the easiest way. -Just run: - -`pip3 install pyinstaller` -`pyinstaller --onefile --noconsole --clean --log-level=WARN --strip main.py tk_tooltip.py`