Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

v0.1.4-alpha

Choose a tag to compare

@Roasbeef Roasbeef released this 29 Dec 15:07
· 2877 commits to master since this release

This release is the fourth minor release for the application! Several bugs have been fixed on the backend. Additionally, the UI has received a few minimal updates and changes to the development set up have been made in order to make running multiple instances of the application easier.

NOTE: the version of lnd packaged includes a breaking change. As a result, before updating we recommend that users close out all their active channels, and also transfer any testnet coins they wish to hold onto to an external wallet before updating.

Before updating, users will need to remove all data from lnd's home data directory. This is required as there have been some breaking database changes within lnd itself. Depending on your operating system, the data directory will be found in a different location on the file system:

  • MacOS: $HOME/Library/Application Support/Lnd
  • Windows: %LOCALAPPDATA%\Lnd
  • Linux: ~/.lnd

This release is pinned against the following commit of lnd: lightningnetwork/lnd@6b0f984

Verifying the Release

In order to verify the release, you'll need to have gpg or gpg2 installed on your system. Once you've obtained a copy (and hopefully verified that as well), you'll first need to import roasbeef's key if you haven't done so already:

curl https://keybase.io/roasbeef/pgp_keys.asc | gpg --import

The keybase page of roasbeef includes several attestations across distinct platforms in order to provoide a degree of confidence that this release was really signed by "roasbeef".

Once you have his PGP key you can verify the release (assuming manifest-v0.1.4-alpha.txt and manifest-v0.1.4-alpha.txt.sig are in the current directory) with:

gpg --verify manifest-v0.1.4-alpha.txt.sig

That will verify the signature on the main manifest page which ensures integrity and authenticity of the binaries you've downloaded locally. Next, depending on your operating system you should then re-calculate the sha256 sum of the binary, and compare that with the following hashes (which are included in the manifest file):

39ece405a7e4ca45bf94c6db857cd30f04f3217300c64c0ac7d5c96323289f3b  Lightning-darwin-x64v0.1.4.zip
ce25f5d74a8a313c587d1d59b9131ba863260fa97d59366704f7e5955079c266  Lightning-linux-x64v0.1.4.tar.gz
fbd8b452dd6ee6bda051cd33fb69cd61cee008e182514f8c56e3d0ce65accfc0  Lightning-win32-x64v0.1.4.zip

One can use the shasum -a 256 <file name here> tool in order to re-compute the sha256 hash of the target binary for your operating system. The produced hash should be compared with the hashes listed above and they should match exactly.

This release can also be found in roasbeef's public keybase folder.

Notable Fixes

UI

When creating a payment request, there's now an option to show a QR code encoding the payment request. This makes it easy for mobile clients (or just other laptops) to scan the QR code to satisfy the payment.

Payment requests generated by the application will now properly use the lighting: URI prefix, rather than the former lighting:// prefix.

Development

It's now possible to pass arguments to the npm start command. With this, it's possible to pass alternative argument to enable starting an lnd instance using a particular path, and arguments. This allows developer to have multiple instances of the app launched locally. This should make it easier for developers to test out new features locally.

Backend Lightning Network Daemon

A number of bug fixes, and updates have been made to the lnd instance that the application pins against. These changes should result in several reported issues being fixed namely: issues with channel being "active" after funding, properly retransmitting dangling channel updates. Full details of these changes can be found here: