Update release notes
This commit is contained in:
parent
2bf929986e
commit
a984607ee8
|
@ -1,25 +1,9 @@
|
||||||
Added:
|
Added:
|
||||||
- Device notifications (refresh time can be set in settings or disabled)
|
- Display follow button for Sepia Search
|
||||||
- Double tap video left/right to seek - or + 10 seconds
|
- Reach owner from channels
|
||||||
- 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
|
|
||||||
|
|
||||||
Changed:
|
Changed:
|
||||||
- Video mode (Normal, webview, magnet and torrent)
|
- Quicker access to account settings
|
||||||
- Accept URLs for instances
|
|
||||||
|
|
||||||
Fix:
|
Fix:
|
||||||
- Enable to end playing with top back button
|
- Pull to refresh crashes
|
||||||
- Fix FP message with token
|
|
||||||
- Share the page on Peertube and not the video file.
|
|
|
@ -743,6 +743,7 @@ public class PeertubeActivity extends AppCompatActivity implements CommentListAd
|
||||||
});
|
});
|
||||||
|
|
||||||
if (peertube.isCommentsEnabled()) {
|
if (peertube.isCommentsEnabled()) {
|
||||||
|
binding.postCommentButton.setVisibility(View.VISIBLE);
|
||||||
CommentVM commentViewModel = new ViewModelProvider(PeertubeActivity.this).get(CommentVM.class);
|
CommentVM commentViewModel = new ViewModelProvider(PeertubeActivity.this).get(CommentVM.class);
|
||||||
commentViewModel.getThread(sepiaSearch ? peertubeInstance : null, videoUuid, max_id).observe(PeertubeActivity.this, this::manageVIewComment);
|
commentViewModel.getThread(sepiaSearch ? peertubeInstance : null, videoUuid, max_id).observe(PeertubeActivity.this, this::manageVIewComment);
|
||||||
if (Helper.isLoggedIn(PeertubeActivity.this) && !sepiaSearch) {
|
if (Helper.isLoggedIn(PeertubeActivity.this) && !sepiaSearch) {
|
||||||
|
@ -750,6 +751,7 @@ public class PeertubeActivity extends AppCompatActivity implements CommentListAd
|
||||||
}
|
}
|
||||||
binding.peertubeComments.setVisibility(View.VISIBLE);
|
binding.peertubeComments.setVisibility(View.VISIBLE);
|
||||||
} else {
|
} else {
|
||||||
|
binding.postCommentButton.setVisibility(View.GONE);
|
||||||
binding.peertubeComments.setVisibility(View.GONE);
|
binding.peertubeComments.setVisibility(View.GONE);
|
||||||
binding.writeCommentContainer.setVisibility(View.GONE);
|
binding.writeCommentContainer.setVisibility(View.GONE);
|
||||||
binding.noActionText.setText(getString(R.string.comment_no_allowed_peertube));
|
binding.noActionText.setText(getString(R.string.comment_no_allowed_peertube));
|
||||||
|
|
Loading…
Reference in New Issue