diff --git a/CHANGELOG.md b/CHANGELOG.md index af16a84d0..d4c711f27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). * Add keyboard shortcut to quit the app on Windows ([#1202](https://github.com/lbryio/lbry-app/pull/1202)) * Build for both architectures (x86 and x64) for Windows ([#1262](https://github.com/lbryio/lbry-app/pull/1262)) * Add referral FAQ to Invites screen([#1314](https://github.com/lbryio/lbry-app/pull/1314)) + * Show exact wallet balance on mouse hover over ([#1305](https://github.com/lbryio/lbry-app/pull/1305)) + * New dark mode ([#1269](https://github.com/lbryio/lbry-app/pull/1269)) + * Pre-fill publish URL after clicking "Put something here" link ([#1303](https://github.com/lbryio/lbry-app/pull/1303)) + +### Changed +* Add flair to snackbar ([#1313](https://github.com/lbryio/lbry-app/pull/1313)) ### Fixed * Black screen on macOS after maximizing LBRY and then closing ([#1235](https://github.com/lbryio/lbry-app/pull/1235)) * Fix content-type not shown correctly in file description ([#863](https://github.com/lbryio/lbry-app/pull/863)) +### Fixed + * Black screen on macOS after maximizing LBRY and then closing ([#1235](https://github.com/lbryio/lbry-app/pull/1235)) + * Fix dark theme ([#1034](https://github.com/lbryio/lbry-app/issues/1034)) + * Fix download percentage indicator overlay ([#1271](https://github.com/lbryio/lbry-app/issues/1271)) ## [0.21.2] - 2018-03-22 diff --git a/package.json b/package.json index f18ddc8dc..976987947 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,7 @@ "find-process": "^1.1.0", "formik": "^0.10.4", "keytar": "^4.2.1", + "lbry-redux": "lbryio/lbry-redux", "localforage": "^1.7.1", "mixpanel-browser": "^2.17.1", "moment": "^2.22.0", @@ -60,7 +61,7 @@ "react-modal": "^3.1.7", "react-paginate": "^5.2.1", "react-redux": "^5.0.3", - "react-simplemde-editor": "^3.6.11", + "react-simplemde-editor": "3.6.11", "react-transition-group": "1.x", "redux": "^3.6.0", "redux-logger": "^3.0.1", diff --git a/src/renderer/component/address/view.jsx b/src/renderer/component/address/view.jsx index eff0f6697..2beadfda3 100644 --- a/src/renderer/component/address/view.jsx +++ b/src/renderer/component/address/view.jsx @@ -23,7 +23,7 @@ export default class Address extends React.PureComponent { const { address, doShowSnackBar } = this.props; return ( - + ({ diff --git a/src/renderer/component/button/index.js b/src/renderer/component/button/index.js index edebcbce1..478015d09 100644 --- a/src/renderer/component/button/index.js +++ b/src/renderer/component/button/index.js @@ -1,4 +1,3 @@ -import React from 'react'; import { connect } from 'react-redux'; import { doNavigate } from 'redux/actions/navigation'; import Button from './view'; diff --git a/src/renderer/component/cardMedia/view.jsx b/src/renderer/component/cardMedia/view.jsx index a0d4b6d4e..28f526ee3 100644 --- a/src/renderer/component/cardMedia/view.jsx +++ b/src/renderer/component/cardMedia/view.jsx @@ -22,9 +22,7 @@ const autoThumbColors = [ ]; class CardMedia extends React.PureComponent { - getAutoThumbClass = () => { - return autoThumbColors[Math.floor(Math.random() * autoThumbColors.length)]; - }; + getAutoThumbClass = () => autoThumbColors[Math.floor(Math.random() * autoThumbColors.length)]; render() { const { thumbnail, nsfw } = this.props; diff --git a/src/renderer/component/cardVerify/view.jsx b/src/renderer/component/cardVerify/view.jsx index 2df72f076..7d8382c4c 100644 --- a/src/renderer/component/cardVerify/view.jsx +++ b/src/renderer/component/cardVerify/view.jsx @@ -158,7 +158,7 @@ class CardVerify extends React.Component { render() { return (