diff --git a/CHANGELOG.md b/CHANGELOG.md index 907730cc9..dad9cdab1 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 ability to export wallet transactions to JSON and CSV format ([#976](https://github.com/lbryio/lbry-app/pull/976)) + * 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 7251a1d7d..822f0b153 100644 --- a/src/renderer/index.js +++ b/src/renderer/index.js @@ -67,6 +67,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) {