Commit cf022002 authored by Thomas's avatar Thomas
Browse files

Release 3.33.1

parent 4b4b6c49
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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"
+2 −2
Original line number Diff line number Diff line
[
  {
    "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"
  },
  {
+2 −1
Original line number Diff line number Diff line
@@ -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();