diff --git a/CHANGELOG.md b/CHANGELOG.md index 9680e9d2f..777e70a32 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.35.2] - [Unreleased] +## [0.36.0] - [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.2 for performance and reliability improvements +- Upgraded lbry-sdk to 0.39.1 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 e0b3b89f4..3e76627b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LBRY", - "version": "0.35.2-rc.2", + "version": "0.35.1", "description": "A browser for the LBRY network, a digital marketplace controlled by its users.", "keywords": [ "lbry" @@ -199,7 +199,7 @@ "yarn": "^1.3" }, "lbrySettings": { - "lbrynetDaemonVersion": "0.39.2", + "lbrynetDaemonVersion": "0.39.1", "lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-OSNAME.zip", "lbrynetDaemonDir": "static/daemon", "lbrynetDaemonFileName": "lbrynet" 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', });