New Features
Channel Performance page to see in depth activity and profitability metrics
Advanced settings page to set custom targets per channel and to manage custom links
Settings for using custom URL links that can be set on the advanced settings page
Autopilot Switch On Dashboard
IMPORTANT - Read Before Updating!
Manual Installs Users
You will need to install pandas as an additional requirement
.venv/bin/pip install pandas
Docker/Umbrel Install Users
IF YOU CANNOT LOG INTO YOUR NODE after the update because the password has stopped working, this is because the default data directory has been relocated to allow for a cleaner install process. Follow the steps below to restore your existing database.
-
Stop LNDg
cd ~/lndg
docker-compose down
-
Update docker-compose.yaml volumes section to the below (Umbrel example) with:
nano docker-compose.yaml
volumes:
- /home/umbrel/umbrel/lnd:/root/.lnd:ro
- /home/umbrel/lndg/data:/lndg/data:rw
-
Run the following commands
mkdir data
mv db.sqlite3 data/
-
Continue with update
docker-compose build --no-cache
docker-compose up -d