Commit 57551a71 authored by Thomas's avatar Thomas
Browse files

Release 3.10.1

parent 2edb2759
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -13,8 +13,8 @@ android {
    defaultConfig {
        minSdk 21
        targetSdk 32
        versionCode 443
        versionName "3.10.0"
        versionCode 444
        versionName "3.10.1"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    flavorDimensions "default"
+5 −0
Original line number Diff line number Diff line
[
  {
    "version": "3.10.1",
    "code": "444",
    "note": "Added:\n- Display all messages in threads from remote instances (when possible)\n* Only public messages for instances using the Mastodon API\n* A dedicated button is displayed at the top right when conditions are filled."
  },
  {
    "version": "3.10.0",
    "code": "443",
+7 −1
Original line number Diff line number Diff line
@@ -144,7 +144,13 @@ public class ContextActivity extends BaseActivity implements FragmentMastodonCon
        if (remote_instance != null) {
            action_remote.setVisible(false);
        } else {
            action_remote.setVisible(firstMessage != null && !firstMessage.visibility.equalsIgnoreCase("direct") && !firstMessage.visibility.equalsIgnoreCase("private"));
            if (firstMessage != null && !firstMessage.visibility.equalsIgnoreCase("direct") && !firstMessage.visibility.equalsIgnoreCase("private")) {
                Pattern pattern = Helper.statusIdInUrl;
                Matcher matcher = pattern.matcher(firstMessage.uri);
                action_remote.setVisible(matcher.find());
            } else {
                action_remote.setVisible(false);
            }
        }
        return true;
    }
+4 −0
Original line number Diff line number Diff line
Added:
- Display all messages in threads from remote instances (when possible)
* Only public messages for instances using the Mastodon API
* A dedicated button is displayed at the top right when conditions are filled.
 No newline at end of file