github cryptosharks131/lndg v1.0.0
LNDg v1.0.0

latest releases: v1.8.0, v1.7.1, v1.7.0...
2 years ago

New Features

Suggested AR Actions

Connect to peer with only pubkey or pubkey@address

Open channel without connecting first

Login required for dashboard access

IMPORTANT - Read Before Updating!

ALL existing users will need to do the following before updating to v1.0.0:

Inside the main lndg folder, initialize a file for your login password to be output at.
touch lndg-admin.txt

UMBREL users will also need to update their docker-compose.yaml to allow the container to persist the file.

Make sure the volumes section now contains a link to the password output file.
- /home/umbrel/lndg/lndg-admin.txt:/lndg/lndg-admin.txt:rw

DOCKER users will also need to update their docker-compose.yaml to allow the container to persist the file.

Make sure the volumes section now contains a link to the password output file (be sure to update the /root with your install location).
- /root/lndg/lndg-admin.txt:/lndg/lndg-admin.txt:rw

MANUAL install users will need to update their settings.py file in order to enforce authentication over api.

Delete your settings.py file and re-initialize it OR update the required section manually in lndg/settings.py.
rm lndg/settings.py
.venv/bin/python initialize.py

OR

REST_FRAMEWORK = {
    'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination',
    'PAGE_SIZE': 100,
    'DEFAULT_PERMISSION_CLASSES': [
        'rest_framework.permissions.IsAuthenticated',
    ],
    'DEFAULT_AUTHENTICATION_CLASSES': [
        'rest_framework.authentication.BasicAuthentication',
        'rest_framework.authentication.SessionAuthentication',
    ],
}

Don't miss a new lndg release

NewReleases is sending notifications on new releases.