Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
Updated to 0.9.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Gullmark committed Jan 29, 2019
1 parent 7b67832 commit a674151
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

## [0.9.15] - 2019-01-29
- Fixed a bug where some buttons were incorrectly hidden in the currency-tab

## [0.9.14] - 2019-01-29
### Added
- Added support for pricing corrupted items (uniques and gems)
Expand Down
2 changes: 1 addition & 1 deletion ExilenceClient/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "exilence",
"version": "0.9.14",
"version": "0.9.15",
"author": {
"name": "Viktor Gullmark",
"email": "[email protected]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@
</mat-form-field>
</div>
</div>
<div class="flex-area graph-btns">
<div class="flex-area">
<div class="btn-grp">
<button mat-raised-button color="accent" (click)="resetNetWorth()" type="button" class="right-aligned extra-margin">{{'GRAPH.RESET_SELF'
| translate}}</button>
<button mat-raised-button color="primary" (click)="popout()" type="button" class="right-aligned extra-margin">{{'GRAPH.POPOUT'
| translate}}</button>
<button mat-raised-button color="primary" *ngIf="!isGraphHidden" (click)="hideGraph()" type="button" class="right-aligned">{{'GRAPH.HIDE'
<button mat-raised-button color="primary" *ngIf="!isGraphHidden" (click)="hideGraph()" type="button" class="graph-btns right-aligned">{{'GRAPH.HIDE'
| translate}}</button>
<button mat-raised-button color="primary" *ngIf="isGraphHidden" (click)="showGraph()" type="button" class="right-aligned">{{'GRAPH.SHOW'
<button mat-raised-button color="primary" *ngIf="isGraphHidden" (click)="showGraph()" type="button" class="graph-btns right-aligned">{{'GRAPH.SHOW'
| translate}}</button>
</div>
</div>
Expand Down

0 comments on commit a674151

Please sign in to comment.