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]).