From 273b77b390906ccfd9f5bd8c5e4a0f422f423b26 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Fri, 9 Feb 2018 15:29:28 -0600 Subject: [PATCH] Update Banners / Versions to Beta (#1040) * update agreeement banner with beta nomenclature / styling * update version * remove v4 text * adjust language * more language --- common/components/AlphaAgreement/index.scss | 2 +- common/components/AlphaAgreement/index.tsx | 11 +++++------ common/components/Footer/index.tsx | 2 +- common/config/data.tsx | 10 +++++----- package.json | 2 +- 5 files changed, 13 insertions(+), 14 deletions(-) diff --git a/common/components/AlphaAgreement/index.scss b/common/components/AlphaAgreement/index.scss index ea5fab97..18665d51 100644 --- a/common/components/AlphaAgreement/index.scss +++ b/common/components/AlphaAgreement/index.scss @@ -3,7 +3,7 @@ .AlphaAgreement { @include cover-message; - background: $brand-warning; + background: $brand-info; &-content { &-buttons { diff --git a/common/components/AlphaAgreement/index.tsx b/common/components/AlphaAgreement/index.tsx index 81999354..7ec4b42a 100644 --- a/common/components/AlphaAgreement/index.tsx +++ b/common/components/AlphaAgreement/index.tsx @@ -25,26 +25,25 @@ export default class AlphaAgreement extends React.PureComponent<{}, State> {

This is an Unstable Version of MyCrypto

- 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.

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.

Are you sure you would like to continue?

diff --git a/common/components/Footer/index.tsx b/common/components/Footer/index.tsx index 6373bb63..2064ba88 100644 --- a/common/components/Footer/index.tsx +++ b/common/components/Footer/index.tsx @@ -125,7 +125,7 @@ export default class Footer extends React.PureComponent {

© {new Date().getFullYear()} MyCrypto, LLC{' '} - · v{VERSION} + · {VERSION}

diff --git a/common/config/data.tsx b/common/config/data.tsx index 3fb093ad..01ac1a9d 100644 --- a/common/config/data.tsx +++ b/common/config/data.tsx @@ -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 = (
- This is an Alpha build of MyCrypto v4. Please only use for testing, or use v3 at{' '} - {'https://myetherwallet.com'}. + This is an early build of MyCrypto Beta. Please only use for testing, or use production at{' '} + {'https://mycrypto.com'}.
- If you're interested in recieving updates about the MyCrypto V4 Alpha, you can subscribe via{' '} - + If you're interested in recieving updates about the MyCrypto Beta, you can subscribe via{' '} + mailchimp {' '} :) diff --git a/package.json b/package.json index 4378d7c5..e8bc4820 100644 --- a/package.json +++ b/package.json @@ -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",