diff --git a/CHANGELOG.md b/CHANGELOG.md index a24630555..5b2b716cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ### ~ +### v0.13.17 (2022-01-02) +* adds translation to Simplified Chinese (zh_CN) (contributed by James Liu) (#527). +* updates translation to Traditional Chinese (zh_TW) (#527). +* fixes alarm notifications to include the 'offset' text (more descriptive); e.g. "5m before sunset" vs "sunset" (#522). +* fixes crash when loading AlarmCreateDialog with invalid settings (handle unknown event values). + ### v0.13.16 (2021-11-29) * adds translation to Czech (cs) (contributed by utaxiu) (#520). * fixes bug where CalculatorProvider fails to apply altitude refinements. diff --git a/README.md b/README.md index 791dc419e..d283c9795 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ When reporting a bug **please be detailed as possible**. What did you expect the ## Legal Stuff -Copyright © 2014-2021 Forrest Guice
+Copyright © 2014-2022 Forrest Guice
The source code is available under [GPLv3](LICENSE) (https://github.com/forrestguice/SuntimesWidget). > This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the [GNU General Public License](LICENSE) for more details. @@ -172,11 +172,12 @@ Catalan and Spanish translations by Raulv Basque translation by beriain.
Norwegian translation by FTno.
Italian translation by Matteo Caoduro and GiovaGa.
-Traditional Chinese translation by
ft42.
+Traditional Chinese translation by ft42, and James Liu.
Brazilian Portuguese translation by NetoSilva, Nelson A. de Oliveira, and Enrico S. B. Fraletti.
Russian translation by Ruslan Chintsov.
Dutch translation by Joppla.
Czech translation by utaxiu.
+Simplified Chinese translation by James Liu.
[Contributions to the project](CONTRIBUTING.md) are welcome. diff --git a/app/build.gradle b/app/build.gradle index 436814671..c8d5917ad 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,8 +23,8 @@ android minSdkVersion 10 //noinspection ExpiredTargetSdkVersion,OldTargetApi targetSdkVersion 25 - versionCode 80 - versionName "0.13.16" + versionCode 81 + versionName "0.13.17" buildConfigField "String", "GIT_HASH", "\"${getGitHash()}\"" diff --git a/fastlane/metadata/android/en-US/changelogs/81.txt b/fastlane/metadata/android/en-US/changelogs/81.txt new file mode 100644 index 000000000..5e7e0c7a8 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/81.txt @@ -0,0 +1,3 @@ +- adds translation to Simplified Chinese. +- updates translation to Traditional Chinese. +- improves alarm notifications (more descriptive). \ No newline at end of file