diff --git a/CHANGELOG.md b/CHANGELOG.md index efae08df..a8b7c1ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ### ~ +### v0.6.1 (2024-02-10) +* adds template patterns to the "Daylight", "Civil Twilight", "Nautical Twilight", "Astronomical Twilight", "Blue Hour", "Gold Hour", and "Moon" calendars; `%em` (milliseconds), `%eZ` (azimuth), `%eA` (altitude), `%eR` (right ascension), and `%eD` (declination). +* adds template patterns to the "Moon" calendar; `%illum` (illumination %), `%phase` (minor phase), and `%dist` (distance). +* adds donation link to the about dialog; adds Liberapay to donation options (#46); https://liberapay.com/forrestguice/ +* improves template pattern help so that only the supported patterns for each individual calendar are shown. +* modifies default calendar templates to include the `%eZ` and `%eA` patterns. +* fixes pattern `%dist` to respect the Suntimes "length units" option (km or mi). +* fixes bug where "calendar update notification vibrates repeatedly" (#59). +* bumps CalculatorProviderContract version (5 -> 7). +* updates translations to Polish (pl) and Esperanto (eo) (#60 by Verdulo). + ### v0.6.0 (2023-12-30) * adds support for reminder notifications (#51). * adds support for event selection; include all or omit some calendar events. diff --git a/app/build.gradle b/app/build.gradle index 7e9622c1..2d419534 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { minSdkVersion 14 //noinspection ExpiredTargetSdkVersion,OldTargetApi targetSdkVersion 28 - versionCode 18 - versionName "0.6.0" + versionCode 19 + versionName "0.6.1" buildConfigField "String", "GIT_HASH", "\"${getGitHash()}\"" diff --git a/fastlane/metadata/android/en-US/changelogs/19.txt b/fastlane/metadata/android/en-US/changelogs/19.txt new file mode 100644 index 00000000..a4148f63 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/19.txt @@ -0,0 +1,4 @@ +- adds patterns for event position (azimuth, altitude, right ascension, and declination). +- adds patterns for moon illumination, minor phase, and distance. +- fixes bug where "update notification vibrates repeatedly" (#59). +- updates translations to Polish (pl) and Esperanto (eo). \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png index fafad664..3dc6906e 100644 Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png differ