A browser and wallet for LBRY, the decentralized, user-controlled content marketplace.
Go to file
2017-02-09 18:18:03 -06:00
app they're making me set an author 2017-02-09 18:17:09 -06:00
build linux build works on my machine 2017-01-26 20:36:05 -06:00
lbry@d5e1de489e Publish works. update submodules 2017-02-08 14:04:30 -06:00
lbry-web-ui@b539da8e03 update submodule 2017-02-08 15:16:55 -06:00
lbrynet make spec file more generalized 2017-01-30 23:14:18 +00:00
lbryum@bd370d3530 update submodules 2017-02-08 10:34:27 -06:00
.gitignore cleanup ignores 2017-01-26 18:23:34 -06:00
.gitmodules bundle lbryum files 2017-01-26 12:30:02 -06:00
.travis.yml better startup and process management 2017-01-18 10:32:10 -06:00
build.sh while testing, always release 2017-02-09 18:18:03 -06:00
LICENSE Initial commit 2017-01-16 14:05:32 -05:00
package.json build deb 2017-02-09 17:48:51 -06:00
prebuild.sh install pyinstaller in the venv 2017-01-26 19:42:10 -06:00
README.md cleanup readme 2017-02-09 16:07:16 -06:00

LBRY Electron

An electron version of the LBRY application.

This repo uses submodules, so clone it using --recursive

Setup

The lbrynet library needs to be installed along with pyinstaller, and you need everything to be able to build the lbry-web-ui

Build

run ./build.sh to create a lbry executable, bundle the front-end and move everything into the app folder

Run

./node_modules/.bin/electron app

Package

To build a distributable package for OSX, run (on an OSX machine):

electron-packager --electron-version=1.4.14 --overwrite electron LBRY

This also probably works for windows and linux, but I haven't tested it

TODO

This app works by launching the lbrynet daemon in a seperate process. Currently the process management is very poor and the lbrynet process might not be shut-down when the app is closed. Also, if the lbrynet daemon dies, there is no attempt to restart it.