Skip to content

Commit

Permalink
Merge pull request #319 from crypto-com/v0.1.0-ChangeLog
Browse files Browse the repository at this point in the history
V0.1.0 change log release - Lots of pre mainnet release improvements were added in this release
  • Loading branch information
crypto-eddy authored Mar 24, 2021
2 parents 82e9d74 + d59aeda commit 0c6b6fe
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file.

*Released*


## [v0.1.0] - 2021-03-24

### Additions
- First release with mainnet configuration support
- Added capability to customize gas limit and network fee on transactions
- Introduced a capability to specify address index for Ledger wallet creations
- Added support for re-delegation in the wallet

## [v0.0.25] - 2021-03-12

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chain-desktop-wallet",
"version": "0.0.25",
"version": "0.1.0",
"description": "Crypto.com Chain Desktop Wallet App",
"repository": "github:crypto-com/chain-desktop-wallet",
"author": "Crypto.org <[email protected]>",
Expand Down
5 changes: 4 additions & 1 deletion src/layouts/home/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import IconWallet from '../../svg/IconWallet';
import ModalPopup from '../../components/ModalPopup/ModalPopup';
import { walletService } from '../../service/WalletService';
import { Session } from '../../models/Session';
import packageJson from '../../../package.json';

interface HomeLayoutProps {
children?: React.ReactNode;
Expand Down Expand Up @@ -229,12 +230,14 @@ function HomeLayout(props: HomeLayoutProps) {
);
};

const buildVersion = packageJson.version;

return (
<main className="home-layout">
<Layout>
<Sider>
<div className="logo" />
<div className="version">SAMPLE WALLET v0.0.1</div>
<div className="version">SAMPLE WALLET v{buildVersion}</div>
<HomeMenu />
<Dropdown
overlay={<WalletMenu />}
Expand Down

0 comments on commit 0c6b6fe

Please sign in to comment.