Skip to content
This repository has been archived by the owner on Mar 28, 2020. It is now read-only.

Commit

Permalink
v0.7.0 (#125)
Browse files Browse the repository at this point in the history
v0.7.0
  • Loading branch information
andrerfneves authored May 29, 2019
2 parents 5921689 + 0a5ead8 commit 4d780f2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 36 deletions.
61 changes: 26 additions & 35 deletions app/views/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import React, { PureComponent, Fragment } from 'react';
import styled from 'styled-components';
import electron from 'electron'; // eslint-disable-line import/no-extraneous-dependencies

import { WalletSummaryComponent } from '../components/wallet-summary';
import { TransactionDailyComponent } from '../components/transaction-daily';
Expand Down Expand Up @@ -129,41 +130,31 @@ export class DashboardView extends PureComponent<Props> {
/>
))
)}
<ConfirmDialogComponent
title='Welcome to Zepio'
onConfirm={(toggle) => {
store.set(DISPLAY_WELCOME_MODAL, false);
toggle();
}}
onClose={() => store.set(DISPLAY_WELCOME_MODAL, false)}
showSingleConfirmButton
singleConfirmButtonText='Ok. Let me in!'
isVisible={this.shouldShowWelcomeModal()}
>
{() => (
<ModalContent>
<ContentWrapper>
<LogoComponent
src={zepioLogo}
alt='Zepio'
/>
<TitleComponent
value='Hello from Zepio'
isBold
/>
<WelcomeText
value='Zepio is a cross-platform full-node Zcash wallet that allows users to easily send and receive ZEC. With first-class support for Sapling shielded addresses, users are able to create truly private transactions using a modern and intuitive interface.'
/>
<WelcomeText
value='Zepio aims to improve the user experience for those seeking true financial privacy online.'
/>
<AdditionalText
value='Zepio will need to sync the Zcash blockchain data before using all features.'
/>
</ContentWrapper>
</ModalContent>
)}
</ConfirmDialogComponent>
{electron.remote.process.env.NODE_ENV !== 'test' && (
<ConfirmDialogComponent
title='Welcome to Zepio'
onConfirm={(toggle) => {
store.set(DISPLAY_WELCOME_MODAL, false);
toggle();
}}
onClose={() => store.set(DISPLAY_WELCOME_MODAL, false)}
showSingleConfirmButton
singleConfirmButtonText='Ok. Let me in!'
isVisible={this.shouldShowWelcomeModal()}
>
{() => (
<ModalContent>
<ContentWrapper>
<LogoComponent src={zepioLogo} alt='Zepio' />
<TitleComponent value='Hello from Zepio' isBold />
<WelcomeText value='Zepio is a cross-platform full-node Zcash wallet that allows users to easily send and receive ZEC. With first-class support for Sapling shielded addresses, users are able to create truly private transactions using a modern and intuitive interface.' />
<WelcomeText value='Zepio aims to improve the user experience for those seeking true financial privacy online.' />
<AdditionalText value='Zepio will need to sync the Zcash blockchain data before using all features.' />
</ContentWrapper>
</ModalContent>
)}
</ConfirmDialogComponent>
)}
</Fragment>
);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zepio",
"productName": "Zepio",
"version": "0.6.3",
"version": "0.7.0",
"description": "Zepio | Cross-platform sapling-enabled full-node Zcash wallet",
"main": "config/main.js",
"homepage": "https://zepiowallet.com",
Expand Down

0 comments on commit 4d780f2

Please sign in to comment.