Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

automatic release created for v0.10003.2 #1839

Merged
merged 7 commits into from
Jan 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -149,6 +151,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