Prep Launch of Release Candidate 1.0.0 (#1538)

* Prep launch of Release Candidate

* add RC to readme

* add steely referral links
This commit is contained in:
Daniel Ternyak 2018-04-16 20:32:17 -05:00 committed by GitHub
parent b2b1832e86
commit 699e4d6fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 10 deletions

View File

@ -1,4 +1,4 @@
# MyCrypto Beta (VISIT [MyCryptoHQ/mycrypto.com](https://github.com/MyCryptoHQ/mycrypto.com) for the current site)<br/>Just looking to download? Grab our [latest release](https://github.com/MyCryptoHQ/MyCrypto/releases)
# MyCrypto Beta RC (VISIT [MyCryptoHQ/mycrypto.com](https://github.com/MyCryptoHQ/mycrypto.com) for the current site)<br/>Just looking to download? Grab our [latest release](https://github.com/MyCryptoHQ/MyCrypto/releases)
[![Greenkeeper badge](https://badges.greenkeeper.io/MyCryptoHq/MyCrypto.svg)](https://greenkeeper.io/)
[![Coverage Status](https://coveralls.io/repos/github/MyCryptoHQ/MyCrypto/badge.svg?branch=develop)](https://coveralls.io/github/MyCryptoHQ/MyCrypto?branch=develop)

View File

@ -25,12 +25,13 @@ export default class BetaAgreement extends React.PureComponent<{}, State> {
return (
<div className={`BetaAgreement ${isFading}`}>
<div className="BetaAgreement-content">
<h2>Welcome to the New MyCrypto Beta!</h2>
<h2>Welcome to the New MyCrypto Beta Release Candidate!</h2>
<p>
You are about to use a version of MyCrypto that hasn't been released yet. While we are
confident that it is close to being production ready, you may want to use the current
production site for larger or more time-sensitive transactions.
You are about to use the new MyCrypto Beta Release Candidate. Although this is a release
candidate for production, we encourage caution while using this unreleased version of
MyCrypto.
</p>
<p>We hope to move this version of MyCrypto into production in the near future!</p>
<p>
Feedback and bug reports are greatly appreciated. You can file issues on our{' '}
<NewTabLink href="https://github.com/MyCryptoHQ/MyCrypto/issues">
@ -46,7 +47,7 @@ export default class BetaAgreement extends React.PureComponent<{}, State> {
className="BetaAgreement-content-buttons-btn is-continue"
onClick={this.doContinue}
>
Yes, continue to the Beta
Yes, continue to the Beta RC
</button>
<button className="BetaAgreement-content-buttons-btn is-reject" onClick={this.reject}>
No, take me to the production site

View File

@ -9,7 +9,7 @@ export const languages = require('./languages.json');
export const discordURL = 'https://discord.gg/VSaTXEA';
// Displays in the footer
export const VERSION = `${packageJson.version} (BETA)`;
export const VERSION = `${packageJson.version} (Release Candidate)`;
export const N_FACTOR = 8192;
// Displays at the top of the site, make message empty string to remove.
@ -18,7 +18,7 @@ export const N_FACTOR = 8192;
export const ANNOUNCEMENT_TYPE = '';
export const ANNOUNCEMENT_MESSAGE = (
<React.Fragment>
This is a Beta version of MyCrypto. Please submit any bug reports to our{' '}
This is a Beta Release Candidate of the new MyCrypto. Please submit any bug reports to our{' '}
<NewTabLink href="https://github.com/MyCryptoHQ/MyCrypto/issues">GitHub</NewTabLink> and use{' '}
<NewTabLink href="https://hackerone.com/mycrypto">HackerOne</NewTabLink> for critical
vulnerabilities. Join the discussion on <NewTabLink href={discordURL}>Discord</NewTabLink>.
@ -66,6 +66,7 @@ export const shapeshiftReferralURL = 'https://shapeshift.io';
export const ethercardReferralURL =
'https://ether.cards/?utm_source=mycrypto&utm_medium=cpm&utm_campaign=site';
export const keepkeyReferralURL = 'https://keepkey.go2cloud.org/aff_c?offer_id=1&aff_id=4086';
export const steelyReferralURL = 'https://stee.ly/2Hcl4RE';
export enum SecureWalletName {
WEB3 = 'web3',

View File

@ -4,7 +4,8 @@ import {
ledgerReferralURL,
trezorReferralURL,
ethercardReferralURL,
keepkeyReferralURL
keepkeyReferralURL,
steelyReferralURL
} from './data';
interface Link {
@ -77,6 +78,10 @@ export const affiliateLinks: Link[] = [
link: keepkeyReferralURL,
text: translateRaw('KEEPKEY_REFERRAL')
},
{
link: steelyReferralURL,
text: translateRaw('STEELY_REFERRAL')
},
{
link: ethercardReferralURL,
text: translateRaw('ETHERCARD_REFERAL')

View File

@ -395,6 +395,7 @@
"LEDGER_LOCKED": "Your Ledger device is locked",
"TREZOR_REFERAL": "Buy a TREZOR",
"KEEPKEY_REFERRAL": "Buy a Keepkey",
"STEELY_REFERRAL": "Get a Steely",
"ETHERCARD_REFERAL": "Get an ether.card",
"DISCLAIMER": "Disclaimer",
"INPUT_CONFIRM_PASSWORD_LABEL": "Confirm password",

View File

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