Skip to content

Commit

Permalink
Merge commit 'f62a00d337a8215e64407f40d812d614cb714c7e' into david/14…
Browse files Browse the repository at this point in the history
…02-proposal-creation
  • Loading branch information
David Braun authored and David Braun committed Nov 7, 2018
2 parents e7f63bb + f62a00d commit 2b22403
Show file tree
Hide file tree
Showing 56 changed files with 1,939 additions and 1,849 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Contract tests for `keys` endpoints in lcdClient. @NodeGuy
* Protected Gaia Lite process with a mutex to prevent locking error. @NodeGuy
* catching errors on cache encryption. @faboweb
* #1436 governance endpoints and vuex module @fedekunze
* [\#1436](https://github.com/cosmos/voyager/issues/1436) governance endpoints and vuex module @fedekunze
* [\#1482](https://github.com/cosmos/voyager/issues/1482) Added ESLint errors: no-var. @sgobotta
* [\#1449](https://github.com/cosmos/voyager/issues/1449) shortNumber to num scripts for more readable numbers. @jbibla
* [\#1464](https://github.com/cosmos/voyager/issues/1464) Added governance transactions to tx history page @fedekunze
* [\1401](https://github.com/cosmos/voyager/issues/1401) Display governance proposals index. @fedekunze
* [\#1472](https://github.com/cosmos/voyager/issues/1472) Added mock functionality for redelegation @fedekunze + @faboweb

### Changed

Expand All @@ -30,6 +33,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* [\#1496](https://github.com/cosmos/voyager/issues/1496) display validator pub_key instead of operator_address on livalidator and validator profile @jbibla
* made running a local node easier by reducing it to 2 commands and presetting an account. @faboweb
* [\#1504](https://github.com/cosmos/voyager/issues/1504) updates @tendermint/UI library @faboweb
* [\#1410](https://github.com/cosmos/voyager/issues/1410) removed end undelegations as not needed in the SDK anymore

### Fixed

Expand All @@ -42,6 +46,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* [\#1480](https://github.com/cosmos/voyager/issues/1480) Fixed false detection of node crash in e2e test start. @faboweb
* [\#1451](https://github.com/cosmos/voyager/issues/1451) Provide better sourcemaps to make debugging easier. @faboweb
* [\#1409](https://github.com/cosmos/voyager/issues/1409) Fixed disabled unbond and redelegation button when delegation amount was less than 1 @fedekunze
* [\#1517](https://github.com/cosmos/voyager/issues/1517) Fixed wrong account format used for querying selfBond @faboweb
* [\#1503](https://github.com/cosmos/voyager/issues/1503) Added e2e test for balance updates after delegation @faboweb

## [0.10.7] - 2018-10-10

Expand Down
14 changes: 4 additions & 10 deletions app/src/renderer/components/common/AppMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ menu.app-menu
@click.native="close" title="Staking"
v-bind:class="{ 'active': isValidatorPage }")
tm-list-item#app-menu__proposals(
to="/proposals"
to="/governance"
exact @click.native="close"
title="Proposals"
v-if="config.devMode")
title="Governance"
v-if="config.devMode || mockedConnector")
connected-network
</template>

Expand All @@ -40,13 +40,7 @@ export default {
UserPane
},
computed: {
...mapGetters([
`proposals`,
`validators`,
`config`,
`lastHeader`,
`mockedConnector`
]),
...mapGetters([`validators`, `config`, `lastHeader`, `mockedConnector`]),
isValidatorPage() {
return this.$route.params.validator
}
Expand Down
3 changes: 1 addition & 2 deletions app/src/renderer/components/common/TmBalance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
v-for="tab in tabs",
:class="{'tab-selected': $route.name === tab}",
)
span(v-if="$route.name === tab") {{ tab }}
router-link(v-else :to="{name: tab}") {{ tab }}
router-link(:to="{name: tab}") {{ tab }}
</template>
<script>
import num from "scripts/num"
Expand Down
215 changes: 0 additions & 215 deletions app/src/renderer/components/govern/ChartVotes.vue

This file was deleted.

83 changes: 0 additions & 83 deletions app/src/renderer/components/govern/LiProposal.vue

This file was deleted.

Loading

0 comments on commit 2b22403

Please sign in to comment.