Prepare v22.0 beta 3 release (#3656)

This commit is contained in:
Nik Clayton 2023-05-15 14:19:54 +02:00 committed by GitHub
parent 44a66cddc7
commit 36ebb0e16c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 2 deletions

View File

@ -6,6 +6,18 @@
### Significant bug fixes
## v22.0 beta 3
### Significant bug fixes
- **Fixed crash when viewing a thread**, [PR#3622](https://github.com/tuskyapp/Tusky/pull/3622)
- **Fixed crash processing Mastodon filters**, [PR#3634](https://github.com/tuskyapp/Tusky/pull/3634)
- **Links in bios of follow/follow request notifications are clickable**, [PR#3646](https://github.com/tuskyapp/Tusky/pull/3646)
- **Android Notifications updates**, [PR#3636](https://github.com/tuskyapp/Tusky/pull/3626)
- Android notification for a Mastodon notification should only be shown once
- Android notifications are grouped by Mastodon notification type (follow, mention, boost, etc)
- Potential for missing notifications has been removed
## v22.0 beta 2
### Significant bug fixes

View File

@ -28,8 +28,8 @@ android {
namespace "com.keylesspalace.tusky"
minSdk 23
targetSdk 33
versionCode 104
versionName "22.0 beta 2"
versionCode 105
versionName "22.0 beta 3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true

View File

@ -0,0 +1,11 @@
Tusky 22.0 beta 3
Fixes including:
- Fixed crash when viewing a thread
- Fixed crash processing Mastodon filters
- Links in bios of follow/follow request notifications are clickable
- Android Notifications updates
- Android notification for a Mastodon notification should only be shown once
- Android notifications are grouped by Mastodon notification type (follow, mention, boost, etc)
- Potential for missing notifications has been removed