From b3363d410e4b86abeafaffcbf83c296ec980d71b Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Wed, 18 Sep 2024 09:21:29 -0700 Subject: [PATCH 1/4] bump version 115 (0.16.1) -> 116 (0.16.2) --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 8de980d91..67ee07335 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,8 +23,8 @@ android minSdkVersion 14 //noinspection ExpiredTargetSdkVersion,OldTargetApi targetSdkVersion 28 - versionCode 115 - versionName "0.16.1" + versionCode 116 + versionName "0.16.2" buildConfigField "String", "GIT_HASH", "\"${getGitHash()}\"" From 074881fa9f8e25fd6257c1c1abbdc271e01f7606 Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Wed, 18 Sep 2024 10:05:46 -0700 Subject: [PATCH 2/4] changelog --- CHANGELOG.md | 18 ++++++++++++++++++ .../metadata/android/en-US/changelogs/116.txt | 5 +++++ 2 files changed, 23 insertions(+) create mode 100644 fastlane/metadata/android/en-US/changelogs/116.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index b39c0f291..b8dc55f8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ ### ~ +### v0.16.2 (2024-09-20) +* adds "bright alarm colors"; allows customization of fullscreen alarm colors (#741). +* adds "do-not-disturb" preference that indicates the state of the required permission (#818). +* adds "app restricted" warning; "Alarms may fail to work reliably" when the app is in the rare or restricted app-standby-bucket. +* fixes crash in sunlight widget (#735). +* fixes missing "bright alarm" setting on Android 14 (#741). +* fixes bug where bedtime do-not-disturb fails to activate (#818). +* fixes bug where bedtime notifications are hidden due to low priority (adds a separate bedtime notification channel). +* fixes missing notification text when the alarm foreground service does periodic work. +* fixes text contrast/readability issues when modifying custom colors (support for "color roles"). +* enhances custom colors to allow for user-defined labels. +* fixes bug where color dialog fails to show the alpha slider, and other miscellaneous improvements. +* fixes misaligned click area in the "action button preference", and other miscellaneous changes. +* fixes bug where welcome activity is cropped in landscape orientation (Android TV). +* fixes "back" action to dismiss visible warnings first (Android TV). +* fixes inaccurate place coordinates; Bangui, Conakry. +* updates build; removes jcenter; updates `com.jraska:falcon` to `2.2.0` (#825). + ### v0.16.1 (2024-08-19) * adds "material palette" to the color dialog. * adds text color preview, and other miscellaneous color picker improvements. diff --git a/fastlane/metadata/android/en-US/changelogs/116.txt b/fastlane/metadata/android/en-US/changelogs/116.txt new file mode 100644 index 000000000..9f8ef3944 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/116.txt @@ -0,0 +1,5 @@ +- fixes crash in sunlight widget (#735). +- fixes bugs when triggering bedtime mode (#818). +- fixes missing "bright alarm" setting (Android 14). +- fixes text readability when modifying custom colors. +- adds "bright alarm colors" (customize the alarm screen). \ No newline at end of file From bd2b6ae7c7c7d5bc9820508804b9a530e1ec77b0 Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Sat, 21 Sep 2024 22:09:47 -0700 Subject: [PATCH 3/4] changelog --- CHANGELOG.md | 10 ++++++---- fastlane/metadata/android/en-US/changelogs/116.txt | 3 ++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8dc55f8f..d77a1f85f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ### ~ -### v0.16.2 (2024-09-20) +### v0.16.2 (2024-09-23) * adds "bright alarm colors"; allows customization of fullscreen alarm colors (#741). * adds "do-not-disturb" preference that indicates the state of the required permission (#818). * adds "app restricted" warning; "Alarms may fail to work reliably" when the app is in the rare or restricted app-standby-bucket. @@ -8,15 +8,17 @@ * fixes missing "bright alarm" setting on Android 14 (#741). * fixes bug where bedtime do-not-disturb fails to activate (#818). * fixes bug where bedtime notifications are hidden due to low priority (adds a separate bedtime notification channel). +* fixes bug where the alarm foreground service fails to stop after triggering notifications. * fixes missing notification text when the alarm foreground service does periodic work. * fixes text contrast/readability issues when modifying custom colors (support for "color roles"). * enhances custom colors to allow for user-defined labels. * fixes bug where color dialog fails to show the alpha slider, and other miscellaneous improvements. -* fixes misaligned click area in the "action button preference", and other miscellaneous changes. +* fixes bug where the "tap action" preference click area is misaligned. * fixes bug where welcome activity is cropped in landscape orientation (Android TV). -* fixes "back" action to dismiss visible warnings first (Android TV). -* fixes inaccurate place coordinates; Bangui, Conakry. +* fixes the "back" gesture so that it dismisses visible warnings first (Android TV). +* fixes inaccurate default place coordinates; Bangui, Conakry. * updates build; removes jcenter; updates `com.jraska:falcon` to `2.2.0` (#825). +* updates translation to Norwegian (nb) (#832 by FTno). ### v0.16.1 (2024-08-19) * adds "material palette" to the color dialog. diff --git a/fastlane/metadata/android/en-US/changelogs/116.txt b/fastlane/metadata/android/en-US/changelogs/116.txt index 9f8ef3944..d9f9cfed6 100644 --- a/fastlane/metadata/android/en-US/changelogs/116.txt +++ b/fastlane/metadata/android/en-US/changelogs/116.txt @@ -2,4 +2,5 @@ - fixes bugs when triggering bedtime mode (#818). - fixes missing "bright alarm" setting (Android 14). - fixes text readability when modifying custom colors. -- adds "bright alarm colors" (customize the alarm screen). \ No newline at end of file +- adds "bright alarm colors" (customize the alarm screen). +- updates translation to Norwegian. \ No newline at end of file From 7affbece402f8f1a3be58139cd62d292bc208596 Mon Sep 17 00:00:00 2001 From: Forrest Guice Date: Thu, 26 Sep 2024 09:24:52 -0700 Subject: [PATCH 4/4] changelog --- CHANGELOG.md | 2 ++ fastlane/metadata/android/en-US/changelogs/116.txt | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d77a1f85f..ea62f3463 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ * fixes inaccurate default place coordinates; Bangui, Conakry. * updates build; removes jcenter; updates `com.jraska:falcon` to `2.2.0` (#825). * updates translation to Norwegian (nb) (#832 by FTno). +* updates translation to Polish and Esperanto (eo, pl) (#833 by Verdulo). +* updates translations to Simplified Chinese (zh_CN) and Traditional Chinese (zh_TW) (#836 by James Liu). ### v0.16.1 (2024-08-19) * adds "material palette" to the color dialog. diff --git a/fastlane/metadata/android/en-US/changelogs/116.txt b/fastlane/metadata/android/en-US/changelogs/116.txt index d9f9cfed6..accdaf03d 100644 --- a/fastlane/metadata/android/en-US/changelogs/116.txt +++ b/fastlane/metadata/android/en-US/changelogs/116.txt @@ -3,4 +3,6 @@ - fixes missing "bright alarm" setting (Android 14). - fixes text readability when modifying custom colors. - adds "bright alarm colors" (customize the alarm screen). -- updates translation to Norwegian. \ No newline at end of file +- updates translation to Norwegian. +- updates translation to Polish and Esperanto. +- updates translations to Simplified Chinese, and Traditional Chinese. \ No newline at end of file