From 27db5047183064a77e20acd217728ae97ed8891c Mon Sep 17 00:00:00 2001 From: Vincent Zeng Date: Thu, 22 Mar 2018 23:16:45 -0400 Subject: [PATCH] tweaking update text --- ttbp/config/__init__.py | 9 ++++++--- ttbp/ttbp.py | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ttbp/config/__init__.py b/ttbp/config/__init__.py index ee66099..e4d0e41 100644 --- a/ttbp/config/__init__.py +++ b/ttbp/config/__init__.py @@ -220,12 +220,15 @@ version 0.9.3 features: ttbp) each of these tools has expanded descriptions and instructions from the - menu, so check them out if you're curious! all of the data management - actions have confirmation actions, so it's easy to cancel if you + menu, so check them out if you're curious! all of the irreversibl data + management actions have confirmation actions, so it's easy to cancel if you accidentally access a tool. also, i've updated the documentation file to reflect recent feature changes, - including some more details about how things work under the hood. + including some more details about how things work under the hood, and some + clarifications on how existing features work. please give it a read through + if you have a chance, and let me know if there's anything else i can + improve! lastly, i just wanted to mention that i do accept tips for my dev work at https://liberapay.com/modgethanc/, but please don't feel pressured to donate diff --git a/ttbp/ttbp.py b/ttbp/ttbp.py index 2c13d88..9940785 100644 --- a/ttbp/ttbp.py +++ b/ttbp/ttbp.py @@ -567,7 +567,7 @@ def main_menu(): redraw() show_credits() elif choice == '8': - subprocess.call(["lynx", os.path.join(config.INSTALL_PATH, "..", "README.html")]) + subprocess.call(["lynx", os.path.join(config.INSTALL_PATH, "..", "doc", "manual.html")]) redraw() elif choice in QUITS: return stop()