Commit 49cc9a18 authored by Thomas's avatar Thomas
Browse files

some release notes

parent b954708e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");
        boolean pronounsSupport = sharedpreferences.getBoolean(context.getString(R.string.SET_PRONOUNS_SUPPORT), true);
        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) {
                    if (PronounsHelper.pronouns.contains(field.name.toLowerCase().trim())) {
                        statusToDeal.pronouns = Helper.parseHtml(field.value);
+19 −0
Original line number Diff line number Diff line
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
 No newline at end of file