Update Banners / Versions to Beta (#1040)

* update agreeement banner with beta nomenclature / styling

* update version

* remove v4 text

* adjust language

* more language
This commit is contained in:
Daniel Ternyak 2018-02-09 15:29:28 -06:00 committed by GitHub
parent 730feef3a6
commit 273b77b390
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 14 deletions

View File

@ -3,7 +3,7 @@
.AlphaAgreement {
@include cover-message;
background: $brand-warning;
background: $brand-info;
&-content {
&-buttons {

View File

@ -25,26 +25,25 @@ export default class AlphaAgreement extends React.PureComponent<{}, State> {
<div className="AlphaAgreement-content">
<h2>This is an Unstable Version of MyCrypto</h2>
<p>
You are about to access an alpha version of MyCrypto that is currently in development.
In its current state, it should only be used for testing, not for important
transactions.
You are about to access a beta version of MyCrypto that is currently in development. In
its current state, it should only be used for testing, not for important transactions.
</p>
<p>
Any wallets you generate should not hold a significant value, and any transactions you
make should be for small amounts. MyCrypto does not claim responsibility for any issues
that happen while using the alpha version.
that happen while using the beta version.
</p>
<p>Are you sure you would like to continue?</p>
<div className="AlphaAgreement-content-buttons">
<button className="AlphaAgreement-content-buttons-btn is-reject" onClick={this.reject}>
No, Take Me to v3
No, take me to prod
</button>
<button
className="AlphaAgreement-content-buttons-btn is-continue"
onClick={this.doContinue}
>
Yes, Continue to v4
Yes, continue to beta
</button>
</div>
</div>

View File

@ -125,7 +125,7 @@ export default class Footer extends React.PureComponent<Props> {
<p className="Footer-copyright">
&copy; {new Date().getFullYear()} MyCrypto, LLC{' '}
<span className="Footer-copyright-spacer">&middot;</span> v{VERSION}
<span className="Footer-copyright-spacer">&middot;</span> {VERSION}
</p>
<Disclaimer />

View File

@ -4,7 +4,7 @@ import { getValues } from '../utils/helpers';
export const languages = require('./languages.json');
// Displays in the header
export const VERSION = '4.0.0 (Alpha 0.1.0)';
export const VERSION = '(BETA) 0.1.0';
export const N_FACTOR = 8192;
// Displays at the top of the site, make message empty string to remove.
@ -13,12 +13,12 @@ export const N_FACTOR = 8192;
export const ANNOUNCEMENT_TYPE = 'warning';
export const ANNOUNCEMENT_MESSAGE = (
<div>
This is an Alpha build of MyCrypto v4. Please only use for testing, or use v3 at{' '}
<a href="https://myetherwallet.com">{'https://myetherwallet.com'}</a>.
This is an early build of MyCrypto Beta. Please only use for testing, or use production at{' '}
<a href="https://mycrypto.com">{'https://mycrypto.com'}</a>.
<br />
<span className="hidden-xs">
If you're interested in recieving updates about the MyCrypto V4 Alpha, you can subscribe via{' '}
<a href="https://myetherwallet.us16.list-manage.com/subscribe?u=afced8afb6eb2968ba407a144&id=15a7c74eab">
If you're interested in recieving updates about the MyCrypto Beta, you can subscribe via{' '}
<a href="https://mycrypto.us17.list-manage.com/subscribe?u=6092be560275431280b0ffbc1&id=a03ef384e4">
mailchimp
</a>{' '}
:)

View File

@ -1,7 +1,7 @@
{
"name": "MyCrypto",
"author": "MyCryptoHQ",
"version": "4.0.0-alpha.1",
"version": "0.1.0",
"main": "main.js",
"description": "MyCrypto web and electron app",
"repository": "https://github.com/MyCryptoHQ/MyCrypto",