From bfc84e4b85a62b84fbfaa121dfaf5665105c1661 Mon Sep 17 00:00:00 2001 From: Nik Clayton Date: Mon, 10 Jul 2023 19:58:23 +0200 Subject: [PATCH] Prepare 23.0 (versionCode 113) (#3833) --- CHANGELOG.md | 21 +++++++++++++++++++ app/build.gradle | 4 ++-- .../metadata/android/en-US/changelogs/113.txt | 15 +++++++++++++ 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/113.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 179760d74..1328cd7f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,27 @@ ### Significant bug fixes +## v23.0 + +### New features and other improvements + +- **New preference to scale UI text**, [PR#3248](https://github.com/tuskyapp/Tusky/pull/3248) by [@nikclayton](https://mastodon.social/@nikclayton) + +### Significant bug fixes + +- **Save account information correctly**, [PR#3720](https://github.com/tuskyapp/Tusky/pull/3720) by [@connyduck](https://chaos.social/@ConnyDuck) + - If you were logged in with multiple accounts it was possible to switch accounts in a way that the UI showed the new account, but database operations were happening using the old account. +- **"pull" notifications on devices running Android versions <= 11**, [PR#3649](https://github.com/tuskyapp/Tusky/pull/3649) by [@nikclayton](https://mastodon.social/@nikclayton) + - Pull notifications (i.e., not using ntfy.sh) could silently fail on devices running Android 11 and below +- **Work around Android bug where text fields could "forget" they can copy/paste**, [PR#3707](https://github.com/tuskyapp/Tusky/pull/3707) by [@nikclayton](https://mastodon.social/@nikclayton) +- **Viewing "diffs" in edit history will not extend off screen edge**, [PR#3431](https://github.com/tuskyapp/Tusky/pull/3431) by [@nikclayton](https://mastodon.social/@nikclayton) +- **Don't crash if your server has no post edit history**, [PR#3747](https://github.com/tuskyapp/Tusky/pull/3747) by [@nikclayton](https://mastodon.social/@nikclayton) + - Your Mastodon server might know that a post has been edited, but not know the details of those edits. Trying to view the history of those statuses no longer crashes. +- **Add a "Delete" button when editing a filter**, [PR#3553](https://github.com/tuskyapp/Tusky/pull/3553) by [@Tak](https://mastodon.gamedev.place/@Tak) +- **Show non-square emoji correctly**, [PR#3711](https://github.com/tuskyapp/Tusky/pull/3711) by [@connyduck](https://chaos.social/@ConnyDuck) +- **Potential crash when editing profile fields**, [PR#3808](https://github.com/tuskyapp/Tusky/pull/3808) by [@nikclayton](https://mastodon.social/@nikclayton) +- **Oversized context menu when editing image descriptions**, [PR#3787](https://github.com/tuskyapp/Tusky/pull/3787) by [@connyduck](https://chaos.social/@ConnyDuck) + ## v23.0 beta 2 ### Significant bug fixes diff --git a/app/build.gradle b/app/build.gradle index 90abe4a9a..b44dfbbfe 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -29,8 +29,8 @@ android { namespace "com.keylesspalace.tusky" minSdk 23 targetSdk 33 - versionCode 112 - versionName "23.0 beta 2" + versionCode 113 + versionName "23.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true diff --git a/fastlane/metadata/android/en-US/changelogs/113.txt b/fastlane/metadata/android/en-US/changelogs/113.txt new file mode 100644 index 000000000..53665b6c7 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/113.txt @@ -0,0 +1,15 @@ +Tusky 23.0 + +New features: + +- New preference to scale UI text + +Fixes: + +- Save account information correctly +- "pull" notifications on devices running Android versions <= 11 +- Android bug where text fields could "forget" they can copy/paste +- Viewing changes in edit history will not extend off screen edge +- Don't crash if your server has no post edit history +- Show non-square emoji correctly +- Potential crash when editing profile fields