From dca9bcfbed7101d38869f2bd576c9f57560c70bb Mon Sep 17 00:00:00 2001 From: Timo Dittmann Date: Thu, 4 Apr 2024 08:43:57 +0200 Subject: [PATCH] [6.4.0] Added yellow red cards to statistics --- android/app/build.gradle | 4 ++-- config.xml | 2 +- ios/App/App.xcodeproj/project.pbxproj | 4 ++-- package.json | 2 +- src/app/presentation/pages/imprint/imprint.page.ts | 2 +- .../statistics/team-detail-statistics.component.ts | 3 ++- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 98ffe3d2..465078e6 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "de.timodittmann.scd" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 630000 - versionName "6.3.0" + versionCode 640000 + versionName "6.4.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/config.xml b/config.xml index bf0bd2fd..04b3fa2c 100644 --- a/config.xml +++ b/config.xml @@ -1,5 +1,5 @@ - + SC Dahenfeld An awesome SC Dahenfeld app. Timo Dittmann diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index 3f8c81ed..6ee9fb64 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -356,7 +356,7 @@ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.sports"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 6.3.0; + MARKETING_VERSION = 6.4.0; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = de.timodittmann.scd; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -380,7 +380,7 @@ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.sports"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 6.3.0; + MARKETING_VERSION = 6.4.0; PRODUCT_BUNDLE_IDENTIFIER = de.timodittmann.scd; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_ACTIVE_COMPILATION_CONDITIONS = ""; diff --git a/package.json b/package.json index 0694c2ea..4be5c4cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sc-dahenfeld", - "version": "6.3.0", + "version": "6.4.0", "author": "Timo Dittmann", "homepage": "http://timo-dittmann.de/", "scripts": { diff --git a/src/app/presentation/pages/imprint/imprint.page.ts b/src/app/presentation/pages/imprint/imprint.page.ts index cc4a26f6..2c11301b 100644 --- a/src/app/presentation/pages/imprint/imprint.page.ts +++ b/src/app/presentation/pages/imprint/imprint.page.ts @@ -13,7 +13,7 @@ import { App } from '@capacitor/app'; }) export class ImprintPage implements OnInit { heading: string; - version = '6.3.0'; + version = '6.4.0'; developer = 'Timo Dittmann'; darkMode = false; diff --git a/src/app/presentation/pages/team-detail/statistics/team-detail-statistics.component.ts b/src/app/presentation/pages/team-detail/statistics/team-detail-statistics.component.ts index 655a0c3f..afa1a903 100644 --- a/src/app/presentation/pages/team-detail/statistics/team-detail-statistics.component.ts +++ b/src/app/presentation/pages/team-detail/statistics/team-detail-statistics.component.ts @@ -16,7 +16,8 @@ export class TeamDetailStatisticsComponent implements OnInit { { heading: 'Torschützen', filter: 'seasonStatistic.goals' }, { heading: 'Spielminuten', filter: 'seasonStatistic.playingMinutes' }, { heading: 'Gelbe Karten', filter: 'seasonStatistic.yellowCards' }, - { heading: 'Platzverweise', filter: 'seasonStatistic.redCards' }, + { heading: 'Gelb-Rote Karten', filter: 'seasonStatistic.yellowRedCards' }, + { heading: 'Rote Karten', filter: 'seasonStatistic.redCards' }, ]; isLoading = true;