Skip to content

Commit

Permalink
Merge pull request #37 from Joschbosch/develop
Browse files Browse the repository at this point in the history
Bugfixing, Versioning
  • Loading branch information
DanielCleemann authored Oct 30, 2022
2 parents 7261081 + d5b2cd3 commit 6d6e633
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Kickertool-UI 1.1.0
# Kickertool-UI 1.1.1

## Installation instructions

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kickertool-ui",
"version": "1.1.0",
"version": "1.1.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion src/app/models/Player/Player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class Player {
public isDummyPlayer: boolean
) {
this.uid = '';
this.status = PlayerStatus.UNDEFINED;
this.status = PlayerStatus.NOT_IN_TOURNAMENT;
}

public static createFromJSON(jsonPlayer: Player) {
Expand Down
3 changes: 1 addition & 2 deletions src/app/models/Player/PlayerStatus.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ export enum PlayerStatus {
NOT_IN_TOURNAMENT = 'NOT_IN_TOURNAMENT',
IN_TOURNAMENT = 'IN_TOURNAMENT',
PLAYING = 'PLAYING',
PAUSING_TOURNAMENT = 'PAUSING_TOURNAMENT',
UNDEFINED = 'UNDEFINED'
PAUSING_TOURNAMENT = 'PAUSING_TOURNAMENT'
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export class TournamentViewerComponent implements OnInit {
currentMatches: Match[];
rankings: PlayerRankingRow[];

trophieURLS = ['./../../../../assets/images/Golden_Trophy.jpg',
'./../../../../assets/images/Silver_Trophy.jpg',
'./../../../../assets/images/Bronze_Trophy.jpg'];
trophieURLS = ['./../../../../assets/images/trophy_gold.jpg',
'./../../../../assets/images/trophy_silver.jpg',
'./../../../../assets/images/trophy_gold.jpg'];

constructor(private zone: NgZone) {}

Expand Down

0 comments on commit 6d6e633

Please sign in to comment.