From 2d75d11c4002a5eb832d235f6dd343a61bde9d94 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 19 Aug 2019 15:34:07 -0400 Subject: [PATCH 1/4] v0.35.2-rc.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3e76627b2..6b67aeff4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.35.1", + "version": "0.35.2-rc.1", "description": "A browser for the LBRY network, a digital marketplace controlled by its users.", "keywords": [ "lbry" -- 2.45.2 From 65f6a4676a2beb6224a705bddb2f041188c23cac Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 21 Aug 2019 00:19:34 -0400 Subject: [PATCH 2/4] update sdk to 0.39.2 --- CHANGELOG.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 777e70a32..9680e9d2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [0.36.0] - [Unreleased] +## [0.35.2] - [Unreleased] ### Fixed @@ -13,7 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Changed -- Upgraded lbry-sdk to 0.39.1 for performance and reliability improvements +- Upgraded lbry-sdk to 0.39.2 for performance and reliability improvements - Upgraded windows certificate so builds continue to be signed properly ### Added diff --git a/package.json b/package.json index 6b67aeff4..4efcb840d 100644 --- a/package.json +++ b/package.json @@ -199,7 +199,7 @@ "yarn": "^1.3" }, "lbrySettings": { - "lbrynetDaemonVersion": "0.39.1", + "lbrynetDaemonVersion": "0.39.2", "lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-OSNAME.zip", "lbrynetDaemonDir": "static/daemon", "lbrynetDaemonFileName": "lbrynet" -- 2.45.2 From 2a23b84cbb264d492b7e9633ae2b56be93faa05d Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 21 Aug 2019 00:19:44 -0400 Subject: [PATCH 3/4] v0.35.2-rc.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4efcb840d..e0b3b89f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.35.2-rc.1", + "version": "0.35.2-rc.2", "description": "A browser for the LBRY network, a digital marketplace controlled by its users.", "keywords": [ "lbry" -- 2.45.2 From a7295b001fef6e9e16bdf42284ab15397b2107f2 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 21 Aug 2019 14:29:22 -0400 Subject: [PATCH 4/4] I18n trending fix #2759 --- src/ui/component/claimListDiscover/view.jsx | 2 +- src/ui/i18n/index.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ui/component/claimListDiscover/view.jsx b/src/ui/component/claimListDiscover/view.jsx index ec50daa1f..713d9feaf 100644 --- a/src/ui/component/claimListDiscover/view.jsx +++ b/src/ui/component/claimListDiscover/view.jsx @@ -186,7 +186,7 @@ function ClaimListDiscover(props: Props) { > {SEARCH_TYPES.map(type => ( ))} diff --git a/src/ui/i18n/index.js b/src/ui/i18n/index.js index 83b614eda..bcfffda57 100644 --- a/src/ui/i18n/index.js +++ b/src/ui/i18n/index.js @@ -2,8 +2,10 @@ import y18n from 'y18n'; import path from 'path'; +const isProduction = process.env.NODE_ENV === 'production'; + const i18n = y18n({ - directory: path.join(__dirname, `locales`), + directory: path.join(isProduction ? __dirname : __static, `locales`), updateFiles: true, locale: 'en', }); -- 2.45.2