some release notes

This commit is contained in:
Thomas 2025-06-06 15:21:47 +02:00
parent b954708e3a
commit 49cc9a187e
2 changed files with 20 additions and 1 deletions

View file

@ -552,7 +552,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
String loadMediaType = sharedpreferences.getString(context.getString(R.string.SET_LOAD_MEDIA_TYPE), "ALWAYS"); String loadMediaType = sharedpreferences.getString(context.getString(R.string.SET_LOAD_MEDIA_TYPE), "ALWAYS");
boolean pronounsSupport = sharedpreferences.getBoolean(context.getString(R.string.SET_PRONOUNS_SUPPORT), true); boolean pronounsSupport = sharedpreferences.getBoolean(context.getString(R.string.SET_PRONOUNS_SUPPORT), true);
if(pronounsSupport) { if(pronounsSupport) {
if (statusToDeal.pronouns == null && statusToDeal.account.fields != null && statusToDeal.account.fields.size() > 0) { if (statusToDeal.pronouns == null && statusToDeal.account != null && statusToDeal.account.fields != null && statusToDeal.account.fields.size() > 0) {
for (Field field : statusToDeal.account.fields) { for (Field field : statusToDeal.account.fields) {
if (PronounsHelper.pronouns.contains(field.name.toLowerCase().trim())) { if (PronounsHelper.pronouns.contains(field.name.toLowerCase().trim())) {
statusToDeal.pronouns = Helper.parseHtml(field.value); statusToDeal.pronouns = Helper.parseHtml(field.value);

View file

@ -0,0 +1,19 @@
Added:
- Highlight bottom hashtags
- Support Trending Links
- Featured tags displayed in profiles
- Add/Remove featured tags from the profile editor
Changed:
- Add confirmation dialog when long pressing the boost button
- Open messages by tapping on Scheduled Boost
- Improve language picker when filtered with some languages
Fixed:
- Limits number of fetch for filters
- Pleroma instances cannot select media
- Wrong messages deleted for scheduled (messages and boosts)
- Fix a crash with long threads
- Fix a potential memory issue for not cropped media
- Fix embedded quotes not displayed
- Some crashes