Update release notes

This commit is contained in:
Thomas 2020-11-11 18:28:50 +01:00
parent 2bf929986e
commit a984607ee8
2 changed files with 6 additions and 20 deletions

View File

@ -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.
- Pull to refresh crashes

View File

@ -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));