Skip to content

Commit

Permalink
v1.0.1-RC3 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
MButcho authored Jan 6, 2021
1 parent 56504f0 commit c11cecd
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions docs/build-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,23 @@ npm run dist-linux;


## Checksum:
1.0.1-RC2
1.0.1-RC3

windows:

openssl dgst -sha512 -binary Elastos-Light-Wallet-Setup-1.0.1-RC2.exe | openssl base64 -A
openssl dgst -sha512 -binary Elastos-Light-Wallet-Setup-1.0.1-RC3.exe | openssl base64 -A

xxxx

Ubuntu 18:

openssl sha -sha512 Elastos-Light-Wallet-1.0.1-RC2.AppImage
openssl sha -sha512 Elastos-Light-Wallet-1.0.1-RC3.AppImage

xxxx

Mac:

openssl dgst -sha512 Elastos-Light-Wallet-1.0.1-RC2.dmg
openssl dgst -sha512 Elastos-Light-Wallet-1.0.1-RC3.dmg

xxxx

Expand All @@ -77,13 +77,13 @@ npm ls node-gyp


# to auto build a releases
git commit -am v1.0.1-RC2;
git tag v1.0.1-RC2;
git commit -am v1.0.1-RC3;
git tag v1.0.1-RC3;
git push;
git push --tags;

## to delete release tags
git push --delete origin v1.0.1-RC2;
git tag -d v1.0.1-RC2;
git push --delete origin v1.0.1-RC3;
git tag -d v1.0.1-RC3;
git pull;
git push;
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "elastos-light-wallet",
"version": "v1.0.1-RC2",
"version": "v1.0.1-RC3",
"description": "elastos light wallet",
"productName": "Elastos Light Wallet",
"main": "index.js",
Expand Down
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1047,13 +1047,13 @@ button {
.utxo-custom-text-home {
position: absolute;
top: 419px;
left: 522px;
left: 510px;
}

.utxo-custom-text-voting {
position: absolute;
top: 461px;
left: 790px;
left: 755px;
}

.dark-font {
Expand Down
4 changes: 2 additions & 2 deletions views/home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ module.exports = (props) => {
<div className="fees-text">Fees (in Satoshi ELA)</div>
<button tabIndex="4" className="next-button scale-hover" onClick={(e) => showConfirmAndSeeFees()}><p>Next</p></button>
<button style={App.showConsolidateButton() ? {display: 'block'} : {display: 'none'}} className="consolidate-button dark-hover cursor_def" title={consolidateTitle} onClick={(App.getPasswordFlag()) ? (e) => showConsolidateModal() : (e) => consolidateUTXOs()}>Consolidate ({consolidesCount})<img src="artwork/arrow.svg" alt="" className="arrow-forward"/></button>
<div style={App.getCustomUTXOs() ? {display: 'block'} : {display: 'none'}} className="utxo-custom-text-home utxo-custom-text" title="Update selected UTXOs by CTRL+u or CMD+u">Selected ({App.getSelectedUTXOs().length}/{App.getTotalUTXOs()})</div>
<div style={App.getCustomUTXOs() ? {display: 'block'} : {display: 'none'}} className="utxo-custom-text-home utxo-custom-text" title="Update selected UTXOs by CTRL+u or CMD+u">Selected UTXOs ({App.getSelectedUTXOs().length}/{App.getTotalUTXOs()})</div>
</div>);
}

Expand Down Expand Up @@ -259,7 +259,7 @@ module.exports = (props) => {
<div className="logo-info">
<Branding/>
<header>
<img src="artwork/refreshicon.svg" className="refresh-icon" title="Refresh Blockchain Data1" onClick={(e) => App.requestBlockchainData(true)} />
<img src="artwork/refreshicon.svg" className="refresh-icon" title="Refresh" onClick={(e) => App.requestBlockchainData(true)} />
<nav id="homeMenuOpen" title="Menu" onClick={(e) => showMenu()}>
<img src="artwork/nav.svg" className="nav-icon dark-hover" onClick={(e) => showMenu()}/>
</nav>
Expand Down
2 changes: 1 addition & 1 deletion views/voting.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ module.exports = (props) => {
<div className="voting-row3">
<button className='votingselect-button scale-hover' title="Select previous voting list" onClick={() => App.selectActiveVotes()} >Select Previous</button>
<button className='votingselect-button marginright_auto scale-hover' title='Clear Selection' onClick={() => App.clearSelection()}>Clear Selection</button>
<div style={App.getCustomUTXOs() ? {display: 'block'} : {display: 'none'}} className="utxo-custom-text-voting utxo-custom-text" title="Update selected UTXOs by CTRL+u or CMD+u">Selected ({App.getSelectedUTXOs().length}/{App.getTotalUTXOs()})</div>
<div style={App.getCustomUTXOs() ? {display: 'block'} : {display: 'none'}} className="utxo-custom-text-voting utxo-custom-text" title="Update selected UTXOs by CTRL+u or CMD+u">Selected UTXOs ({App.getSelectedUTXOs().length}/{App.getTotalUTXOs()})</div>
<button onClick={App.getPasswordFlag() ? (e) => showVoteModal() : (e) => sendVote()} className="scale-hover voting-button">Vote</button>
</div>

Expand Down

0 comments on commit c11cecd

Please sign in to comment.