diff --git a/CHANGELOG.md b/CHANGELOG.md index ab13d8e7c..480669b41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,49 @@ ### Significant bug fixes +## v26.0 + +### New features and other improvements + +- The blue primary color that previously was the same for all themes is now slightly lighter in the dark theme and darker in the light theme for better contrast. + Consequently, the color that is used on top of the primary color (e.g. on buttons) is now dark instead of white in the dark theme. [PR#3921](https://github.com/tuskyapp/Tusky/pull/3921) [PR#4507](https://github.com/tuskyapp/Tusky/pull/4507) +- New account preference "default reply privacy". + Note that in contrast to the "default post privacy" this setting will not be synced with the server as Mastodon does not have this feature. [PR#4496](https://github.com/tuskyapp/Tusky/pull/4496) +- New preference "Show confirmation before following" [PR#4445](https://github.com/tuskyapp/Tusky/pull/4445) +- The notification tab is now cached on the device for better offline behavior. + Since it shares the cache with the home timeline, interactions with posts will now sync between those tabs more often than before. [PR#4026](https://github.com/tuskyapp/Tusky/pull/4026) +- Tusky will now only make one call to the server to check which version of the filters api is supported and cache the result instead of everytime filters are needed. [PR#4539](https://github.com/tuskyapp/Tusky/pull/4539) +- The "Hide compose button while scrolling" preference, which had the main purpose of making content behind the button accessible, has been removed and bottom padding added to all lists that could be obscured by buttons. [PR#4486](https://github.com/tuskyapp/Tusky/pull/4486) +- When viewing media of a translated post the media descriptions will now also be translated [PR#4463](https://github.com/tuskyapp/Tusky/pull/4463) +- The custom emojis in the emoji picker are now sorted by category [PR#4533](https://github.com/tuskyapp/Tusky/pull/4533) +- Various internal refactorings to improve performance and maintainability. + [PR#4515](https://github.com/tuskyapp/Tusky/pull/4515) + [PR#4502](https://github.com/tuskyapp/Tusky/pull/4502) + [PR#4472](https://github.com/tuskyapp/Tusky/pull/4472) + [PR#4470](https://github.com/tuskyapp/Tusky/pull/4470) + [PR#4443](https://github.com/tuskyapp/Tusky/pull/4443) + [PR#4441](https://github.com/tuskyapp/Tusky/pull/4441) + [PR#4461](https://github.com/tuskyapp/Tusky/pull/4461) + [PR#4447](https://github.com/tuskyapp/Tusky/pull/4447) + [PR#4411](https://github.com/tuskyapp/Tusky/pull/4411) + [PR#4413](https://github.com/tuskyapp/Tusky/pull/4413) + +### Significant bug fixes + +- Posts with null media focus values will no longer cause Tusky to show an error [PR#4462](https://github.com/tuskyapp/Tusky/pull/4462) +- A lot of other bugfixes, mostly smaller display bugs + [PR#4536](https://github.com/tuskyapp/Tusky/pull/4536) + [PR#4537](https://github.com/tuskyapp/Tusky/pull/4537) + [PR#4527](https://github.com/tuskyapp/Tusky/pull/4527) + [PR#4521](https://github.com/tuskyapp/Tusky/pull/4521) + [PR#4525](https://github.com/tuskyapp/Tusky/pull/4525) + [PR#4518](https://github.com/tuskyapp/Tusky/pull/4518) + [PR#4514](https://github.com/tuskyapp/Tusky/pull/4514) + [PR#4491](https://github.com/tuskyapp/Tusky/pull/4491) + [PR#4490](https://github.com/tuskyapp/Tusky/pull/4490) + [PR#4474](https://github.com/tuskyapp/Tusky/pull/4474) + [PR#4436](https://github.com/tuskyapp/Tusky/pull/4436) + ## v25.2 ### Significant bug fixes diff --git a/app/build.gradle b/app/build.gradle index d53675dc4..7597f04ea 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -29,8 +29,8 @@ android { namespace "com.keylesspalace.tusky" minSdk 24 targetSdk 34 - versionCode 121 - versionName "25.2" + versionCode 122 + versionName "26.0 beta 1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true diff --git a/fastlane/metadata/android/en-US/changelogs/123.txt b/fastlane/metadata/android/en-US/changelogs/123.txt new file mode 100644 index 000000000..0a3892887 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/123.txt @@ -0,0 +1,7 @@ +Tusky 26 + +- The blue primary color has been slightly changed for better contrast +- The content of the notifications tab is now cached for better offline behavior. +- New account preference "default reply privacy" +- A lot off under-the-hood stability & performance improvements +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 22074d158..15f1d9bf2 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 88d9e74d9..63208205b 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 2a098a12c..5ddca5d5d 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 68df57f52..4459d6745 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 78dee66de..74dd7e6b3 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 695bd81d4..6cb002573 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