diff --git a/README.md b/README.md index 4419d01..1d2266e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ ## Changelog +### - versie 1.3.1 - bug fixes +- tussenstand scherm fix + + ### - versie 1.3.0 - the 'feel' update: - tussenstand scherm toegevoegd - nieuw lettertype toegevoegd om de 'RTL feel' te geven diff --git a/package-lock.json b/package-lock.json index 0defaa3..b02513f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "wiv", - "version": "1.3.0", + "version": "1.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "wiv", - "version": "1.3.0", + "version": "1.3.1", "dependencies": { "@angular/animations": "^19.0.1", "@angular/cdk": "^19.0.0", diff --git a/package.json b/package.json index ad394f7..5a75ad6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wiv", - "version": "1.3.0", + "version": "1.3.1", "scripts": { "ng": "ng", "start": "ng serve", diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 3c2727a..0ca2c46 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -2,10 +2,12 @@ import { Routes } from '@angular/router'; import {GameComponent} from './game/game.component'; import {WelcomeComponent} from './welcome/welcome.component'; import {FinalComponent} from './final/final.component'; +import {CurrentScoreComponent} from './current-score/current-score.component'; export const routes: Routes = [ { path: '', component: WelcomeComponent }, { path: 'start', component: GameComponent }, { path: 'final', component: FinalComponent }, + { path: 'currentScore', component: CurrentScoreComponent }, ]; diff --git a/src/app/game/game.component.ts b/src/app/game/game.component.ts index 6082eec..a10ca4a 100644 --- a/src/app/game/game.component.ts +++ b/src/app/game/game.component.ts @@ -95,6 +95,7 @@ export class GameComponent implements OnInit { let question = +localStorage.getItem('question') if (question < 50){ + console.log('AAAAAHHH') if (question % 10 == 0){ this.router.navigate(['currentScore']) }