From 36e11027207c573791a2172cfe390b3f3f9c2fde Mon Sep 17 00:00:00 2001 From: endorphant Date: Sun, 15 May 2016 00:37:43 -0400 Subject: [PATCH] increment to 0.7.5 added beta option, which includes rainbow menus --- bin/_ttbp.py | 2 ++ bin/config/banner.txt | 2 +- bin/ttbp.py | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/_ttbp.py b/bin/_ttbp.py index 3274178..596c92c 100644 --- a/bin/_ttbp.py +++ b/bin/_ttbp.py @@ -239,10 +239,12 @@ def print_menu(menu): i = 0 for x in menu: line = [] + line.append(util.attach_rainbow()) line.append("\t[ ") if i < 10: line.append(" ") line.append(str(i)+" ] "+x) + line.append(util.attach_reset()) print("".join(line)) i += 1 diff --git a/bin/config/banner.txt b/bin/config/banner.txt index 8cf63e5..2504681 100644 --- a/bin/config/banner.txt +++ b/bin/config/banner.txt @@ -5,6 +5,6 @@ | |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ | | | |___ |___ |___ ___] |___ | \| |__] | | \| |___ | | | -| ver 0.7.0 (almost stable) | +| ver 0.7.5 (almost stable) | | ~endorphant/projects/ttbp/changelog.txt | |__________________________________________________________| diff --git a/bin/ttbp.py b/bin/ttbp.py index 3274178..bb09b21 100644 --- a/bin/ttbp.py +++ b/bin/ttbp.py @@ -53,6 +53,7 @@ SUBJECTS = ["help request", "bug report", "feature suggestion", "general comment def redraw(leftover=""): os.system("clear") print(BANNER) + print("DEV NOTE: want to see more color? try ~endorphant/bin/ttbp-beta and let me know what you think!") print(SPACER) if leftover: print("> "+leftover+"\n")