diff --git a/CHANGELOG.md b/CHANGELOG.md index e8eaae44d..7a4fc9b32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,28 @@ ### Significant bug fixes +## v29.0 + +### New features and other improvements + +- New iconset https://github.com/tuskyapp/Tusky/pull/5012 +- The layout of polls has been improved and a "show results" button was added https://github.com/tuskyapp/Tusky/pull/4980 https://github.com/tuskyapp/Tusky/pull/5047 https://github.com/tuskyapp/Tusky/pull/5095 +- Support for the "blur" filter action (Mastodon 4.4 feature) https://github.com/tuskyapp/Tusky/pull/5038 +- The quality of the image viewer has been improved https://github.com/tuskyapp/Tusky/pull/5068 https://github.com/tuskyapp/Tusky/pull/5067 +- An additional dialog will now prevent accidentally dismissing the media caption dialog https://github.com/tuskyapp/Tusky/pull/4999 +- Tusky will now send a `delete_media` parameter when deleting a post to help servers clean up their media faster (Mastodon 4.4 feature) https://github.com/tuskyapp/Tusky/pull/5082 +- Boosts and favorites are now confirmed via a bottom sheet instead of a drop down https://github.com/tuskyapp/Tusky/pull/5084 +- All account list views now have better error handling https://github.com/tuskyapp/Tusky/pull/5028 +- Support for Android 16 https://github.com/tuskyapp/Tusky/pull/5071 +- Several internal code improvements https://github.com/tuskyapp/Tusky/pull/5036 https://github.com/tuskyapp/Tusky/pull/5094 https://github.com/tuskyapp/Tusky/pull/5055 https://github.com/tuskyapp/Tusky/pull/5024 +- Improved localizations + +### Significant bug fixes + +- caches are now correctly deleted when logging out https://github.com/tuskyapp/Tusky/pull/4997 https://github.com/tuskyapp/Tusky/pull/5004 +- several layout fixes on Android 15+ https://github.com/tuskyapp/Tusky/pull/5053 https://github.com/tuskyapp/Tusky/pull/5041 https://github.com/tuskyapp/Tusky/pull/5003 +- fixes a crash that occurs when Tusky is used on a device with two or more UnifiedPush providers https://github.com/tuskyapp/Tusky/pull/5015 + ## v28.0 ### New features and other improvements diff --git a/app/build.gradle b/app/build.gradle index 24d7ac087..4b87d058f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -32,8 +32,8 @@ android { namespace "com.keylesspalace.tusky" minSdk 24 targetSdk 36 - versionCode 131 - versionName "28.0" + versionCode 132 + versionName "29.0 beta 1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true diff --git a/fastlane/metadata/android/en-US/changelogs/133.txt b/fastlane/metadata/android/en-US/changelogs/133.txt new file mode 100644 index 000000000..499bfb7a9 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/133.txt @@ -0,0 +1,10 @@ +Tusky 29.0 + +- New iconset +- The layout of polls has been improved and a "show results" button was added +- Support for the "blur" filter action (Mastodon 4.4 feature) +- The quality of the image viewer has been improved +- An additional dialog will now prevent accidentally dismissing the media caption dialog +- Boosts and favorites are now confirmed via a bottom sheet instead of a drop down + +See https://github.com/tuskyapp/Tusky/blob/develop/CHANGELOG.md for the full changelog diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/00_login.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/00_login.png index aec3b5d21..cebaa2ca5 100644 Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/00_login.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/00_login.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/01_timeline.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/01_timeline.png index 0f8e3a1f7..4bcc31d11 100644 Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/01_timeline.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/01_timeline.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/02_compose.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/02_compose.png index cd405a423..f634b880a 100644 Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/02_compose.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/02_compose.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/03_profile.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/03_profile.png index 080664578..f68da96f3 100644 Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/03_profile.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/03_profile.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/04_favourites.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/04_favourites.png index 7bcc74d32..10453ee7b 100644 Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/04_favourites.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/04_favourites.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/05_reply.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/05_reply.png index f52b04eef..8ddb17b57 100644 Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/05_reply.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/05_reply.png differ