From 87429d3719485adb342f9ca2b87cb68db9479912 Mon Sep 17 00:00:00 2001 From: openoms Date: Fri, 18 Feb 2022 19:54:02 +0000 Subject: [PATCH] fix menu sizes, fix typos, add notes --- CHANGES.md | 2 +- home.admin/00settingsMenuServices.sh | 2 +- home.admin/99clRepairMenu.sh | 2 +- home.admin/BlitzTUI/blitztui/main.py | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index ee3dea90d..88f91ae97 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -34,7 +34,7 @@ - Fixed: LND repair options, SEED+SCB and rescue-file restore, RESET options [issue](https://github.com/rootzoll/raspiblitz/issues/2832) - Info: All existing IP2Tor subscriptions need to be canceled & renewed to be functional again. - Info: 32GB sd card is now required (was already long time recommended on shopping list) -- Info: The touchscreen graphical mode is back to experimental for now and missing some UI fixes. This might take until v1.8.1 where the touchscreen will get a refactor/rewritwe. +- Info: The touchscreen graphical mode is back to experimental for now and missing some UI fixes. This might take until v1.8.1 where the touchscreen will get a refactor/rewrite. ## What's new in Version 1.7.1 of RaspiBlitz? diff --git a/home.admin/00settingsMenuServices.sh b/home.admin/00settingsMenuServices.sh index 98d2c1ffe..e3f830817 100755 --- a/home.admin/00settingsMenuServices.sh +++ b/home.admin/00settingsMenuServices.sh @@ -73,7 +73,7 @@ fi CHOICES=$(dialog --title ' Additional Mainnet Services ' \ --checklist ' use spacebar to activate/de-activate ' \ - 25 55 18 "${OPTIONS[@]}" 2>&1 >/dev/tty) + 27 55 20 "${OPTIONS[@]}" 2>&1 >/dev/tty) dialogcancel=$? echo "done dialog" diff --git a/home.admin/99clRepairMenu.sh b/home.admin/99clRepairMenu.sh index 810893a79..b7de2fd04 100644 --- a/home.admin/99clRepairMenu.sh +++ b/home.admin/99clRepairMenu.sh @@ -48,7 +48,7 @@ elif [ "$(eval echo \$${netprefix}clEncryptedHSM)" = "on" ];then OPTIONS+=(AUTOUNLOCK-OFF "Do not auto-decrypt the hsm_secret after boot") fi fi - OPTIONS+=(BACKUP "Full backup (hsm_secret + lightningd.sqlite3") + OPTIONS+=(BACKUP "Full backup (hsm_secret + lightningd.sqlite3)") OPTIONS+=(RESET "Reset the wallet and create new") OPTIONS+=(FILERESTORE "Restore from a rescue file") OPTIONS+=(SEEDRESTORE "Restore from a seed (onchain funds only)") diff --git a/home.admin/BlitzTUI/blitztui/main.py b/home.admin/BlitzTUI/blitztui/main.py index b24e5b987..a41c75cbe 100644 --- a/home.admin/BlitzTUI/blitztui/main.py +++ b/home.admin/BlitzTUI/blitztui/main.py @@ -154,6 +154,8 @@ class AppWindow(QMainWindow): process.readyReadStandardOutput.connect( lambda: log.info(str(process.readAllStandardOutput().data().decode('utf-8')))) + # test by connecting to the raspiblitz 'ssh -X admin@LAN_IP' and run: + # uxterm -fa Terminus -fs 9 -fn fixed +sb -hold -e 'bash -c "sudo -u pi /home/admin/00infoLCD.sh --pause 0"' process.start('uxterm', ['-fa', 'Terminus', '-fs', '9', '-fn', 'fixed', '-into', str(int(self.ui.widget.winId())), '+sb', '-hold', '-e', 'bash -c \"/home/admin/00infoLCD.sh --pause {}\"'.format(pause)])