Release: 1.2409.26

This commit is contained in:
bl00dymarie
2024-09-26 18:20:27 +02:00
parent 93f412e983
commit cd96baec22
4 changed files with 5 additions and 14 deletions
+2 -2
View File
@@ -134,8 +134,8 @@ android {
applicationId "com.drip" applicationId "com.drip"
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 34 versionCode 35
versionName "1.2405.8" versionName "1.2409.26"
ndk { ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
} }
+1 -10
View File
@@ -23,20 +23,14 @@ const SymptomBox = ({
const { t } = useTranslation(null, { keyPrefix: 'symptoms' }) const { t } = useTranslation(null, { keyPrefix: 'symptoms' })
const isSymptomEdited = editedSymptom === symptom const isSymptomEdited = editedSymptom === symptom
const isSymptomDisabled = isDateInFuture(date) && symptom !== 'note' const isSymptomDisabled = isDateInFuture(date) && symptom !== 'note'
const isExcluded = symptomData !== null ? symptomData.exclude : false
const iconColor = isSymptomDisabled ? Colors.greyLight : Colors.grey const iconColor = isSymptomDisabled ? Colors.greyLight : Colors.grey
const iconName = `drip-icon-${symptom}` const iconName = `drip-icon-${symptom}`
const symptomNameStyle = [ const symptomNameStyle = [
styles.symptomName, styles.symptomName,
isSymptomDisabled && styles.symptomNameDisabled, isSymptomDisabled && styles.symptomNameDisabled,
isExcluded && styles.symptomNameExcluded,
]
const textStyle = [
styles.text,
isSymptomDisabled && styles.textDisabled,
isExcluded && styles.textExcluded,
] ]
const textStyle = [styles.text, isSymptomDisabled && styles.textDisabled]
return ( return (
<> <>
@@ -121,9 +115,6 @@ const styles = StyleSheet.create({
textDisabled: { textDisabled: {
color: Colors.greyLight, color: Colors.greyLight,
}, },
textExcluded: {
color: Colors.grey,
},
}) })
export default SymptomBox export default SymptomBox
+1 -1
View File
@@ -19,7 +19,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.2405.8</string> <string>1.2409.26</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "drip.", "name": "drip.",
"version": "1.2405.8", "version": "1.2409.26",
"contributors": [ "contributors": [
"Julia Friesel <julia.friesel@gmail.com>", "Julia Friesel <julia.friesel@gmail.com>",
"Marie Kochsiek", "Marie Kochsiek",