diff --git a/CHANGELOG.md b/CHANGELOG.md index 3526c95..cf85561 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.14.0] — 2026-07-06 + +### Added +- Tap a date header to open that day. In Week and Agenda view, tapping a date + header now opens that date in Day view — the same drill-in that Month view and + the agenda widget already offered, so every view behaves the same way. It makes + jumping to a specific day quicker: switch to Week, swipe to the week you want, + then tap the date to open it. Thanks to @ptab for the suggestion ([#37]). + ## [2.13.1] — 2026-07-06 ### Added @@ -838,3 +847,4 @@ automatically, with zero telemetry and no internet permission. [#29]: https://codeberg.org/jlmakiola/calendula/issues/29 [#30]: https://codeberg.org/jlmakiola/calendula/issues/30 [#34]: https://codeberg.org/jlmakiola/calendula/issues/34 +[#37]: https://codeberg.org/jlmakiola/calendula/issues/37 diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 38a3422..dc638b4 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 = 21301 - versionName = "2.13.1" + versionCode = 21400 + versionName = "2.14.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/fastlane/metadata/android/en-US/changelogs/21400.txt b/fastlane/metadata/android/en-US/changelogs/21400.txt new file mode 100644 index 0000000..e6f8195 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/21400.txt @@ -0,0 +1,7 @@ +### Added +- Tap a date header to open that day. In Week and Agenda view, tapping a date + header now opens that date in Day view — the same drill-in that Month view and + the agenda widget already offered, so every view behaves the same way. It makes + jumping to a specific day quicker: switch to Week, swipe to the week you want, + then tap the date to open it. Thanks to @ptab for the suggestion ([#37]). +