diff --git a/CHANGELOG.md b/CHANGELOG.md index e265fcd51c..f5943f4e1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,9 +35,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [0.4.0] - 2018-02-01 ### Added * Added button styles for Success, Warning, and Danger states. @nylira -* Added support for image icons. @faboweb +* Added support for image icons. @faboweb ### Changed * Improved primary button style. @nylira * Fixed the cut-off text bug in buttons. @nylira -* Improves the `hover-bg` app variable color. @nylira +* Improves the `hover-bg` app variable color. @nylira + +## [0.4.1] - 2018-02-01 +###Fixed +* Fix for Windows build crashing on startup. @faboweb + +## [0.4.2] - 2018-02-05 +###Added +* Added back button to every page. @jolesbi + +###Changed +* Updated transaction history to be more clear and descriptive. @jolesbi +* Improved delegate profile page to accommodate candidates and validators. @jolesbi diff --git a/app/src/renderer/components/common/AppMenu.vue b/app/src/renderer/components/common/AppMenu.vue index 6255471957..f89a2d8798 100644 --- a/app/src/renderer/components/common/AppMenu.vue +++ b/app/src/renderer/components/common/AppMenu.vue @@ -3,7 +3,7 @@ menu.app-menu .app-menu-main list-item(to="/" exact @click.native="close" title="Balances") list-item(to="/wallet/transactions" exact @click.native="close" title="Transactions") - list-item(to="/staking" exact @click.native="close" title="Delegates") + list-item(to="/staking" exact replace @click.native="close" title="Delegates") list-item(to="/validators" exact @click.native="close" title="Validators" v-bind:class="{ 'active': isValidatorPage }" v-if="config.devMode") list-item(to="/proposals" exact @click.native="close" title="Proposals" v-if="config.devMode") list-item(to="/blocks" exact @click.native="close" title="Blocks") diff --git a/app/src/renderer/components/common/NiToolBar.vue b/app/src/renderer/components/common/NiToolBar.vue index 165df70581..057949782c 100644 --- a/app/src/renderer/components/common/NiToolBar.vue +++ b/app/src/renderer/components/common/NiToolBar.vue @@ -2,7 +2,12 @@ .ni-tool-bar .ni-tool-bar-container .main: slot - a.help(@click="enableModalHelp"): i.material-icons help_outline + a.back(@click="$router.go(-1)") + i.material-icons arrow_back + .label Back + a.help(@click="enableModalHelp") + i.material-icons help_outline + .label Help