diff --git a/CHANGELOG.md b/CHANGELOG.md index b5ec1548b..1efa0a463 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Web UI version numbers should always match the corresponding version of LBRY App ### Added * Save app state when closing to tray ([#968](https://github.com/lbryio/lbry-app/issues/968)) * Added startup-troubleshooting FAQ URL to daemon error ([#1039](https://github.com/lbryio/lbry-app/pull/1039)) + * Add Rewards FAQ to LBRY app ([#1041](https://github.com/lbryio/lbry-app/pull/1041)) * ### Changed @@ -20,7 +21,7 @@ Web UI version numbers should always match the corresponding version of LBRY App * Fixed sort by date of published content ([#986](https://github.com/lbryio/lbry-app/issues/986)) * Fix night mode start time, set to 9PM (#1050) * Fix night mode start time, set to 9PM ([#1050](https://github.com/lbryio/lbry-app/issues/1050)) - * + * Disable drag and drop of files into the app ([#1045](https://github.com/lbryio/lbry-app/pull/1045)) ### Deprecated * diff --git a/src/renderer/component/rewardSummary/view.jsx b/src/renderer/component/rewardSummary/view.jsx index 766586c27..36507d535 100644 --- a/src/renderer/component/rewardSummary/view.jsx +++ b/src/renderer/component/rewardSummary/view.jsx @@ -14,6 +14,10 @@ const RewardSummary = (props: Props) => {

{__('Rewards')}

+

+ {__('Read our')}{' '} + {__('FAQ')}{' '}{__('to learn more about LBRY Rewards')}. +

{unclaimedRewardAmount > 0 ? ( diff --git a/src/renderer/index.js b/src/renderer/index.js index a67444b93..3812c3c91 100644 --- a/src/renderer/index.js +++ b/src/renderer/index.js @@ -62,6 +62,12 @@ ipcRenderer.on('window-is-focused', () => { dock.setBadge(''); }); +document.addEventListener('dragover', event => { + event.preventDefault(); +}) +document.addEventListener('drop', event => { + event.preventDefault(); +}); document.addEventListener('click', event => { let { target } = event; while (target && target !== document) {