Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.16.5 #861

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
### ~

### v0.16.5 (2025-02-04)
* adds "show date" to options; the moon dialog, solstice dialog, or solstice widget will only show the number of days remaining (#846, #847).
* adds "gradually increase volume (curve)" to alarm options; defaults to cubic. The volume increases gradually in the beginning, rapidly increasing toward the end.
* enhances the alarm dismiss activity to display the current time using the alarm's time zone (#849).
* enhances the "custom event" alarm selector so that it displays a preview.
* fixes app crash when toggling wallpaper from the theme configuration activity.
* fixes bug where "warnings only show the first message when multiple warnings are queued".
* fixes bug where "gradually increase volume" is only applied to the left channel.
* fixes bug where "flippable widget fails to change views" (#855).
* fixes bug where the moon dialog opens with today's information instead of the selected day (#858).
* fixes bug where the color collection activity loses the current selection; fixes bug where the share action is disabled for default colors.
* fixes bug where alarm edit screen layout is cropped in landscape mode; input chips may now flow to use space more efficiently.
* fixes bug where the "location dialog shows the wrong icon when 'use app location' is checked".
* changes defaults; "bright alarms" are now enabled by default.
* changes defaults; "gradually increase brightness" changed from 60 to 30 seconds.
* changes defaults; "gradually increase volume" changed from 10 to 30 seconds.
* refactors codebase to remove direct dependence on the android support library (#859); extends UI test coverage (#860).

### v0.16.4 (2024-12-04)
* fixes bug "boot completed hangs after phone restart" (#842).
* fixes bug "FGS not allowed to start from BOOT_COMPLETED!" (Android 15).
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android
minSdkVersion 14
//noinspection ExpiredTargetSdkVersion,OldTargetApi
targetSdkVersion 28
versionCode 118
versionName "0.16.4"
versionCode 119
versionName "0.16.5"

buildConfigField "String", "GIT_HASH", "\"${getGitHash()}\""

Expand Down
6 changes: 6 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/119.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- adds option to the solstice and moon dialogs to only show the number of days remaining.
- adds "gradually increase volume (curve)" to alarm options (defaults to cubic).
- fixes bug where "gradually increase volume" is only applied to the left channel.
- fixes app crash when toggling wallpaper from the theme configuration activity.
- fixes bug where "flippable widget fails to change views" (#855).
- additional miscellaneous bug fixes.