From 96702fdf571fc5eef325f1109d61fc867dfb96a7 Mon Sep 17 00:00:00 2001 From: 6ea86b96 <6ea86b96@gmail.com> Date: Thu, 25 May 2017 18:52:30 +0400 Subject: [PATCH 01/13] set ENV to production webpack.config.js --- ui/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/webpack.config.js b/ui/webpack.config.js index fe0a5277b..491a5e4d5 100644 --- a/ui/webpack.config.js +++ b/ui/webpack.config.js @@ -21,7 +21,7 @@ module.exports = { }, plugins: [ new webpack.DefinePlugin({ - ENV: JSON.stringify("development"), + ENV: JSON.stringify("production"), }), ], module: { From a899d623d0deeb0abc457dbb2667f9a89ca7635b Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 25 May 2017 13:38:53 -0400 Subject: [PATCH 02/13] fix reward check on startup --- ui/js/component/auth.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/js/component/auth.js b/ui/js/component/auth.js index 1d1e8a406..df9262672 100644 --- a/ui/js/component/auth.js +++ b/ui/js/component/auth.js @@ -8,7 +8,7 @@ import {RewardLink} from 'component/reward-link'; import {FormRow} from "../component/form.js"; import {CreditAmount, Address} from "../component/common.js"; import {getLocal, setLocal} from '../utils.js'; -import {TYPE_NEW_USER} from '../rewards' +import rewards from '../rewards' class SubmitEmailStage extends React.Component { @@ -288,7 +288,7 @@ export class AuthOverlay extends React.Component { } else { lbryio.call('reward', 'list', {}).then((userRewards) => { userRewards.filter(function(reward) { - return reward.reward_type == TYPE_NEW_USER && reward.transaction_id; + return reward.reward_type == rewards.TYPE_NEW_USER && reward.transaction_id; }).length ? this.setStage(null) : this.setStage("welcome") From aee0603dc93ea390643646a10b405c3b3b702a0d Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 25 May 2017 14:29:28 -0400 Subject: [PATCH 03/13] fix version info on help --- app/main.js | 2 +- ui/js/actions/app.js | 2 +- ui/js/lbry.js | 2 +- ui/js/main.js | 3 +-- ui/js/page/help/view.jsx | 37 ++++++++++++++++++++++--------------- 5 files changed, 26 insertions(+), 20 deletions(-) diff --git a/app/main.js b/app/main.js index 970e2214c..85ee04ca0 100644 --- a/app/main.js +++ b/app/main.js @@ -68,6 +68,7 @@ function checkForNewVersion(callback) { 'User-Agent': `LBRY/${localVersion}`, } }; + const req = https.get(Object.assign(opts, url.parse(LATEST_RELEASE_API_URL)), (res) => { res.on('data', (data) => { result += data; @@ -76,7 +77,6 @@ function checkForNewVersion(callback) { const tagName = JSON.parse(result).tag_name; const [_, remoteVersion] = tagName.match(/^v([\d.]+(?:-?rc\d+)?)$/); if (!remoteVersion) { - console.log('Malformed remote version string:', tagName); if (win) { win.webContents.send('version-info-received', null); } diff --git a/ui/js/actions/app.js b/ui/js/actions/app.js index 0f5df575d..9b928c512 100644 --- a/ui/js/actions/app.js +++ b/ui/js/actions/app.js @@ -186,7 +186,7 @@ export function doCheckUpgradeAvailable() { return function(dispatch, getState) { const state = getState() - lbry.getVersionInfo().then(({remoteVersion, upgradeAvailable}) => { + lbry.getAppVersionInfo().then(({remoteVersion, upgradeAvailable}) => { if (upgradeAvailable) { dispatch({ type: types.UPDATE_VERSION, diff --git a/ui/js/lbry.js b/ui/js/lbry.js index d1fd125e4..b9230ce16 100644 --- a/ui/js/lbry.js +++ b/ui/js/lbry.js @@ -360,7 +360,7 @@ lbry.showMenuIfNeeded = function() { sessionStorage.setItem('menuShown', chosenMenu); }; -lbry.getVersionInfo = function() { +lbry.getAppVersionInfo = function() { return new Promise((resolve, reject) => { ipcRenderer.once('version-info-received', (event, versionInfo) => { resolve(versionInfo) }); ipcRenderer.send('version-info-requested'); diff --git a/ui/js/main.js b/ui/js/main.js index 454d6e5b5..04027b6f2 100644 --- a/ui/js/main.js +++ b/ui/js/main.js @@ -13,8 +13,7 @@ import store from 'store.js'; import { doChangePath, doNavigate, - doDaemonReady, - doHistoryPush + doDaemonReady } from 'actions/app' import { doFetchDaemonSettings diff --git a/ui/js/page/help/view.jsx b/ui/js/page/help/view.jsx index 3f351adfd..3f67c2d70 100644 --- a/ui/js/page/help/view.jsx +++ b/ui/js/page/help/view.jsx @@ -3,6 +3,7 @@ import React from 'react'; import lbry from 'lbry.js'; import Link from 'component/link'; import SubHeader from 'component/subHeader' +import {BusyMessage} from 'component/common' import {version as uiVersion} from 'json!../../../package.json'; class HelpPage extends React.Component { @@ -16,11 +17,16 @@ class HelpPage extends React.Component { } componentWillMount() { - lbry.getVersionInfo((info) => { + lbry.getAppVersionInfo().then((info) => { this.setState({ - versionInfo: info, + appVersionInfo: info, }); }); + lbry.call('version', {}, (info) => { + this.setState({ + versionInfo: info + }) + }) lbry.getSessionInfo((info) => { this.setState({ lbryId: info.lbry_id, @@ -37,7 +43,7 @@ class HelpPage extends React.Component { if (this.state.versionInfo) { ver = this.state.versionInfo; - + console.log(ver) if (ver.os_system == 'Darwin') { osName = (parseInt(ver.os_release.match(/^\d+/)) < 16 ? 'Mac OS X' : 'Mac OS'); @@ -87,14 +93,14 @@ class HelpPage extends React.Component {
Thanks! LBRY is made by its users.
- {!ver ? null : -
-

About

-
- {ver.lbrynet_update_available || ver.lbryum_update_available ? -

A newer version of LBRY is available.

- :

Your copy of LBRY is up to date.

- } +
+

About

+
+ {this.state.appVersionInfo ? + (ver.lbrynet_update_available || ver.lbryum_update_available ? +

A newer version of LBRY is available.

+ :

Your copy of LBRY is up to date.

) : null} + { ver ? @@ -118,10 +124,11 @@ class HelpPage extends React.Component { -
{this.state.lbryId}
-
-
- } + : + + } +
+
); } From 24759b3ab91efe7607631f2ea44cc0ddf9727725 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 25 May 2017 15:12:40 -0400 Subject: [PATCH 04/13] =?UTF-8?q?Bump=20version:=200.11.0=20=E2=86=92=200.?= =?UTF-8?q?11.1rc1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- app/package.json | 2 +- ui/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 588405f9c..a1bc8af66 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.0 +current_version = 0.11.1rc1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/app/package.json b/app/package.json index 2538952cb..4454ef35e 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.11.0", + "version": "0.11.1rc1", "main": "main.js", "description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.", "author": { diff --git a/ui/package.json b/ui/package.json index 47e2add1d..50c4f3a95 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "lbry-web-ui", - "version": "0.11.0", + "version": "0.11.1rc1", "description": "LBRY UI", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", From 260980ff38089324eb74512090ebbe26f852f6a0 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 25 May 2017 16:07:32 -0400 Subject: [PATCH 05/13] fix app upgrades? --- ui/js/component/downloadingModal/view.jsx | 2 +- ui/js/reducers/app.js | 12 +++--------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/ui/js/component/downloadingModal/view.jsx b/ui/js/component/downloadingModal/view.jsx index b59605e28..dc76fdd4b 100644 --- a/ui/js/component/downloadingModal/view.jsx +++ b/ui/js/component/downloadingModal/view.jsx @@ -17,7 +17,7 @@ class DownloadingModal extends React.Component { return ( Downloading Update{downloadProgress ? `: ${downloadProgress}%` : null} - + {downloadComplete ? (

diff --git a/ui/js/reducers/app.js b/ui/js/reducers/app.js index 0662d3483..af99b8a88 100644 --- a/ui/js/reducers/app.js +++ b/ui/js/reducers/app.js @@ -27,7 +27,7 @@ reducers[types.CHANGE_PATH] = function(state, action) { reducers[types.UPGRADE_CANCELLED] = function(state, action) { return Object.assign({}, state, { downloadProgress: null, - downloadComplete: false, + upgradeDownloadComplete: false, modal: null, }) } @@ -35,7 +35,8 @@ reducers[types.UPGRADE_CANCELLED] = function(state, action) { reducers[types.UPGRADE_DOWNLOAD_COMPLETED] = function(state, action) { return Object.assign({}, state, { downloadDir: action.data.dir, - downloadComplete: true, + upgradeDownloading: false, + upgradeDownloadCompleted: true }) } @@ -45,13 +46,6 @@ reducers[types.UPGRADE_DOWNLOAD_STARTED] = function(state, action) { }) } -reducers[types.UPGRADE_DOWNLOAD_COMPLETED] = function(state, action) { - return Object.assign({}, state, { - upgradeDownloading: false, - upgradeDownloadCompleted: true - }) -} - reducers[types.SKIP_UPGRADE] = function(state, action) { sessionStorage.setItem('upgradeSkipped', true); From 3bb08fd987c1348e43693c8842b074bcd2150859 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 25 May 2017 16:12:22 -0400 Subject: [PATCH 06/13] =?UTF-8?q?Bump=20version:=200.11.1rc1=20=E2=86=92?= =?UTF-8?q?=200.11.2rc1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- app/package.json | 2 +- ui/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a1bc8af66..17f198220 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.1rc1 +current_version = 0.11.2rc1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/app/package.json b/app/package.json index 4454ef35e..a7a5cde96 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.11.1rc1", + "version": "0.11.2rc1", "main": "main.js", "description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.", "author": { diff --git a/ui/package.json b/ui/package.json index 50c4f3a95..aeadaf622 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "lbry-web-ui", - "version": "0.11.1rc1", + "version": "0.11.2rc1", "description": "LBRY UI", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", From c03f48384ea45649bac61fc77eaeb9dc46dc4bd3 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 25 May 2017 22:57:32 -0400 Subject: [PATCH 07/13] =?UTF-8?q?Bump=20version:=200.11.2rc1=20=E2=86=92?= =?UTF-8?q?=200.11.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- app/package.json | 2 +- ui/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 17f198220..26bd7bc50 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.2rc1 +current_version = 0.11.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/app/package.json b/app/package.json index a7a5cde96..a18057873 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.11.2rc1", + "version": "0.11.2", "main": "main.js", "description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.", "author": { diff --git a/ui/package.json b/ui/package.json index aeadaf622..71b911752 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "lbry-web-ui", - "version": "0.11.2rc1", + "version": "0.11.2", "description": "LBRY UI", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", From fc652e221a1ce64ab12ad0a318c5b67e8f64a503 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Fri, 26 May 2017 04:09:27 -0400 Subject: [PATCH 08/13] Fix Publish page to use new claim info format --- ui/js/page/publish/view.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/js/page/publish/view.jsx b/ui/js/page/publish/view.jsx index 0aa52c9b1..6edb9e371 100644 --- a/ui/js/page/publish/view.jsx +++ b/ui/js/page/publish/view.jsx @@ -206,18 +206,18 @@ class PublishPage extends React.Component { nameResolved: false, }); } else { - const topClaimIsMine = (myClaimInfo && myClaimInfo.claim.amount >= claimInfo.claim.amount); + const topClaimIsMine = myClaimInfo && myClaimInfo.amount >= claimInfo.amount; const newState = { nameResolved: true, - topClaimValue: parseFloat(claimInfo.claim.amount), + topClaimValue: parseFloat(claimInfo.amount), myClaimExists: !!myClaimInfo, - myClaimValue: myClaimInfo ? parseFloat(myClaimInfo.claim.amount) : null, + myClaimValue: myClaimInfo ? parseFloat(myClaimInfo.amount) : null, myClaimMetadata: myClaimInfo ? myClaimInfo.value : null, topClaimIsMine: topClaimIsMine, }; if (topClaimIsMine) { - newState.bid = myClaimInfo.claim.amount; + newState.bid = myClaimInfo.amount; } else if (this.state.myClaimMetadata) { // Just changed away from a name we have a claim on, so clear pre-fill newState.bid = ''; From 0e90b02516f2214c68369bb576d53976de043e0b Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Fri, 26 May 2017 09:33:07 -0400 Subject: [PATCH 09/13] =?UTF-8?q?Bump=20version:=200.11.2=20=E2=86=92=200.?= =?UTF-8?q?11.3rc1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- app/package.json | 2 +- ui/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 26bd7bc50..16f5fa197 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.2 +current_version = 0.11.3rc1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/app/package.json b/app/package.json index a18057873..5e7abf4f0 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.11.2", + "version": "0.11.3rc1", "main": "main.js", "description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.", "author": { diff --git a/ui/package.json b/ui/package.json index 71b911752..683a5cbc3 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "lbry-web-ui", - "version": "0.11.2", + "version": "0.11.3rc1", "description": "LBRY UI", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", From 94de80a5399ba48210f5fd8de102ee1a26c0167f Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Fri, 26 May 2017 09:45:08 -0400 Subject: [PATCH 10/13] =?UTF-8?q?Bump=20version:=200.11.3rc1=20=E2=86=92?= =?UTF-8?q?=200.11.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- app/package.json | 2 +- ui/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 16f5fa197..b541729bc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.3rc1 +current_version = 0.11.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/app/package.json b/app/package.json index 5e7abf4f0..d00c85f0a 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.11.3rc1", + "version": "0.11.3", "main": "main.js", "description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.", "author": { diff --git a/ui/package.json b/ui/package.json index 683a5cbc3..bf2d03720 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "lbry-web-ui", - "version": "0.11.3rc1", + "version": "0.11.3", "description": "LBRY UI", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", From 434485b0aadeda3079ec5cf584b3bd6910017391 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Fri, 26 May 2017 09:50:02 -0400 Subject: [PATCH 11/13] update changelog --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29f2d5474..a952b221a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,8 +16,10 @@ Web UI version numbers should always match the corresponding version of LBRY App * ### Fixed - * - * + * Fixed always showing welcome message on run + * "Fixed" upgrade process + * Version info now shows properly on Help page + * Claim info is properly accessed on Publish page ### Deprecated * From 05e78eba2dac7c5551a3d7275d4a90af98179c17 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Fri, 26 May 2017 10:01:28 -0400 Subject: [PATCH 12/13] =?UTF-8?q?Revert=20"Bump=20version:=200.11.3rc1=20?= =?UTF-8?q?=E2=86=92=200.11.3"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 94de80a5399ba48210f5fd8de102ee1a26c0167f. --- .bumpversion.cfg | 2 +- app/package.json | 2 +- ui/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b541729bc..16f5fa197 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.3 +current_version = 0.11.3rc1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/app/package.json b/app/package.json index d00c85f0a..5e7abf4f0 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.11.3", + "version": "0.11.3rc1", "main": "main.js", "description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.", "author": { diff --git a/ui/package.json b/ui/package.json index bf2d03720..683a5cbc3 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "lbry-web-ui", - "version": "0.11.3", + "version": "0.11.3rc1", "description": "LBRY UI", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", From 0350dd1610ff9aaa6341e54db72ea6da44a69b8f Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Fri, 26 May 2017 10:03:56 -0400 Subject: [PATCH 13/13] =?UTF-8?q?Bump=20version:=200.11.3rc1=20=E2=86=92?= =?UTF-8?q?=200.11.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 16 ++++++++++++---- app/package.json | 2 +- ui/package.json | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 16f5fa197..b541729bc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.3rc1 +current_version = 0.11.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index a952b221a..e640b44c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,10 +16,8 @@ Web UI version numbers should always match the corresponding version of LBRY App * ### Fixed - * Fixed always showing welcome message on run - * "Fixed" upgrade process - * Version info now shows properly on Help page - * Claim info is properly accessed on Publish page + * + * ### Deprecated * @@ -29,6 +27,16 @@ Web UI version numbers should always match the corresponding version of LBRY App * * +## [0.11.3] - 2017-05-26 + +### Fixed + * Fixed always showing welcome message on run + * "Fixed" upgrade process + * Version info now shows properly on Help page + * Claim info is properly accessed on Publish page + + + ## [0.11.0] - 2017-05-25 ### Added diff --git a/app/package.json b/app/package.json index 5e7abf4f0..d00c85f0a 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.11.3rc1", + "version": "0.11.3", "main": "main.js", "description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.", "author": { diff --git a/ui/package.json b/ui/package.json index 683a5cbc3..bf2d03720 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "lbry-web-ui", - "version": "0.11.3rc1", + "version": "0.11.3", "description": "LBRY UI", "scripts": { "test": "echo \"Error: no test specified\" && exit 1",