Skip to content

Commit 1b5bfa2

Browse files
authored
chore: release 3.4.3 (#363)
1 parent 3e127a9 commit 1b5bfa2

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

app/src/commonMain/kotlin/com/maksimowiczm/foodyou/changelog/infrastructure/StaticChangelog.kt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ internal class StaticChangelog(private val appConfig: AppConfig) : Changelog {
1212
override val versions: List<Version>
1313
get() =
1414
listOf(
15+
v_3_4_3,
1516
v_3_4_2,
1617
v_3_4_1,
1718
v_3_4_0,
@@ -48,6 +49,19 @@ internal class StaticChangelog(private val appConfig: AppConfig) : Changelog {
4849
v2_0_0,
4950
)
5051

52+
val v_3_4_3 =
53+
Version(
54+
version = "3.4.3",
55+
date = LocalDate(2026, 2, 11),
56+
bugFixes =
57+
listOf(
58+
"Fixed Quick Add screen not respecting nutrient order settings.",
59+
"Fixed an issue where invalid foods could not be removed from recipes.",
60+
"Fixed importing files from network locations."
61+
),
62+
translations = listOf("Added Czech."),
63+
)
64+
5165
val v_3_4_2 =
5266
Version(
5367
version = "3.4.2",
@@ -57,7 +71,7 @@ internal class StaticChangelog(private val appConfig: AppConfig) : Changelog {
5771
listOf(
5872
"Fixed a crash occurring when deleting a product package or serving weight."
5973
),
60-
translations = listOf("Added Indonesian", "Added Slovenian"),
74+
translations = listOf("Added Indonesian.", "Added Slovenian."),
6175
)
6276

6377
val v_3_4_1 =

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
2-
version-name = "3.4.2"
3-
android-versionCode = "116"
2+
version-name = "3.4.3"
3+
android-versionCode = "117"
44
android-compileSdk = "36"
55
android-minSdk = "28"
66
android-targetSdk = "36"

metadata/en-US/changelog/116.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ Bug fixes
55
- Fixed a crash occurring when deleting a product package or serving weight.
66

77
Translations
8-
- Added Indonesian
9-
- Added Slovenian
8+
- Added Indonesian.
9+
- Added Slovenian.

metadata/en-US/changelog/117.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Bug fixes
2+
- Fixed Quick Add screen not respecting nutrient order settings.
3+
- Fixed an issue where invalid foods could not be removed from recipes.
4+
- Fixed importing files from network locations.
5+
6+
Translations
7+
- Added Czech.

0 commit comments

Comments
 (0)