Seed Support #56
4 changed files with 46 additions and 22 deletions
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.10.0rc9
|
current_version = 0.10.0
|
||||||
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+))?
|
||||||
|
|
62
CHANGELOG.md
62
CHANGELOG.md
|
@ -8,32 +8,56 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
* The UI has been overhauled to use an omnibar and drop the sidebar.
|
*
|
||||||
* The app is much more responsive switching pages. It no longer reloads the entire page and all assets on each page change.
|
*
|
||||||
* lbry.js now offers a subscription model for wallet balance similar to file info.
|
|
||||||
* Fixed file info subscribes not being unsubscribed in unmount.
|
|
||||||
* Fixed drawer not highlighting selected page.
|
|
||||||
* You can now make API calls directly on the lbry module, e.g. lbry.peer_list()
|
|
||||||
* New-style API calls return promises instead of using callbacks
|
|
||||||
* Wherever possible, use outpoints for unique IDs instead of names or SD hashes
|
|
||||||
* New publishes now display immediately in My Files, even before they hit the lbrynet file manager.
|
|
||||||
* New welcome flow for new users
|
|
||||||
* Redesigned UI for Discover
|
|
||||||
* Handle more of price calculations at the daemon layer to improve page load time
|
|
||||||
* Add special support for building channel claims in lbryuri module
|
|
||||||
* Enable windows code signing of binary
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Update process now easier and more reliable
|
*
|
||||||
* Updated search to be compatible with new Lighthouse servers
|
*
|
||||||
* Cleaned up shutdown logic
|
|
||||||
* Support lbry v0.10 API signatures
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fix Watch page and progress bars for new API changes
|
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
## [0.10.0] - 2017-05-04
|
||||||
|
|
||||||
|
### Added
|
||||||
|
* The UI has been overhauled to use an omnibar and drop the sidebar.
|
||||||
|
* The app is much more responsive switching pages. It no longer reloads the entire page and all assets on each page change.
|
||||||
|
* lbry.js now offers a subscription model for wallet balance similar to file info.
|
||||||
|
* Fixed file info subscribes not being unsubscribed in unmount.
|
||||||
|
* Fixed drawer not highlighting selected page.
|
||||||
|
* You can now make API calls directly on the lbry module, e.g. lbry.peer_list()
|
||||||
|
* New-style API calls return promises instead of using callbacks
|
||||||
|
* Wherever possible, use outpoints for unique IDs instead of names or SD hashes
|
||||||
|
* New publishes now display immediately in My Files, even before they hit the lbrynet file manager.
|
||||||
|
* New welcome flow for new users
|
||||||
|
* Redesigned UI for Discover
|
||||||
|
* Handle more of price calculations at the daemon layer to improve page load time
|
||||||
|
* Add special support for building channel claims in lbryuri module
|
||||||
|
* Enable windows code signing of binary
|
||||||
|
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* Update process now easier and more reliable
|
||||||
|
* Updated search to be compatible with new Lighthouse servers
|
||||||
|
* Cleaned up shutdown logic
|
||||||
|
* Support lbry v0.10 API signatures
|
||||||
|
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* Fix Watch page and progress bars for new API changes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [0.9.0rc15] - 2017-03-09
|
## [0.9.0rc15] - 2017-03-09
|
||||||
### Added
|
### Added
|
||||||
* A way to access the Developer Settings panel in Electron (Ctrl-Shift and click logo)
|
* A way to access the Developer Settings panel in Electron (Ctrl-Shift and click logo)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "LBRY",
|
"name": "LBRY",
|
||||||
"version": "0.10.0rc9",
|
"version": "0.10.0",
|
||||||
"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": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "lbry-web-ui",
|
"name": "lbry-web-ui",
|
||||||
"version": "0.10.0rc9",
|
"version": "0.10.0",
|
||||||
"description": "LBRY UI",
|
"description": "LBRY UI",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
|
Loading…
Reference in a new issue