diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2bd99cea53..c5abcfdfe7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
# Changelog
+## v57.4
+
+- Fix crash under certain circumstances in bike path overlay (#5604) (regression from #5596)
+
## v57.3
+
- Fix UNDO: It didn't actually do anything for edits that were already synced! This critical issue existed since v57.2 (#5600, #5602)
- Traffic signals: Improve wording (#5591)
- Max speed: Show warning when inputting implausible slow zone tempo limit (#5592)
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index 135fca1ad2..8b62cd842c 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -34,8 +34,8 @@ android {
applicationId = "de.westnordost.streetcomplete"
minSdk = 21
targetSdk = 34
- versionCode = 5705
- versionName = "57.3"
+ versionCode = 5706
+ versionName = "57.4"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
diff --git a/app/src/main/res/raw/changelog.html b/app/src/main/res/raw/changelog.html
index 3d9d30baef..8bf21ee0d0 100644
--- a/app/src/main/res/raw/changelog.html
+++ b/app/src/main/res/raw/changelog.html
@@ -1,5 +1,6 @@
-
Changelog
v57.3
- Fix UNDO: It didn't actually do anything for edits that were already synced! This critical issue existed since v57.2 (#5600, #5602)
- Traffic signals: Improve wording (#5591)
- Max speed: Show warning when inputting implausible slow zone tempo limit (#5592)
- Payment methods: Don't ask in shops if they have been specified exhaustively already (#5589), by urbalazs
- Railway crossings barriers: Don't ask for abandoned railways (#5597)
- Bike paths overlay: Fix selecting "not designated as bike path" when it was a "path or trail" wouldn't do anything (#5596)
+
Changelog
v57.4
- Fix crash under certain circumstances in bike path overlay (#5604) (regression from #5596)
+
v57.3
- Fix UNDO: It didn't actually do anything for edits that were already synced! This critical issue existed since v57.2 (#5600, #5602)
- Traffic signals: Improve wording (#5591)
- Max speed: Show warning when inputting implausible slow zone tempo limit (#5592)
- Payment methods: Don't ask in shops if they have been specified exhaustively already (#5589), by urbalazs
- Railway crossings barriers: Don't ask for abandoned railways (#5597)
- Bike paths overlay: Fix selecting "not designated as bike path" when it was a "path or trail" wouldn't do anything (#5596)
v57.2
- Lit overlay: Unsupported current tagging is now indicated as such (#5571)
- Building overlay: Selecting a specific building type for a historic building does now not remove its property as historic (#5547)
- Fix max width for road narrowing traffic calmings were not answerable if mapped as a way (#5569, #5578), by mnalis
- Fix regression in v57.1 that may lead to issues displaying the current GPS location (#5516)
- Fix the feature name label was slightly wrong for a few map features (#5549)
- Fix description of Prettymapp (#5570), by FloEdelmann
- Other small improvements (#5533, #5558, #5559, #5525, #5573), thanks matkoniecz, burrscurr
v57.1
- fixed crash on startup if you recently solved a crossing quest (#5522)
- fixed that you could e.g. add a POI in an overlay twice if you tap OK fast enough (#5523)
v57.0
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index c20866c6b1..a8e66bc5e0 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -1393,5 +1393,6 @@ Některé překryvné vrstvy navíc umožňují přidávat nová data na pozici
Informace o dárcovství najdete na našem webu nebo na stránce projektu, Google Play nám neumožňuje dát odkaz přímo do aplikace."
"Ne uvnitř, ale kryté"
"Specifický stav osvětlení, který v aplikaci nelze vybrat"
- "Další odpovědi..."
+ "Další odpovědi…"
+ "Jsou tu světelné signály, které ukazují, kdy přejít?"
\ No newline at end of file
diff --git a/app/src/main/res/values-cs/translation_info.xml b/app/src/main/res/values-cs/translation_info.xml
index 3ddf070ea2..1953c600c1 100644
--- a/app/src/main/res/values-cs/translation_info.xml
+++ b/app/src/main/res/values-cs/translation_info.xml
@@ -1,4 +1,4 @@
- 99
+ 100
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts
index ef6beaa37d..bcdec54493 100644
--- a/buildSrc/build.gradle.kts
+++ b/buildSrc/build.gradle.kts
@@ -10,7 +10,7 @@ dependencies {
implementation("org.jsoup:jsoup:1.15.3")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
implementation("com.charleskorn.kaml:kaml:0.58.0")
- implementation("org.jetbrains:markdown:0.5.0")
+ implementation("org.jetbrains:markdown:0.7.0")
}
plugins {