Skip to content

Commit

Permalink
[6.4.0] Added yellow red cards to statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
tdittmann committed Apr 4, 2024
1 parent 96f5ae3 commit dca9bcf
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="de.timodittmann.scd" version="6.3.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="de.timodittmann.scd" version="6.4.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>SC Dahenfeld</name>
<description>An awesome SC Dahenfeld app.</description>
<author email="[email protected]" href="http://timo-dittmann.de/">Timo Dittmann</author>
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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)";
Expand All @@ -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 = "";
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": "sc-dahenfeld",
"version": "6.3.0",
"version": "6.4.0",
"author": "Timo Dittmann",
"homepage": "http://timo-dittmann.de/",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/presentation/pages/imprint/imprint.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit dca9bcf

Please sign in to comment.