Skip to content

Commit

Permalink
Merge pull request #1839 from cosmos/release-candidate/v0.10003.2
Browse files Browse the repository at this point in the history
automatic release created for v0.10003.2
  • Loading branch information
faboweb authored Jan 16, 2019
2 parents 1d0146d + b2d2b13 commit b2eb385
Show file tree
Hide file tree
Showing 8 changed files with 1,656 additions and 205 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ docs/cosmos-voyager
.idea/*
server_dev.key
server_dev.crt
Cosmos_*
app/networks/*
app/package.json
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.10003.2] - 2019-01-16

### Added

- Contract tests for `keys` endpoints in lcdClient. @NodeGuy
Expand Down Expand Up @@ -150,6 +152,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- [\#1791](https://github.com/cosmos/voyager/pull/1791) Fixed a problem with initializing the Voyager config dir @faboweb
- [\#1707](https://github.com/cosmos/voyager/issues/1707) Governance txs are now disabled if the user doesn't hold any min_deposit token @fedekunze
- [\#1815](https://github.com/cosmos/voyager/pull/1815) Fixed getters for proposals denominator, reverted to 945803d586b83d65547cd16f4cd5994eac2957ea until interfaces are ready @sabau
- Fixed build process @ƒaboweb

## [0.10.7] - 2018-10-10

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ async function pickAndConnect() {
}

async function connect() {
log(`starting gaia rest server with nodeURL ${config.node_lcd}`)
log(`starting gaia rest server with nodeURL ${config.node_rpc}`)

const { ca, process } = await startLCD(lcdHome, config.node_rpc)
gaiaLiteProcess = process
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cosmos-voyager",
"productName": "Cosmos Voyager",
"version": "0.8001.1",
"version": "0.10003.2",
"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
2 changes: 1 addition & 1 deletion tasks/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:9.11.1
FROM node:10.13.0

COPY installWine.sh /
RUN /installWine.sh
Expand Down
5 changes: 1 addition & 4 deletions tasks/build/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@ const copyGaia = options => (

const binaryPath =
options.binaryPath === `default`
? path.join(
__dirname,
`../../builds/Gaia/${platformPath}_amd64/${binaryName}`
)
? path.join(`./builds/Gaia/${platformPath}_amd64/${binaryName}`)
: options.binaryPath
fs.copy(binaryPath, `${buildPath}/bin/${binaryName}`, callback)
}
Expand Down
4 changes: 2 additions & 2 deletions tasks/gaia.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ const osFolderName = {
}[process.platform]
let cliBinary =
process.env.BINARY_PATH ||
path.join(__dirname, `../builds/Gaia/`, osFolderName, `gaiacli`)
path.join(`./builds/Gaia/`, osFolderName, `gaiacli`)

let nodeBinary =
process.env.NODE_BINARY_PATH ||
path.join(__dirname, `../builds/Gaia/`, osFolderName, `gaiad`)
path.join(`./builds/Gaia/`, osFolderName, `gaiad`)
const defaultStartPort = 26656
const getStartPort = nodeNumber => defaultStartPort - (nodeNumber - 1) * 3

Expand Down
Loading

0 comments on commit b2eb385

Please sign in to comment.