Merge branch 'master' into claim-desc-markdown-support

This commit is contained in:
Long Hoang Le 2017-06-18 17:46:36 +02:00 committed by GitHub
commit 1a2efd1a29
5 changed files with 10 additions and 10 deletions

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.12.2rc2
current_version = 0.12.2rc3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?

View file

@ -9,23 +9,26 @@ Web UI version numbers should always match the corresponding version of LBRY App
## [Unreleased]
### Added
* Support markdown makeup in claim description
* State is persisted through app close and re-open, resulting in faster opens
*
### Changed
* Upgraded to lbry daemon 0.13, including updating API signatures
* Channels resolve much faster
* Resolve is no longer cancelled on navigate
### Fixed
* Fix help menu force reloading whole app
*
* Show page updates correctly when navigating from show page to another show page
### Deprecated
*
*
### Removed
*
*
* The author metadata field is no longer shown, in favor of first-class identities
* Availability is no longer checked before showing Download options, due to unreliability
## [0.12.0] - 2017-06-09

View file

@ -1,6 +1,6 @@
{
"name": "LBRY",
"version": "0.12.2rc2",
"version": "0.12.2rc3",
"main": "main.js",
"description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.",
"author": {

View file

@ -10,7 +10,7 @@ import Link from "component/link";
import UriIndicator from "component/uriIndicator";
const FormatItem = props => {
const { contentType, metadata: { author, language, license } } = props;
const { contentType, metadata: { language, license } } = props;
const mediaType = lbry.getMediaType(contentType);
@ -20,9 +20,6 @@ const FormatItem = props => {
<tr>
<td>{__("Content-Type")}</td><td>{mediaType}</td>
</tr>
<tr>
<td>{__("Author")}</td><td>{author}</td>
</tr>
<tr>
<td>{__("Language")}</td><td>{language}</td>
</tr>

View file

@ -1,6 +1,6 @@
{
"name": "lbry-web-ui",
"version": "0.12.2rc2",
"version": "0.12.2rc3",
"description": "LBRY UI",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",