fix menu sizes, fix typos, add notes

This commit is contained in:
openoms 2022-02-18 19:54:02 +00:00
parent 832bd79596
commit 87429d3719
No known key found for this signature in database
GPG Key ID: 5BFB77609B081B65
4 changed files with 5 additions and 3 deletions

View File

@ -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?

View File

@ -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"

View File

@ -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)")

View File

@ -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)])