Prepare 23.0 beta 1 (versionCode 111) (#3786)
This commit is contained in:
parent
22a95d927a
commit
961de796b7
3 changed files with 36 additions and 2 deletions
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -6,6 +6,25 @@
|
||||||
|
|
||||||
### Significant bug fixes
|
### Significant bug fixes
|
||||||
|
|
||||||
|
## v23.0 beta 1
|
||||||
|
|
||||||
|
### 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)
|
||||||
|
|
||||||
## v22.0
|
## v22.0
|
||||||
|
|
||||||
### New features and other improvements
|
### New features and other improvements
|
||||||
|
|
|
@ -29,8 +29,8 @@ android {
|
||||||
namespace "com.keylesspalace.tusky"
|
namespace "com.keylesspalace.tusky"
|
||||||
minSdk 23
|
minSdk 23
|
||||||
targetSdk 33
|
targetSdk 33
|
||||||
versionCode 110
|
versionCode 111
|
||||||
versionName "22.0"
|
versionName "23.0 beta 1"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
|
|
||||||
|
|
15
fastlane/metadata/android/en-US/changelogs/111.txt
Normal file
15
fastlane/metadata/android/en-US/changelogs/111.txt
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
Tusky 23.0 beta 1
|
||||||
|
|
||||||
|
New features:
|
||||||
|
|
||||||
|
- New preference to scale UI text
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
|
||||||
|
- Save account information correctly
|
||||||
|
- "pull" notifications on devices running Android versions <= 11
|
||||||
|
- Work around Android bug where text fields could "forget" they can copy/paste
|
||||||
|
- Viewing "diffs" in edit history will not extend off screen edge
|
||||||
|
- Don't crash if your server has no post edit history
|
||||||
|
- Add a "Delete" button when editing a filter
|
||||||
|
- Show non-square emoji correctly
|
Loading…
Reference in a new issue