Merge pull request #1133 from MyCryptoHQ/develop

Tag Beta 0.3.2
This commit is contained in:
Daniel Ternyak 2018-02-17 18:49:50 -06:00 committed by GitHub
commit c5e532082a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -137,8 +137,8 @@ export class WalletDecrypt extends Component<Props, State> {
// index signature should become [key: Wallets] (from config) once typescript bug is fixed // index signature should become [key: Wallets] (from config) once typescript bug is fixed
public WALLETS: Wallets = { public WALLETS: Wallets = {
[SecureWalletName.WEB3]: { [SecureWalletName.WEB3]: {
lid: WEB3_TYPE && WEB3_TYPES ? WEB3_TYPES[WEB3_TYPE].lid : 'x_Web3', lid: WEB3_TYPE && WEB3_TYPES[WEB3_TYPE] ? WEB3_TYPES[WEB3_TYPE].lid : 'x_Web3',
icon: WEB3_TYPE && WEB3_TYPES && WEB3_TYPES[WEB3_TYPE].icon, icon: WEB3_TYPE && WEB3_TYPES[WEB3_TYPE] && WEB3_TYPES[WEB3_TYPE].icon,
description: 'ADD_Web3Desc', description: 'ADD_Web3Desc',
component: Web3Decrypt, component: Web3Decrypt,
initialParams: {}, initialParams: {},

View File

@ -4,7 +4,7 @@ import { getValues } from '../utils/helpers';
export const languages = require('./languages.json'); export const languages = require('./languages.json');
// Displays in the footer // Displays in the footer
export const VERSION = '0.3.1 (BETA)'; export const VERSION = '0.3.2 (BETA)';
export const N_FACTOR = 8192; export const N_FACTOR = 8192;
// Displays at the top of the site, make message empty string to remove. // Displays at the top of the site, make message empty string to remove.

View File

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