diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index de671c3f..68458977 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -79,11 +79,11 @@ jobs: VERSION: ${{ needs.versioning.outputs.version }} run: | # Build db image - cd db - env GOOS=linux GOARCH=arm64 go build -o pocketbase_arm64 - env GOOS=linux GOARCH=amd64 go build -o pocketbase_amd64 - cd .. - docker buildx build db/ --no-cache -t flomp/wanderer-db:$VERSION -t flomp/wanderer-db:latest --platform=linux/amd64,linux/arm64 --push + # cd db + # env GOOS=linux GOARCH=arm64 go build -o pocketbase_arm64 + # env GOOS=linux GOARCH=amd64 go build -o pocketbase_amd64 + # cd .. + # docker buildx build db/ --no-cache -t flomp/wanderer-db:$VERSION -t flomp/wanderer-db:latest --platform=linux/amd64,linux/arm64 --push # Build web image export PUBLIC_VALHALLA_URL=https://valhalla1.openstreetmap.de diff --git a/CHANGELOG.md b/CHANGELOG.md index a9c2281b..f8f39e9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# v0.15.2 +## Features +- Password fields now have a hint if you surpass the maximum password length (72) + +## Bug fixes +- Fixes bug that prevented strava activities with heartrate data being imported +- Fixes bug that prevented users from creating new summit logs +- Fixes unclear error messages when saving integrations +- Fixes login issues for wanderer instances hosted via http + + # v0.15.1 ## Features - You can now choose to sync only completed or planned tours from komoot diff --git a/docs/src/content/docs/getting-started/changelog.md b/docs/src/content/docs/getting-started/changelog.md index 8a36f76e..e94ace95 100644 --- a/docs/src/content/docs/getting-started/changelog.md +++ b/docs/src/content/docs/getting-started/changelog.md @@ -2,6 +2,16 @@ title: Changelog description: What changed in the last patch? --- +## v0.15.2 +### Features +- Password fields now display a hint when the maximum length of 72 characters is exceeded + +### Bug fixes +- Fixes bug that prevented strava activities with heartrate data being imported +- Fixes bug that prevented users from creating new summit logs +- Fixes unclear error messages when saving integrations +- Fixes login issues for wanderer instances hosted via http + ## v0.15.1 ### Features - You can now choose to sync only completed or planned tours from komoot diff --git a/web/src/lib/i18n/locales/de.json b/web/src/lib/i18n/locales/de.json index 4ba7f9a9..1377a43e 100644 --- a/web/src/lib/i18n/locales/de.json +++ b/web/src/lib/i18n/locales/de.json @@ -177,7 +177,7 @@ "metric": "Metrisch", "moderate": "Mittel", "must-be-at-least-n-characters-long": "Muss mindestens {n} Zeichen lang sein", - "must-be-at-most-n-characters-long": "", + "must-be-at-most-n-characters-long": "Darf höchstens {n} Zeichen lang sein", "my-account": "Mein Konto", "n-days-ago": "vor {n} Tagen", "n-hours-ago": "vor {n} Stunden",