diff --git a/CHANGELOG.md b/CHANGELOG.md index e6e4d4d3e..6c52605af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ ### Significant bug fixes +## v22.0 beta 2 + +### Significant bug fixes + +- **Improved notification loading speed**, [PR#3598](https://github.com/tuskyapp/Tusky/pull/3598) +- **Restore showing 0/1/1+ for replies**, [PR#3590](https://github.com/tuskyapp/Tusky/pull/3590) +- **Show filter titles, not filter keywords, on filtered posts**, [PR#3589](https://github.com/tuskyapp/Tusky/pull/3589) +- **Fixed a bug where opening a status could open an unrelated link**, [PR#3600](https://github.com/tuskyapp/Tusky/pull/3600) +- **Show "Add" button in correct place when there are no filters**, [PR#3561](https://github.com/tuskyapp/Tusky/pull/3561) +- **Fixed assorted crashes** + ## v22.0 beta 1 ### New features and other improvements diff --git a/app/build.gradle b/app/build.gradle index 9729a3581..8323d425d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -28,8 +28,8 @@ android { namespace "com.keylesspalace.tusky" minSdk 23 targetSdk 33 - versionCode 103 - versionName "22.0 beta 1" + versionCode 104 + versionName "22.0 beta 2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true diff --git a/fastlane/metadata/android/en-US/changelogs/103.txt b/fastlane/metadata/android/en-US/changelogs/103.txt index 3eec4995f..896b871cf 100644 --- a/fastlane/metadata/android/en-US/changelogs/103.txt +++ b/fastlane/metadata/android/en-US/changelogs/103.txt @@ -1,4 +1,4 @@ -Tusky 22.0 +Tusky 22.0 beta 1 Features including: diff --git a/fastlane/metadata/android/en-US/changelogs/104.txt b/fastlane/metadata/android/en-US/changelogs/104.txt new file mode 100644 index 000000000..dffabc4d6 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/104.txt @@ -0,0 +1,10 @@ +Tusky 22.0 beta 2 + +Fixes including: + +- Improved notification loading speed +- Restore showing 0/1/1+ for replies +- Show filter titles, not filter keywords, on filtered posts +- Fixed a bug where opening a status could open an unrelated link +- Show "Add" button in correct place when there are no filters +- Fixed assorted crashes