Merge pull request #1551 from Bentley912/feature_request
Adds Narrative for Feature Request on Help Page and Report Page Addresses Issue #1537
This commit is contained in:
commit
ddf1397a28
5 changed files with 12 additions and 7 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -3,3 +3,5 @@
|
||||||
/static/daemon/lbrynet*
|
/static/daemon/lbrynet*
|
||||||
/static/locales
|
/static/locales
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
|
package-lock.json
|
||||||
|
.idea/
|
|
@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
* Add Narrative about Feature Request on Help Page and Report Page ([#1551](https://github.com/lbryio/lbry-app/pull/1551))
|
||||||
* Add keyboard shortcut to quit the app on Windows ([#1202](https://github.com/lbryio/lbry-app/pull/1202))
|
* 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))
|
* 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))
|
* Add referral FAQ to Invites screen([#1314](https://github.com/lbryio/lbry-app/pull/1314))
|
||||||
|
|
|
@ -147,7 +147,7 @@ There are a few tools integrated to the project that will ease the process of de
|
||||||
If someone has been officially assigned an issue via Github's assignment system, it is also not
|
If someone has been officially assigned an issue via Github's assignment system, it is also not
|
||||||
available. Contributors are encouraged to ask if they have any questions about issue availability.
|
available. Contributors are encouraged to ask if they have any questions about issue availability.
|
||||||
* The [changelog](https://github.com/lbryio/lbry-app/blob/master/CHANGELOG.md) should be updated to
|
* The [changelog](https://github.com/lbryio/lbry-app/blob/master/CHANGELOG.md) should be updated to
|
||||||
include a referene to the fix/change/addition. See previous entries for format.
|
include a reference to the fix/change/addition. See previous entries for format.
|
||||||
* Once the pull request is visible in the LBRY repo, a LBRY team member will review it and make sure
|
* Once the pull request is visible in the LBRY repo, a LBRY team member will review it and make sure
|
||||||
it is up to our standards. At this point, the contributor may have to change his or her code based
|
it is up to our standards. At this point, the contributor may have to change his or her code based
|
||||||
on our suggestions and comments.
|
on our suggestions and comments.
|
||||||
|
|
|
@ -109,13 +109,15 @@ class HelpPage extends React.PureComponent {
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section className="card card--section">
|
<section className="card card--section">
|
||||||
<div className="card__title">{__('Report a Bug')}</div>
|
<div className="card__title">{__('Report a Bug or Suggest a New Feature')}</div>
|
||||||
<p className="card__subtitle">{__('Did you find something wrong?')}</p>
|
<p className="card__subtitle">
|
||||||
|
{__('Did you find something wrong? Think LBRY could add something useful and cool?')}
|
||||||
|
</p>
|
||||||
|
|
||||||
<div className="card__actions">
|
<div className="card__actions">
|
||||||
<Button
|
<Button
|
||||||
navigate="/report"
|
navigate="/report"
|
||||||
label={__('Submit a Bug Report')}
|
label={__('Submit a Bug Report/Feature Request')}
|
||||||
icon={icons.REPORT}
|
icon={icons.REPORT}
|
||||||
button="primary"
|
button="primary"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -49,10 +49,10 @@ class ReportPage extends React.Component {
|
||||||
<Page>
|
<Page>
|
||||||
<section className="card card--section">
|
<section className="card card--section">
|
||||||
<div className="card__content">
|
<div className="card__content">
|
||||||
<div className="card__title">{__('Report an Issue')}</div>
|
<div className="card__title">{__('Report an Issue/Request a Feature')}</div>
|
||||||
<p>
|
<p>
|
||||||
{__(
|
{__(
|
||||||
'Please describe the problem you experienced and any information you think might be useful to us. Links to screenshots are great!'
|
'Please describe the problem you experienced or the feature you want to see and any information you think might be useful to us. Links to screenshots are great!'
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
<FormRow>
|
<FormRow>
|
||||||
|
@ -65,7 +65,7 @@ class ReportPage extends React.Component {
|
||||||
onChange={event => {
|
onChange={event => {
|
||||||
this.onMessageChange(event);
|
this.onMessageChange(event);
|
||||||
}}
|
}}
|
||||||
placeholder={__('Description of your issue')}
|
placeholder={__('Description of your issue or feature request')}
|
||||||
/>
|
/>
|
||||||
</FormRow>
|
</FormRow>
|
||||||
<div className="card__actions">
|
<div className="card__actions">
|
||||||
|
|
Loading…
Add table
Reference in a new issue