Skip to content

Commit

Permalink
release 1.18.0-rc6
Browse files Browse the repository at this point in the history
  • Loading branch information
Cultureapp-Technical-User committed Aug 28, 2024
1 parent 46fdb45 commit ba0fdd4
Show file tree
Hide file tree
Showing 94 changed files with 3,028 additions and 3,083 deletions.
2 changes: 1 addition & 1 deletion .storybook/storybook.requires.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const getStories = () => {
"./src/components/loading-indicator/loading-indicator-overlay.stories.tsx": require("../src/components/loading-indicator/loading-indicator-overlay.stories.tsx"),
"./src/components/modal-screen/modal-screen-header.stories.tsx": require("../src/components/modal-screen/modal-screen-header.stories.tsx"),
"./src/components/screen/screen.stories.tsx": require("../src/components/screen/screen.stories.tsx"),
"./src/components/suggestion-list/suggestion-list-item.stories.tsx": require("../src/components/suggestion-list/suggestion-list-item.stories.tsx"),
"./src/components/svg-image/svg-image.stories.tsx": require("../src/components/svg-image/svg-image.stories.tsx"),
"./src/components/tab-bar-icon/tab-bar-icon.stories.tsx": require("../src/components/tab-bar-icon/tab-bar-icon.stories.tsx"),
"./src/components/text-with-icon/text-with-icon.stories.tsx": require("../src/components/text-with-icon/text-with-icon.stories.tsx"),
Expand All @@ -86,7 +87,6 @@ const getStories = () => {
"./src/features/preferences/components/preferences.stories.tsx": require("../src/features/preferences/components/preferences.stories.tsx"),
"./src/features/product-detail/components/chip.stories.tsx": require("../src/features/product-detail/components/chip.stories.tsx"),
"./src/features/product-detail/components/offer-details.stories.tsx": require("../src/features/product-detail/components/offer-details.stories.tsx"),
"./src/features/product-detail/components/offer-selection-filter/offer-selection-filter-suggestions-item.stories.tsx": require("../src/features/product-detail/components/offer-selection-filter/offer-selection-filter-suggestions-item.stories.tsx"),
"./src/features/product-detail/components/product-detail-footer.stories.tsx": require("../src/features/product-detail/components/product-detail-footer.stories.tsx"),
"./src/features/product-detail/components/product-report-body.stories.tsx": require("../src/features/product-detail/components/product-report-body.stories.tsx"),
"./src/features/product-detail/stories/offer-selection-screen.stories.tsx": require("../src/features/product-detail/stories/offer-selection-screen.stories.tsx"),
Expand Down
Binary file added .yarn/install-state.gz
Binary file not shown.
13 changes: 12 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<uses-feature android:name="android.hardware.nfc" android:required="false" />

<application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:allowBackup="false" android:theme="@style/Theme.App.Starting" android:networkSecurityConfig="@xml/network_security_config">
<activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:screenOrientation="portrait" android:exported="true">
<activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:focusableInTouchMode="true" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:screenOrientation="portrait" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -29,6 +29,17 @@
<data android:host="storefront.qa.kulturpass.de"/>
<data android:host="storefront.dev.kulturpass.de"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="kulturpass"/>
<data android:host="storefront.prod.kulturpass.de"/>
<data android:host="storefront.perf.kulturpass.de"/>
<data android:host="storefront.staging.kulturpass.de"/>
<data android:host="storefront.qa.kulturpass.de"/>
<data android:host="storefront.dev.kulturpass.de"/>
</intent-filter>
</activity>
</application>
<queries>
Expand Down
4 changes: 2 additions & 2 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ hermesEnabled=true

# Versioning, this is used by the app & pipelines to calculate the current versionCode & versionName
VERSION_MAJOR=1
VERSION_MINOR=17
VERSION_MINOR=18
VERSION_PATCH=0
VERSION_BUILD=4
VERSION_BUILD=6
4 changes: 2 additions & 2 deletions ios/Configuration/General.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ INFO_PLIST_LOCATION_MAIN = cultureapp/Info.plist

APP_GROUP_ID = group.de.bkm.kulturpass

MARKETING_VERSION = 1.17.0
CURRENT_PROJECT_VERSION = 4
MARKETING_VERSION = 1.18.0
CURRENT_PROJECT_VERSION = 6
Loading

0 comments on commit ba0fdd4

Please sign in to comment.