From 22209efc37c078a5e5e9e372dbbf3b168bc3be19 Mon Sep 17 00:00:00 2001 From: LucasGGamerM <71328265+LucasGGamerM@users.noreply.github.com> Date: Tue, 16 May 2023 08:46:48 -0300 Subject: [PATCH 1/3] docs(faq): add Moshidon for iOS question Many people have asked me about the possibility of Moshidon for iOS. This F.A.Q. entry addresses that --- FAQ.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/FAQ.md b/FAQ.md index fb4375cce..3d0f5ff1f 100644 --- a/FAQ.md +++ b/FAQ.md @@ -3,3 +3,7 @@ Q: What are the main differences between Moshidon and Megalodon? A: There are many, but the most outstanding differences are: the ability to have other server's local timeline inside the app. It can be acessed in the "Add community" option in the top right corner of the Edit timelines screen. Other outstanding features that Moshidon has are some quality of life improvements, such as notification actions and allowing for unlisted replies by default. Most other features are pretty minor, such as profile notes directly available in the person's profile. Other features are quite minor usability and visibility improvements. All of which can be found in the settings page. + +Q: Will there ever be a versjon of Moshidon for iOS? + +A: No. As android and iOS apps do not share code, it is incredibly hard to port. From 558c5fba5651efa350eb9cbd03d829b1b9dea0ae Mon Sep 17 00:00:00 2001 From: LucasGGamerM <71328265+LucasGGamerM@users.noreply.github.com> Date: Tue, 16 May 2023 11:24:37 -0300 Subject: [PATCH 2/3] fix: fix crash on profile when saving a note fails This fixes a crash on calckey, where notes dont exist --- .../org/joinmastodon/android/fragments/ProfileFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java index 6fe68ad13..b6781427a 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java +++ b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java @@ -416,7 +416,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList @Override public void onError(ErrorResponse result) { - Toast.makeText(getActivity(), getString(R.string.mo_personal_note_update_failed), Toast.LENGTH_LONG).show(); + error.showToast(getActivity()); } }).exec(accountID); } From 4e143abfb94f4d0cc3369a0a1242fedb66c4163d Mon Sep 17 00:00:00 2001 From: LucasGGamerM <71328265+LucasGGamerM@users.noreply.github.com> Date: Tue, 16 May 2023 11:29:38 -0300 Subject: [PATCH 3/3] fix: fix compilation problem caused by typo I did the latest commits from my chromebook, which I accidentally typed the wrong variable name. --- .../org/joinmastodon/android/fragments/ProfileFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java index b6781427a..3a3e20800 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java +++ b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java @@ -415,7 +415,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList public void onSuccess(Relationship result) {} @Override - public void onError(ErrorResponse result) { + public void onError(ErrorResponse error) { error.showToast(getActivity()); } }).exec(accountID);