From 93df6d6d627f217460501ecf9260583b7c859bb5 Mon Sep 17 00:00:00 2001 From: Jean-Luc Makiola Date: Sun, 28 Jun 2026 22:01:26 +0200 Subject: [PATCH] =?UTF-8?q?release:=20v2.12.0=20=E2=80=94=20wrap=20event?= =?UTF-8?q?=20titles=20in=20week=20view?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump versionName to 2.12.0 (versionCode 21200) and add the changelog. Merging this into main triggers release.yaml, which builds, signs, publishes and mints the v2.12.0 tag + Gitea release. Closes #13 --- app/build.gradle.kts | 4 ++-- fastlane/metadata/android/en-US/changelogs/21200.txt | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/21200.txt diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c6b0066..b20a171 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -28,8 +28,8 @@ android { // which builds this version and then creates the matching vX.Y.Z tag + // release itself (versionCode is pinned to MAJOR*10000 + MINOR*100 + // PATCH from versionName, e.g. 2.7.2 -> 20702). See docs/RELEASING.md. - versionCode = 21102 - versionName = "2.11.2" + versionCode = 21200 + versionName = "2.12.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/fastlane/metadata/android/en-US/changelogs/21200.txt b/fastlane/metadata/android/en-US/changelogs/21200.txt new file mode 100644 index 0000000..c7dc64e --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/21200.txt @@ -0,0 +1,7 @@ +### Changed +- Readable titles on overlapping events. In the week and day views, events that + overlap split a day into slim columns where the title used to be clipped to a + character or two. The title now wraps across as many lines as the block can + fit, and the time is hidden on those narrow blocks so the name can fill the + space — so you can tell events apart without opening each one. Thanks to @ptab + for the suggestion ([#13]).