mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-07-14 15:40:29 +03:00
Release 3.33.1
This commit is contained in:
parent
4b4b6c49b2
commit
cf022002c5
4 changed files with 6 additions and 5 deletions
|
@ -13,8 +13,8 @@ android {
|
|||
defaultConfig {
|
||||
minSdk 21
|
||||
targetSdk 34
|
||||
versionCode 533
|
||||
versionName "3.33.0"
|
||||
versionCode 534
|
||||
versionName "3.33.1"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
flavorDimensions "default"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[
|
||||
{
|
||||
"version": "3.33.0",
|
||||
"code": "533",
|
||||
"version": "3.33.1",
|
||||
"code": "534",
|
||||
"note": "Added:\n- Highlight bottom hashtags\n- Support Trending Links\n- Featured tags displayed in profiles\n- Add/Remove featured tags from the profile editor\n\nChanged:\n- Add confirmation dialog when long pressing the boost button\n- Open messages by tapping on Scheduled Boost\n- Improve language picker when filtered with some languages\n\nFixed:\n- Limits number of fetch for filters\n- Pleroma instances cannot select media\n- Wrong messages deleted for scheduled (messages and boosts)\n- Fix a crash with long threads\n- Fix a potential memory issue for not cropped media\n- Fix embedded quotes not displayed\n- Some crashes"
|
||||
},
|
||||
{
|
||||
|
|
|
@ -234,7 +234,8 @@ public class ProfileActivity extends BaseActivity {
|
|||
accountsVM.isMuted(Helper.getCurrentAccount(ProfileActivity.this), account).observe(this, result -> homeMuted = result != null && result);
|
||||
ContextCompat.registerReceiver(ProfileActivity.this, broadcast_data, new IntentFilter(Helper.BROADCAST_DATA), ContextCompat.RECEIVER_NOT_EXPORTED);
|
||||
//Search for featured tags
|
||||
accountsVM.getAccountFeaturedTags(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, account.id).observe(this, featuredTags -> {
|
||||
|
||||
accountsVM.getAccountFeaturedTags(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, account!=null?account.id:account_id).observe(this, featuredTags -> {
|
||||
if(featuredTags != null && !featuredTags.isEmpty()) {
|
||||
binding.featuredHashtagsContainer.setVisibility(View.VISIBLE);
|
||||
binding.featuredHashtags.removeAllViews();
|
||||
|
|
Loading…
Reference in a new issue