diff --git a/app/android/app/build.gradle b/app/android/app/build.gradle index 1cb22ce17..94851aa4e 100644 --- a/app/android/app/build.gradle +++ b/app/android/app/build.gradle @@ -99,7 +99,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled true - versionCode 226 + versionCode 227 versionName "1.22.2" } diff --git a/app/app.json b/app/app.json index 351342cdc..30ab29c1d 100644 --- a/app/app.json +++ b/app/app.json @@ -2,7 +2,7 @@ "name": "oz_ensemble", "displayName": "Oz Ensemble", "version": { - "buildNumber": 226, + "buildNumber": 227, "buildName": "1.22.2" } } diff --git a/app/ios/oz_ensemble.xcodeproj/project.pbxproj b/app/ios/oz_ensemble.xcodeproj/project.pbxproj index 36bb21864..71cfe42e3 100644 --- a/app/ios/oz_ensemble.xcodeproj/project.pbxproj +++ b/app/ios/oz_ensemble.xcodeproj/project.pbxproj @@ -503,7 +503,7 @@ CODE_SIGN_ENTITLEMENTS = oz_ensemble/oz_ensemble.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 226; + CURRENT_PROJECT_VERSION = 227; DEVELOPMENT_TEAM = 76GBKHVK25; ENABLE_BITCODE = NO; INFOPLIST_FILE = oz_ensemble/Info.plist; @@ -537,7 +537,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 226; + CURRENT_PROJECT_VERSION = 227; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 76GBKHVK25; INFOPLIST_FILE = oz_ensemble/Info.plist; diff --git a/app/src/components/Calendar.js b/app/src/components/Calendar.js index fa6046fc2..aab9c8402 100644 --- a/app/src/components/Calendar.js +++ b/app/src/components/Calendar.js @@ -326,7 +326,7 @@ const Calendar = ({ onScrollToDate, selectedMonth }) => { {isAbstinent && ( - + diff --git a/app/src/scenes/Gains/AbstinenceSelection.js b/app/src/scenes/Gains/AbstinenceSelection.js index de6da1e34..fdb862c53 100644 --- a/app/src/scenes/Gains/AbstinenceSelection.js +++ b/app/src/scenes/Gains/AbstinenceSelection.js @@ -3,7 +3,8 @@ import { View, Text, SafeAreaView, TouchableOpacity, Dimensions } from 'react-na import { storage } from '../../services/storage'; -const AbstinenceSelection = ({ navigation }) => { +const AbstinenceSelection = ({ navigation, route }) => { + const isFromInfo = route?.name.includes('ABSTINENCE_SELECTION'); const onClose = () => { navigation.goBack(); }; @@ -17,16 +18,24 @@ const AbstinenceSelection = ({ navigation }) => { Compteur d'abstinence - - Il sera affiché sous votre calendrier et vous permettra de suivre vos jours consécutifs sans consommation - d'alcool si vous avez fait le choix d'être abstinent. - + {isFromInfo && ( + + Il sera affiché sous votre calendrier et vous permettra de suivre vos jours consécutifs sans consommation + d'alcool si vous avez fait le choix d'être abstinent. + + )} + {!isFromInfo && ( + + Il vous permettra de suivre vos jours consécutifs sans consommation d’alcool si vous avez fait le choix + d’être abstinent. Vous pourrez toujours modifier ce choix dans l’onglet Infos. + + )} Voulez-vous activer le compteur d'abstinence ? { onClose(); storage.set('@isAbstinent', true); @@ -34,7 +43,7 @@ const AbstinenceSelection = ({ navigation }) => { Oui { onClose(); storage.set('@isAbstinent', false);