diff --git a/CHANGES.md b/CHANGES.md index 2a1c2b940..7d74f9015 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,7 @@ - New: Verify git commits and tags everywhere possible [issue](https://github.com/rootzoll/raspiblitz/issues/2686) - Update: C-lightning v0.10.2 [details](https://github.com/ElementsProject/lightning/releases/tag/v0.10.2) +- Update: Lightning Terminal v0.6.0-alpha with Lightning Node Connect over Tor [details](https://github.com/lightninglabs/lightning-terminal/releases/tag/v0.6.0-alpha) - Update: BTCPayServer v1.3.3 with UPDATE option [details](https://github.com/btcpayserver/btcpayserver/releases/tag/v1.3.3) - Update: Electrum Server in Rust (electrs) v0.9.2 [details](https://github.com/romanz/electrs/blob/v0.9.2/RELEASE-NOTES.md) - Update: JoinMarket v0.9.3 [details](https://github.com/JoinMarket-Org/joinmarket-clientserver/releases/tag/v0.9.2) diff --git a/home.admin/config.scripts/bonus.lit.sh b/home.admin/config.scripts/bonus.lit.sh index 86446884e..2c6c97342 100644 --- a/home.admin/config.scripts/bonus.lit.sh +++ b/home.admin/config.scripts/bonus.lit.sh @@ -1,7 +1,7 @@ #!/bin/bash # https://github.com/lightninglabs/lightning-terminal/releases -LITVERSION="0.5.1-alpha" +LITVERSION="0.6.0-alpha" # command info if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then @@ -228,13 +228,15 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then # config # ########### if [ "${runBehindTor}" = "on" ]; then - echo "# Connect to the Pool server through Tor" + echo "# Connect to the Pool, Loop and Terminal server through Tor" LOOPPROXY="loop.server.proxy=127.0.0.1:9050" POOLPROXY="pool.proxy=127.0.0.1:9050" + runLitd="torsocks /usr/local/bin/litd" else - echo "# Connect to Pool and Loop server through clearnet" + echo "# Connect to Pool, Loop and Terminal server through clearnet" LOOPPROXY="" POOLPROXY="" + runLitd="/usr/local/bin/litd" fi PASSWORD_B=$(sudo cat /mnt/hdd/${network}/${network}.conf | grep rpcpassword | cut -c 13-) echo " @@ -282,7 +284,7 @@ Description=litd Service After=lnd.service [Service] -ExecStart=/usr/local/bin/litd +ExecStart=${runLitd} User=lit Group=lit Type=simple