Commit d70231cd authored by Thomas's avatar Thomas
Browse files

Release 3.13.1

parent 852be8c6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -13,8 +13,8 @@ android {
    defaultConfig {
        minSdk 21
        targetSdk 33
        versionCode 454
        versionName "3.13.0"
        versionCode 455
        versionName "3.13.1"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    flavorDimensions "default"
+5 −0
Original line number Diff line number Diff line
[
  {
    "version": "3.13.1",
    "code": "455",
    "note": "Added:\n- DeepL translation support free/pro keys\n\nChanged:\n- Hide buttons for media when editing\n\nFixed:\n- GIF loaded as static images\n- Suggested accounts cannot be followed"
  },
  {
    "version": "3.13.0",
    "code": "454",
+7 −0
Original line number Diff line number Diff line
@@ -1021,6 +1021,13 @@ public class ComposeAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
                for (Attachment attachment : attachmentList) {
                    ComposeAttachmentItemBinding composeAttachmentItemBinding = ComposeAttachmentItemBinding.inflate(LayoutInflater.from(context), holder.binding.attachmentsList, false);
                    composeAttachmentItemBinding.buttonPlay.setVisibility(View.GONE);
                    if (editMessageId != null) {
                        composeAttachmentItemBinding.editPreview.setVisibility(View.INVISIBLE);
                        composeAttachmentItemBinding.buttonDescription.setVisibility(View.INVISIBLE);
                        composeAttachmentItemBinding.buttonOrderDown.setVisibility(View.INVISIBLE);
                        composeAttachmentItemBinding.buttonOrderUp.setVisibility(View.INVISIBLE);
                        composeAttachmentItemBinding.buttonRemove.setVisibility(View.INVISIBLE);
                    }
                    String attachmentPath = attachment.local_path != null && !attachment.local_path.trim().isEmpty() ? attachment.local_path : attachment.preview_url;
                    if (attachment.type != null || attachment.mimeType != null) {
                        if ((attachment.type != null && attachment.type.toLowerCase().startsWith("image")) || (attachment.mimeType != null && attachment.mimeType.toLowerCase().startsWith("image"))) {
+3 −1
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@ Added:
- DeepL translation support free/pro keys

Changed:
- Hide buttons for media when editing

Fixed:
- GIF loaded as static images
- Suggested accounts cannot be followed
 No newline at end of file