mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-07-19 10:00:30 +03:00
some release notes
This commit is contained in:
parent
b954708e3a
commit
49cc9a187e
2 changed files with 20 additions and 1 deletions
|
@ -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
src/fdroid/fastlane/metadata/android/en/changelogs/533.txt
Normal file
19
src/fdroid/fastlane/metadata/android/en/changelogs/533.txt
Normal 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
|
Loading…
Reference in a new issue