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] [bumpversion]
current_version = 0.12.2rc2 current_version = 0.12.2rc3
commit = True commit = True
tag = True tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))? 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] ## [Unreleased]
### Added ### Added
* Support markdown makeup in claim description * Support markdown makeup in claim description
* State is persisted through app close and re-open, resulting in faster opens
* *
### Changed ### Changed
* Upgraded to lbry daemon 0.13, including updating API signatures * Upgraded to lbry daemon 0.13, including updating API signatures
* Channels resolve much faster * Channels resolve much faster
* Resolve is no longer cancelled on navigate
### Fixed ### Fixed
* Fix help menu force reloading whole app * Fix help menu force reloading whole app
* * Show page updates correctly when navigating from show page to another show page
### Deprecated ### Deprecated
* *
* *
### Removed ### 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 ## [0.12.0] - 2017-06-09

View file

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

View file

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

View file

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