diff --git a/CHANGELOG.md b/CHANGELOG.md index b1eae8352..4632fbecd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). * Notifications when the channel a user subscribes to uploads new content ([#1066](https://github.com/lbryio/lbry-app/pull/1066)) * Codacy support for Github contributions ([#1059](https://github.com/lbryio/lbry-app/pull/1059)) * App category for Linux ([#877](https://github.com/lbryio/lbry-app/pull/877)) + * Add YouTube Sync reward ([1147](https://github.com/lbryio/lbry-app/pull/1147)) ### Changed * Improved privacy by allowing users to turn off the file view counter and better understand privacy settings ([#1074](https://github.com/lbryio/lbry-app/pull/1074)) diff --git a/src/renderer/rewards.js b/src/renderer/rewards.js index 84dde2477..5ab76455d 100644 --- a/src/renderer/rewards.js +++ b/src/renderer/rewards.js @@ -13,6 +13,7 @@ function rewardMessage(type, amount) { first_publish: __('You earned %s LBC for making your first publication.', amount), featured_download: __('You earned %s LBC for watching a featured download.', amount), referral: __('You earned %s LBC for referring someone.', amount), + youtube_creator: __('You earned %s LBC for syncing your YouTube channel.', amount), }[type]; } @@ -27,6 +28,7 @@ rewards.TYPE_MANY_DOWNLOADS = 'many_downloads'; rewards.TYPE_FIRST_PUBLISH = 'first_publish'; rewards.TYPE_FEATURED_DOWNLOAD = 'featured_download'; rewards.TYPE_REFERRAL = 'referral'; +rewards.YOUTUBE_CREATOR = 'youtube_creator'; rewards.SORT_ORDER = [ rewards.TYPE_NEW_USER, rewards.TYPE_CONFIRM_EMAIL, @@ -37,6 +39,7 @@ rewards.SORT_ORDER = [ rewards.TYPE_MANY_DOWNLOADS, rewards.TYPE_REFERRAL, rewards.TYPE_NEW_DEVELOPER, + rewards.YOUTUBE_CREATOR ]; rewards.claimReward = type => {