diff --git a/android/app/build.gradle b/android/app/build.gradle index 71886b3..e619706 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -134,8 +134,8 @@ android { applicationId "com.drip" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 34 - versionName "1.2405.8" + versionCode 35 + versionName "1.2409.26" ndk { abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } diff --git a/components/cycle-day/symptom-box.js b/components/cycle-day/symptom-box.js index bc14457..e5a9b93 100644 --- a/components/cycle-day/symptom-box.js +++ b/components/cycle-day/symptom-box.js @@ -23,20 +23,14 @@ const SymptomBox = ({ const { t } = useTranslation(null, { keyPrefix: 'symptoms' }) const isSymptomEdited = editedSymptom === symptom const isSymptomDisabled = isDateInFuture(date) && symptom !== 'note' - const isExcluded = symptomData !== null ? symptomData.exclude : false const iconColor = isSymptomDisabled ? Colors.greyLight : Colors.grey const iconName = `drip-icon-${symptom}` const symptomNameStyle = [ styles.symptomName, isSymptomDisabled && styles.symptomNameDisabled, - isExcluded && styles.symptomNameExcluded, - ] - const textStyle = [ - styles.text, - isSymptomDisabled && styles.textDisabled, - isExcluded && styles.textExcluded, ] + const textStyle = [styles.text, isSymptomDisabled && styles.textDisabled] return ( <> @@ -121,9 +115,6 @@ const styles = StyleSheet.create({ textDisabled: { color: Colors.greyLight, }, - textExcluded: { - color: Colors.grey, - }, }) export default SymptomBox diff --git a/ios/drip/Info.plist b/ios/drip/Info.plist index 4fc06fa..49905ad 100644 --- a/ios/drip/Info.plist +++ b/ios/drip/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.2405.8 + 1.2409.26 CFBundleSignature ???? CFBundleVersion diff --git a/package.json b/package.json index 4a51b08..35904ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "drip.", - "version": "1.2405.8", + "version": "1.2409.26", "contributors": [ "Julia Friesel ", "Marie Kochsiek",