Skip to content

Commit

Permalink
Merge branch 'develop' into fabo/1447-no-titles
Browse files Browse the repository at this point in the history
  • Loading branch information
faboweb authored Oct 17, 2018
2 parents 705d708 + ae1c4c6 commit f55524e
Show file tree
Hide file tree
Showing 43 changed files with 463 additions and 629 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Added

* Protected Gaia Lite process with a mutex to prevent locking error. @NodeGuy
* catching errors on cache encryption. @faboweb

### Changed

* Changed minor component of version number to match testnet version. @NodeGuy
* Removed titles from all pages. @faboweb
* #1183 Changed a bunch of JavaScript files to strict mode. @NodeGuy
* Updated contribution guidelines. @faboweb
* #1447 Removed titles from all pages. @faboweb

### Fixed

* Fixed gaia binary not be found on linux and windows in development @faboweb

## [0.10.7] - 2018-10-10

Expand Down Expand Up @@ -89,6 +100,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Refactord submitDelegation. @NodeGuy
* Improved network connectivity bar @jbibla
* refactored words around staking and delegation @jbibla
* the remote lcd and rpc endpoints can now be specified individually in the config.toml and via environment variables @faboweb
* most endpoints use the remote lcd directly to improve performance @faboweb
* Moved Vue error handling code from console_error_throw.js to main.js @NodeGuy

### Fixed
Expand Down
14 changes: 10 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@ Thank you for your interest in contributing to Voyager. We've written up some gu

## Issue Guidelines

* Before you file an issue, make sure to have read the [README](https://github.com/cosmos/voyager/blob/develop/README.md) and followed the instructions correctly.
* Please label the issue either bug or proposal according to its purpose.
* Please state the version of the UI.
* Please describe the bug or your proposed change to the software in as much detail as possible.
* When screenshots can be used to describe the bug/proposal, please include them .
* If you report a bug, please provide the log content and the steps required to reproduce the bug. The logs can be found at `%USER_HOME%/.cosmos-voyager/main.log`
* Please state the version (or commit) of the UI.
* Please describe the bug or your proposed change to the software in as much detail as possible. The faster we can reproduce the bug, the faster we can fix it.
* When screenshots can be used to describe the bug/proposal, please include them.
* If you report a bug, please provide the log content and the steps required to reproduce the bug. The logs can be found at `%USER_HOME%/.cosmos-voyager[-dev]/{network}/main.log`.

## Pull Request Guidelines

* Please confirm that your pull request will pass our linting and unit tests.
* Please make sure your code is properly tested, so that the code coverage is not decreasing.
* Please write `closes #123` somewhere in the pull request. #123 is the issue number you are attempting to fix with this PR. This string will automatically close the issue when the PR is merged.
* If this PR produces a visible change, please provide screenshots showing these changes.
* If the change is difficult to understand, please provide a description on why and how the change helps Voyager.

## Release

* To make an official release, follow the instructions in [docs/release.md](https://github.com/cosmos/voyager/blob/develop/docs/release.md).
25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,18 +226,19 @@ Import the account with the 12 word seed phrase you wrote down earlier.

A list of all environment variables and their purpose:

| Variable | Values | default | Purpose |
| ----------------------- | -------------------------------------- | -------------------------------- | -------------------------------------------------------------------------------------------- |
| NODE_ENV | 'production', 'development' | | |
| LOGGING | 'true', 'false' | 'true' | Disable logging |
| COSMOS_NETWORK | {path to network configuration folder} | '../networks/gaia-7001' | Network to connect to |
| COSMOS_HOME | {path to config persistence folder} | '$HOME/.cosmos-voyager[-dev]' | |
| COSMOS_NODE | {ip of a certain node} | | Node to connect to |
| COSMOS_DEVTOOLS | 'true', 'false' | 'false' | Open the debug panel in the electron view |
| ELECTRON_ENABLE_LOGGING | 'true', 'false' | 'false' | Redirect the browser view console output to the console |
| PREVIEW | 'true', 'false' | 'true' if NODE_ENV 'development' | Show/Hide features that are in development |
| COSMOS_E2E_KEEP_OPEN | 'true', 'false' | 'false' | Keep the Window open in local E2E test to see the state in which the application broke. |
| CI | 'true', 'false' | 'false' | Adds better structured output, makes a screenshot and adds logs to files (used on CircleCI). |
| Variable | Values | default | Purpose |
| ----------------------- | ---------------------------------------- | -------------------------------- | -------------------------------------------------------------------------------------------- |
| NODE_ENV | 'production', 'development' | | |
| LOGGING | 'true', 'false' | 'true' | Disable logging |
| COSMOS_NETWORK | {path to network configuration folder} | '../networks/gaia-7001' | Network to connect to |
| COSMOS_HOME | {path to config persistence folder} | '$HOME/.cosmos-voyager[-dev]' | |
| LCD_URL | {URL of a Cosmos light client interface} | see 'app/config.toml' | Cosmos Light Client interface to connect to |
| RPC_URL | {URL of a Tendermint rpc interface} | see 'app/config.toml' | Tendermint node to connect to |
| COSMOS_DEVTOOLS | 'true', 'false' | 'false' | Open the debug panel in the electron view |
| ELECTRON_ENABLE_LOGGING | 'true', 'false' | 'false' | Redirect the browser view console output to the console |
| PREVIEW | 'true', 'false' | 'true' if NODE_ENV 'development' | Show/Hide features that are in development |
| COSMOS_E2E_KEEP_OPEN | 'true', 'false' | 'false' | Keep the Window open in local E2E test to see the state in which the application broke. |
| CI | 'true', 'false' | 'false' | Adds better structured output, makes a screenshot and adds logs to files (used on CircleCI). |

## FAQ

Expand Down
2 changes: 2 additions & 0 deletions app/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ relay_port_prod = 9061
default_tendermint_port = 26657

default_network = "gaia-8001"
node_lcd = "http://fabo.interblock.io:1317"
node_rpc = "http://fabo.interblock.io:26657"

google_analytics_uid = "UA-51029217-3"
sentry_dsn = "https://4dee9f70a7d94cc0959a265c45902d84:[email protected]/288169"
Expand Down
Loading

0 comments on commit f55524e

Please sign in to comment.