Skip to content

Commit

Permalink
Merge pull request #2285 from cosmos/fedekunze/2273-fix-atoms
Browse files Browse the repository at this point in the history
Fedekunze/2273 fix atoms
  • Loading branch information
faboweb authored Mar 15, 2019
2 parents 0107d6f + d53b911 commit 43074b4
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 16 deletions.
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,28 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.0-beta.20] - 2019-03-15

### Fixed

- [\#2273](https://github.com/cosmos/voyager/issues/2273) fixed atoms and uatoms conversion @fedekunze

## [1.0.0-beta.19] - 2019-03-15

### Added

- [\#2263](https://github.com/cosmos/voyager/pull/2263) Added guide on how to connect via a local full node to any network @faboweb

### Fixed

- Fix for inflation on our testnet
- [\#2257](https://github.com/cosmos/voyager/pull/2257) fixed console error on page validator if loading the page from URL @faboweb

### Changed

- [\#1337](https://github.com/cosmos/voyager/issues/1337) refactor unit tests: Page404, ShortBech32 @fedekunze
- [\#2255](https://github.com/cosmos/voyager/pull/2255) removed onboarding tutorial @fedekunze
- [\#2259](https://github.com/cosmos/voyager/issues/2259) removed PagePreferences @fedekunze
- [\#1337](https://github.com/cosmos/voyager/issues/1337) refactor unit tests: Page404, ShortBech32 @fedekunze

### Fixed

- Fix for inflation on our testnet
- [\#2257](https://github.com/cosmos/voyager/pull/2257) fixed console error on page validator if loading the page from URL @faboweb


## [1.0.0-beta.18] - 2019-03-14
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</div>
<div class="column">
<dl class="info_dl">
<dt>
<dt v-tooltip.top="depositTooltips.max_deposit_period">
Maximum Deposit Period
<i
v-tooltip.top="depositTooltips.max_deposit_period"
Expand Down Expand Up @@ -139,7 +139,7 @@
import { mapGetters } from "vuex"
import { atoms } from "../../scripts/num.js"
export default {
name: `tab-governance-parameters`,
name: `tab-staking-parameters`,
data: () => ({
atoms,
depositTooltips: {
Expand Down
2 changes: 1 addition & 1 deletion app/src/renderer/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default [
{
path: `governance-parameters`,
name: `Governance Parameters`,
component: require(`./components/governance/TabGovernanceParameters`).default
component: require(`./components/governance/TabParameters`).default
}
]
},
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cosmos-voyager",
"productName": "Cosmos Voyager",
"version": "1.0.0-beta.19",
"version": "1.0.0-beta.20",
"description": "Voyager is an electron-based user interface for the Cosmos Network.",
"author": "All In Bits, Inc <[email protected]>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -43,7 +43,7 @@
"frontend:fixed-https": "yarn frontend --cert 'server_dev.crt' --key 'server_dev.key'",
"connect": "concurrently -k \"yarn stargate\" \"yarn proxy\"",
"backend:new": "concurrently -k \"yarn connect\" \"yarn nodes 2\"",
"backend": "concurrently -k \"yarn connect\" \"yarn nodes 2 skip-rebuild\"",
"backend": "concurrently -k \"yarn yarn connect\" \"yarn nodes 2 skip-rebuild\"",
"backend:fixed-https": "concurrently -k \"yarn nodes 2 skip-rebuild\" \"yarn stargate --ssl-certfile 'server_dev.crt' --ssl-keyfile 'server_dev.key'\""
},
"devDependencies": {
Expand Down Expand Up @@ -149,4 +149,4 @@
"vuelidate": "0.7.3",
"vuex": "3.0.1"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import Vuelidate from "vuelidate"
import setup from "../../../helpers/vuex-setup"
import TabGovernanceParameters from "renderer/components/governance/TabGovernanceParameters"
import TabParameters from "renderer/components/governance/TabParameters"
import lcdClientMock from "renderer/connectors/lcdClientMock.js"

const { governanceParameters, stakingParameters } = lcdClientMock.state

describe(`TabGovernanceParameters`, () => {
describe(`TabParameters`, () => {
let wrapper, store
const { mount, localVue } = setup()
localVue.use(Vuelidate)
Expand All @@ -23,7 +23,7 @@ describe(`TabGovernanceParameters`, () => {
}

beforeEach(() => {
const instance = mount(TabGovernanceParameters, {
const instance = mount(TabParameters, {
localVue,
doBefore: ({ store }) => {
store.commit(`setGovParameters`, governanceParameters)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`TabGovernanceParameters has the expected html structure 1`] = `
exports[`TabParameters has the expected html structure 1`] = `
<div>
<div
class="parameters__details parameters__section"
Expand Down

0 comments on commit 43074b4

Please sign in to comment.