diff --git a/app/src/fdroid_full/play/release-notes/en-US/default.txt b/app/src/fdroid_full/play/release-notes/en-US/default.txt index 1afccdf..4339f62 100644 --- a/app/src/fdroid_full/play/release-notes/en-US/default.txt +++ b/app/src/fdroid_full/play/release-notes/en-US/default.txt @@ -1,25 +1,9 @@ Added: -- Device notifications (refresh time can be set in settings or disabled) -- Double tap video left/right to seek - or + 10 seconds -- Display video in a list with small thumbnails (default: disabled) -- Automatically adapt full-screen in portrait or landscape -- Incognito: Enable/disable reccords in history -- Video suggestions -- Enable/Disable playback when screen is off (default: disabled) -- Add support for Torrent URLs -- Toggle full video description when available -- Channel can be visited from playing video activity -- Play videos from URL search -- Allow to set behavior in settings for sensitive media -- Remember last play position -- Honor don't download videos when forbidden -- Share channel or account links when visiting profiles +- Display follow button for Sepia Search +- Reach owner from channels Changed: -- Video mode (Normal, webview, magnet and torrent) -- Accept URLs for instances +- Quicker access to account settings Fix: -- Enable to end playing with top back button -- Fix FP message with token -- Share the page on Peertube and not the video file. \ No newline at end of file +- Pull to refresh crashes \ No newline at end of file diff --git a/app/src/main/java/app/fedilab/fedilabtube/PeertubeActivity.java b/app/src/main/java/app/fedilab/fedilabtube/PeertubeActivity.java index 00c9f27..7b97d56 100644 --- a/app/src/main/java/app/fedilab/fedilabtube/PeertubeActivity.java +++ b/app/src/main/java/app/fedilab/fedilabtube/PeertubeActivity.java @@ -743,6 +743,7 @@ public class PeertubeActivity extends AppCompatActivity implements CommentListAd }); if (peertube.isCommentsEnabled()) { + binding.postCommentButton.setVisibility(View.VISIBLE); CommentVM commentViewModel = new ViewModelProvider(PeertubeActivity.this).get(CommentVM.class); commentViewModel.getThread(sepiaSearch ? peertubeInstance : null, videoUuid, max_id).observe(PeertubeActivity.this, this::manageVIewComment); if (Helper.isLoggedIn(PeertubeActivity.this) && !sepiaSearch) { @@ -750,6 +751,7 @@ public class PeertubeActivity extends AppCompatActivity implements CommentListAd } binding.peertubeComments.setVisibility(View.VISIBLE); } else { + binding.postCommentButton.setVisibility(View.GONE); binding.peertubeComments.setVisibility(View.GONE); binding.writeCommentContainer.setVisibility(View.GONE); binding.noActionText.setText(getString(R.string.comment_no_allowed_peertube));