diff --git a/CHANGELOG.md b/CHANGELOG.md index 214579b..e5cc55c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ~ +### v0.2.1 (2023-01-09) +* adds support for system dark mode (night mode). +* fixes bug where Toast messages are unreadable on api33+. +* fixes bug "the widget does not update" (#15). +* fixes bug "broken UI - missing first hour - watches" (#14). +* fixes bug where the hour is sometimes announced incorrectly. +* fixes bug "unable to set alarm for all hours when using 'sunset (24)' (#21). +* misc layout tweaks (margins). + ### v0.2.0 (2022-02-22) * adds support for repeating alarms and notifications (#7); requires `Suntimes v0.14.0` or later. * adds alarm UI (NaturalHourSelectFragment, NaturalHourAlarmFragment, and AlarmActivity); responds to `suntimes.action.PICK_EVENT`; extends content-provider to implement `suntimes.action.ADDON_EVENT`. diff --git a/README.md b/README.md index c8bdbba..125c1cc 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Natural Hour does not collect, store, or transmit personal user data. It contain __Natural Hour is an add-on for Suntimes.__ It uses the `suntimes.permission.READ_CALCULATOR` permission in order to access data provided by this app. https://github.com/forrestguice/SuntimesWidget/wiki/Privacy ## Legal Stuff -Copyright (C) 2020-2022 **Forrest Guice** +Copyright (C) 2020-2023 **Forrest Guice** ``` Natural Hour is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/app/build.gradle b/app/build.gradle index 9c1134c..53a3870 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -7,8 +7,8 @@ android { minSdkVersion 14 //noinspection OldTargetApi targetSdkVersion 28 - versionCode 2 - versionName "0.2.0" + versionCode 3 + versionName "0.2.1" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true buildConfigField "String", "GIT_HASH", "\"${getGitHash()}\"" diff --git a/fastlane/metadata/android/en-US/changelogs/3.txt b/fastlane/metadata/android/en-US/changelogs/3.txt new file mode 100644 index 0000000..6794a69 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/3.txt @@ -0,0 +1,5 @@ +- adds support for system dark mode (night mode). +- fixes bug "the widget does not update" (#15). +- fixes bug "broken UI - missing first hour - watches" (#14). +- fixes bug where the hour is sometimes announced incorrectly. +- fixes bug "unable to set alarm for all hours when using 'sunset (24)' (#21). \ No newline at end of file