Skip to content

Commit

Permalink
Merge pull request #2276 from cosmos/release-candidate/v1.0.0-beta.19
Browse files Browse the repository at this point in the history
automatic release created for v1.0.0-beta.19
  • Loading branch information
faboweb authored Mar 15, 2019
2 parents 3a010ff + 2fe7fca commit 3e49d77
Show file tree
Hide file tree
Showing 32 changed files with 1,103 additions and 1,335 deletions.
2 changes: 2 additions & 0 deletions .aws/first.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ echo ${PASSWORD} | ./gaiacli keys add ${ACCOUNT} --home . > account_address.log
echo ${PASSWORD} | ./gaiad gentx --name ${ACCOUNT} --home . --home-client .
./gaiad collect-gentxs --home .

sed -i .bak -e 's/\"inflation\".*$/\"inflation\":\ \"0.000000001300000000\",/' -e 's/\"inflation_max\".*$/\"inflation_max\":\ \"0.000000002000000000\",/' -e 's/\"inflation_min\".*$/\"inflation_min\":\ \"0.000000000700000000\",/' -e 's/\"goal_bonded\".*$/\"goal_bonded\":\ \"0.000000006700000000\",/' ./genesis.json

# Make our genesis avaialable to the secondary nodes
aws s3 cp config/genesis.json s3://cosmos-gaia/genesis.json

Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [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

- [\#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


## [1.0.0-beta.18] - 2019-03-14

### Fixed
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,17 @@ Once you've generated a local account, run Voyager on the default `local-testnet
yarn start
```

### Set up Cosmos Wallet on a different network

Start a full node for the network that you want to connect to (See [guide](https://cosmos.network/docs/gaia/join-mainnet.html#setting-up-a-new-node)).


Then start Cosmos Wallet without the local testnet:

```bash
yarn frontend & yarn connect
```

## Testing

If you would like to run all the tests you can run:
Expand Down
60 changes: 0 additions & 60 deletions app/src/renderer/components/common/AnchorCopy.vue

This file was deleted.

5 changes: 5 additions & 0 deletions app/src/renderer/components/common/Page404.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<ul>
<li>
<router-link to="/">
Network
</router-link>
</li>
<li>
<router-link to="/wallet">
Wallet
</router-link>
</li>
Expand Down
73 changes: 0 additions & 73 deletions app/src/renderer/components/common/PagePreferences.vue

This file was deleted.

17 changes: 14 additions & 3 deletions app/src/renderer/components/common/TmField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@
<div>{{ resolvedOptions.unchecked }}</div>
</div>
<div class="toggle-handle" />
<input :value="currentToggleState" type="checkbox" @change="onChange">
<input
:disabled="isDisabled"
:value="currentToggleState"
type="checkbox"
@change="onChange"
>
</div>
</label>

Expand Down Expand Up @@ -110,6 +115,10 @@ export default {
keydown: {
type: Function,
default: null
},
isDisabled: {
type: Boolean,
default: false
}
},
data: () => ({
Expand Down Expand Up @@ -153,8 +162,10 @@ export default {
},
methods: {
toggle() {
this.currentToggleState = !this.currentToggleState
this.onChange(this.currentToggleState)
if (!this.isDisabled) {
this.currentToggleState = !this.currentToggleState
this.onChange(this.currentToggleState)
}
},
updateValue(value) {
let formattedValue = value
Expand Down
49 changes: 0 additions & 49 deletions app/src/renderer/components/common/TmLiCopy.vue

This file was deleted.

3 changes: 0 additions & 3 deletions app/src/renderer/components/common/ToolBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
<i v-tooltip.bottom="'Refresh'" class="material-icons">refresh</i>
</a>
<slot />
<router-link v-if="session.signedIn" id="settings" to="/preferences">
<i v-tooltip.bottom="'Preferences'" class="material-icons">settings</i>
</router-link>
<a
v-if="session.signedIn"
id="signOut-btn"
Expand Down
15 changes: 9 additions & 6 deletions app/src/renderer/components/staking/PageValidator.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<template>
<tm-page data-title="Validator">
<tm-data-loading v-if="delegates.loading" />
<tm-data-error v-else-if="delegates.loaded && !validator" />
<template v-else>
<tm-page
:loading="delegates.loading"
:loaded="delegates.loaded"
:error="delegates.error"
:data-empty="!validator"
data-title="Validator"
>
<template v-if="validator" slot="managed-body">
<!-- we need the v-if as the template somehow is rendered in any case -->
<div class="page-profile__header page-profile__section">
<div class="row">
<img
Expand Down Expand Up @@ -176,7 +181,6 @@ import { calculateTokens } from "scripts/common"
import { mapGetters } from "vuex"
import { percent, pretty, atoms, full } from "scripts/num"
import TmBtn from "common/TmBtn"
import TmDataError from "common/TmDataError"
import { shortAddress, ratToBigNumber } from "scripts/common"
import DelegationModal from "staking/DelegationModal"
import UndelegationModal from "staking/UndelegationModal"
Expand All @@ -190,7 +194,6 @@ export default {
DelegationModal,
UndelegationModal,
TmBtn,
TmDataError,
TmPage
},
data: () => ({
Expand Down
6 changes: 0 additions & 6 deletions app/src/renderer/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@ export default [
name: `validator`,
component: require(`./components/staking/PageValidator`).default
},
{
path: `/preferences`,
name: `preferences`,
component: require(`./components/common/PagePreferences`).default,
meta: { requiresAuth: true }
},
{
path: `/wallet`,
name: `wallet`,
Expand Down
1 change: 0 additions & 1 deletion app/src/renderer/vuex/getters.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export const lastPage = state => {
state.session.history[state.session.history.length - 1]
)
}
export const onboarding = state => state.onboarding

// wallet
export const transactions = state => state.transactions
Expand Down
1 change: 0 additions & 1 deletion app/src/renderer/vuex/modules/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export default opts => ({
delegation: require(`./delegation.js`).default(opts),
connection: require(`./connection.js`).default(opts),
notifications: require(`./notifications.js`).default(opts),
onboarding: require(`./onboarding.js`).default(opts),
proposals: require(`./governance/proposals.js`).default(opts),
votes: require(`./governance/votes.js`).default(opts),
deposits: require(`./governance/deposits.js`).default(opts),
Expand Down
Loading

0 comments on commit 3e49d77

Please sign in to comment.