switch from lbry-web-ui to ui

This commit is contained in:
Alex Grintsvayg 2017-03-09 12:31:07 -05:00
parent 05d4a07312
commit 60ed5cce14
8 changed files with 10 additions and 22 deletions

View file

@ -1,6 +1,6 @@
# LBRY App # LBRY App
This is a graphical browser for the decentralized content marketplace provided by the [LBRY](https://lbry.io) protocol. It is essentially the [lbry daemon](https://github.com/lbryio/lbry) bundled with the [lbry web ui](https://github.com/lbryio/lbry-web-ui) in an [Electron](http://electron.atom.io/) application. This is a graphical browser for the decentralized content marketplace provided by the [LBRY](https://lbry.io) protocol. It is essentially the [lbry daemon](https://github.com/lbryio/lbry) bundled with a UI using [Electron](http://electron.atom.io/).
## Installing ## Installing

View file

@ -26,7 +26,7 @@ install:
- ps: .\build.ps1 - ps: .\build.ps1
- cd .. - cd ..
# build ui # build ui
- cd lbry-web-ui - cd ui
- npm install - npm install
- node_modules\.bin\node-sass --output dist\css --sourcemap=none scss\ - node_modules\.bin\node-sass --output dist\css --sourcemap=none scss\
- node_modules\.bin\webpack - node_modules\.bin\webpack

View file

@ -48,7 +48,7 @@ npm install
############ ############
( (
cd "$ROOT/lbry-web-ui" cd "$ROOT/ui"
npm install npm install
node_modules/.bin/node-sass --output dist/css --sourcemap=none scss/ node_modules/.bin/node-sass --output dist/css --sourcemap=none scss/
node_modules/.bin/webpack node_modules/.bin/webpack

View file

@ -11,4 +11,3 @@ cd "DIR"
git config submodule.lbry.url git@github.com:lbryio/lbry.git git config submodule.lbry.url git@github.com:lbryio/lbry.git
git config submodule.lbryum.url git@github.com:lbryio/lbryum.git git config submodule.lbryum.url git@github.com:lbryio/lbryum.git
git config submodule.lbry-web-ui.url git@github.com:lbryio/lbry-web-ui.git

View file

@ -28,7 +28,6 @@ in the future"""
DEFAULT_BRANCHES = { DEFAULT_BRANCHES = {
'lbry': 'master', 'lbry': 'master',
'lbry-app': 'master', 'lbry-app': 'master',
'lbry-web-ui': 'development',
'lbryum': 'master' 'lbryum': 'master'
} }
# TODO: ask bumpversion for these # TODO: ask bumpversion for these
@ -89,7 +88,7 @@ def main():
auth = github.Github(gh_token) auth = github.Github(gh_token)
github_repo = auth.get_repo('lbryio/lbry-app') github_repo = auth.get_repo('lbryio/lbry-app')
names = ['lbry', 'lbry-web-ui', 'lbryum'] names = ['lbry', 'lbryum']
repos = {name: Repo(name, get_part(args, name)) for name in names} repos = {name: Repo(name, get_part(args, name)) for name in names}
# in order to see if we've had any change in the submodule, we need to checkout # in order to see if we've had any change in the submodule, we need to checkout
@ -232,8 +231,7 @@ def check_bumpversion():
def get_part(args, name): def get_part(args, name):
value = args.ui_part if name == 'lbry-web-ui' else getattr(args, name + '_part') return getattr(args, name + '_part') or args.lbry_part
return value or args.lbry_part
class Repo(object): class Repo(object):

View file

@ -7,11 +7,6 @@ git tag -d $(git describe)
git reset --hard origin/master git reset --hard origin/master
popd popd
pushd lbry-web-ui
git tag -d $(git describe)
git reset --hard origin/development
popd
pushd lbryum pushd lbryum
git tag -d $(git describe) git tag -d $(git describe)
git reset --hard origin/master git reset --hard origin/master

View file

@ -80,15 +80,15 @@ var HelpPage = React.createClass({
<table className="table-standard"> <table className="table-standard">
<tbody> <tbody>
<tr> <tr>
<th>lbrynet (data)</th> <th>daemon (lbrynet)</th>
<td>{ver.lbrynet_version}</td> <td>{ver.lbrynet_version}</td>
</tr> </tr>
<tr> <tr>
<th>lbryum (wallet)</th> <th>wallet (lbryum)</th>
<td>{ver.lbryum_version}</td> <td>{ver.lbryum_version}</td>
</tr> </tr>
<tr> <tr>
<th>lbry-web-ui (interface)</th> <th>interface</th>
<td>{uiVersion}</td> <td>{uiVersion}</td>
</tr> </tr>
<tr> <tr>

View file

@ -5,19 +5,15 @@
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": {
"type": "git",
"url": "git+https://github.com/lbryio/lbry-web-ui.git"
},
"keywords": [ "keywords": [
"lbry" "lbry"
], ],
"author": "Alex Liebowitz <aliebowitz@lbry.io>", "author": "Alex Liebowitz <aliebowitz@lbry.io>",
"license": "SEE LICENSE IN LICENSE.md", "license": "SEE LICENSE IN LICENSE.md",
"bugs": { "bugs": {
"url": "https://github.com/lbryio/lbry-web-ui/issues" "url": "https://github.com/lbryio/lbry-app/issues"
}, },
"homepage": "https://github.com/lbryio/lbry-web-ui#readme", "homepage": "https://github.com/lbryio/lbry-app#readme",
"dependencies": { "dependencies": {
"babel-cli": "^6.11.4", "babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2", "babel-preset-es2015": "^6.13.2",