Parcourir la source

Prepare v22.0 beta 3 release (#3656)

Nik Clayton il y a 1 an
Parent
commit
36ebb0e16c
3 fichiers modifiés avec 25 ajouts et 2 suppressions
  1. 12 0
      CHANGELOG.md
  2. 2 2
      app/build.gradle
  3. 11 0
      fastlane/metadata/android/en-US/changelogs/105.txt

+ 12 - 0
CHANGELOG.md

@@ -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

+ 2 - 2
app/build.gradle

@@ -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
 

+ 11 - 0
fastlane/metadata/android/en-US/changelogs/105.txt

@@ -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