File tree Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
66
77* Released*
88
9+ ## [ v0.2.0] - 2021-04-17
10+
11+ ### Additions
12+ - Governance support added to the desktop wallet app
13+ - Supporting all proposal types listing and grouping
14+ - Support vote broadcasting on current selected proposal
15+
916## [ v0.1.6] - 2021-04-14
1017
1118### Additions
Original file line number Diff line number Diff line change 11{
22 "name" : " chain-desktop-wallet" ,
3- "version" : " 0.1.6 " ,
3+ "version" : " 0.2.0 " ,
44 "description" : " Crypto.com Chain Desktop Wallet App" ,
55 "repository" : " github:crypto-com/chain-desktop-wallet" ,
66 "author" :
" Crypto.org <[email protected] >" ,
Original file line number Diff line number Diff line change 8888 .ant-card-head-title {
8989 color : @azure ;
9090 }
91+ .vote-result-section {
92+ padding-bottom : 10px ;
93+ }
9194 .ant-radio-group {
9295 width : 100% ;
9396 text-align : center ;
Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ const GovernancePage = () => {
386386 < Sider width = "300px" >
387387 < Spin spinning = { isLoadingTally } tip = "Loading latest results" >
388388 < Card title = "Current results" style = { { padding : '4px' } } >
389- < div >
389+ < div className = "vote-result-section" >
390390 Yes - Support
391391 < br />
392392 { /* Vote: {proposalFigures.yes.vote} */ }
@@ -400,7 +400,8 @@ const GovernancePage = () => {
400400 } }
401401 />
402402 </ div >
403- < div >
403+
404+ < div className = "vote-result-section" >
404405 No - Do not support
405406 < br />
406407 { /* Vote: {proposalFigures.no.vote} */ }
@@ -414,7 +415,8 @@ const GovernancePage = () => {
414415 status = "normal"
415416 />
416417 </ div >
417- < div >
418+
419+ < div className = "vote-result-section" >
418420 No with Veto - Do not support
419421 < br />
420422 { /* Vote: {proposalFigures.no.vote} */ }
@@ -428,7 +430,8 @@ const GovernancePage = () => {
428430 status = "normal"
429431 />
430432 </ div >
431- < div >
433+
434+ < div className = "vote-result-section" >
432435 Abstain - Undecided
433436 < br />
434437 { /* Vote: {proposalFigures.no.vote} */ }
You can’t perform that action at this time.
0 commit comments