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

Commit

Permalink
v0.7.1 (#135)
Browse files Browse the repository at this point in the history
v0.7.1
  • Loading branch information
andrerfneves committed May 29, 2019
2 parents df42763 + 0ff2147 commit 6229a35
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 32 deletions.
4 changes: 2 additions & 2 deletions __tests__/components/transactions-daily.test.js
Expand Up @@ -48,7 +48,7 @@ describe('<TransactionDailyComponent />', () => {
zecPrice: 1.345,
date: '2019-02-20T19:31:57.117Z',
theme: appTheme,
fees: 0.001,
fees: 0.0001,
confirmations: 10,
confirmed: true,
},
Expand All @@ -60,7 +60,7 @@ describe('<TransactionDailyComponent />', () => {
zecPrice: 1.344,
date: '2019-02-20T19:31:57.117Z',
theme: appTheme,
fees: 0.001,
fees: 0.0001,
confirmed: false,
confirmations: 3,
},
Expand Down
6 changes: 3 additions & 3 deletions app/constants/fees.js
@@ -1,8 +1,8 @@
// @flow

export const FEES = {
LOW: 0.001,
MEDIUM: 0.005,
HIGH: 0.009,
LOW: 0.0001,
MEDIUM: 0.0005,
HIGH: 0.0009,
CUSTOM: 'custom',
};
53 changes: 27 additions & 26 deletions app/views/settings.js
Expand Up @@ -373,32 +373,33 @@ export class SettingsView extends PureComponent<Props, State> {

return (
<Wrapper>
<ConfirmDialogComponent
title='Confirm'
onConfirm={() => updateZcashNetwork(zcashNetwork === MAINNET ? TESTNET : MAINNET)}
showButtons={embeddedDaemon}
renderTrigger={toggleVisibility => (
<ThemeSelectWrapper>
<SettingsTitle value='Zcash Network' />
<SelectComponent
onChange={value => (zcashNetwork !== value ? toggleVisibility() : undefined)}
value={zcashNetwork}
options={networkOptions}
/>
</ThemeSelectWrapper>
)}
>
{() => (
<ModalContent>
<TextComponent
value={
embeddedDaemon ? CONFIRM_RELAUNCH_CONTENT : RUNNING_NON_EMBEDDED_DAEMON_WARNING
}
/>
</ModalContent>
)}
</ConfirmDialogComponent>

{embeddedDaemon && (
<ConfirmDialogComponent
title='Confirm'
onConfirm={() => updateZcashNetwork(zcashNetwork === MAINNET ? TESTNET : MAINNET)}
showButtons={embeddedDaemon}
renderTrigger={toggleVisibility => (
<ThemeSelectWrapper>
<SettingsTitle value='Zcash Network' />
<SelectComponent
onChange={value => (zcashNetwork !== value ? toggleVisibility() : undefined)}
value={zcashNetwork}
options={networkOptions}
/>
</ThemeSelectWrapper>
)}
>
{() => (
<ModalContent>
<TextComponent
value={
embeddedDaemon ? CONFIRM_RELAUNCH_CONTENT : RUNNING_NON_EMBEDDED_DAEMON_WARNING
}
/>
</ModalContent>
)}
</ConfirmDialogComponent>
)}
<ThemeSelectWrapper>
<SettingsTitle value='Theme' />
<SelectComponent
Expand Down
12 changes: 11 additions & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "zepio",
"productName": "Zepio",
"version": "0.7.0",
"version": "0.7.1",
"description": "Zepio | Cross-platform sapling-enabled full-node Zcash wallet",
"main": "config/main.js",
"homepage": "https://zepiowallet.com",
Expand Down Expand Up @@ -83,6 +83,16 @@
"deb"
]
},
"deb": {
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3"
]
},
"mac": {
"category": "public.app-category.productivity",
"type": "distribution",
Expand Down

0 comments on commit 6229a35

Please sign in to comment.