From 054c446354a1b02def15a59fbc24bcdce134e001 Mon Sep 17 00:00:00 2001 From: Cyrille Bollu Date: Tue, 31 Jul 2018 16:52:45 +0200 Subject: [PATCH] Bumped to version 0.3.0 --- README.md | 7 +++---- addon.xml | 6 ++++-- peertube.py | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2f6002a..b70b4a0 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,13 @@ This code is still proof-of-concept but it works, and you're welcome to improve * Browse all videos on a PeerTube instance * Search for videos on a PeerTube instance (Only supported by 1.0.0-beta10+ instances) -* Select Peertube instance to use (Not implemented yet) +* Select Peertube instance to use # User settings * User definable preferred PeerTube instance -* Number of videos to display per page (Not implemented yet) -* Sort method to be used when listing videos (Not implemented yet) +* Number of videos to display per page +* Sort method to be used when listing videos (Currently, only 'views' and 'likes') # Limitations @@ -24,4 +24,3 @@ The reason is that it uses the libtorrent python libray which doesn't support it * Kodi 17 or above - diff --git a/addon.xml b/addon.xml index 74a039c..296e766 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + @@ -20,8 +20,10 @@ cyrille.bollu2@gmail.com https://github.com/StCyr/plugin.video.peertube +0.3.0 +Implemented the 'Browse instances' functionality 0.2.2 -Implemented the 'video sort method' +Implemented the 'video sort method' functionality 0.2.1 Fixed some bugs Added a 'video sort method' setting (functionality not implemented yet though) diff --git a/peertube.py b/peertube.py index 1f51d37..4b13c2a 100644 --- a/peertube.py +++ b/peertube.py @@ -122,7 +122,7 @@ class PeertubeAddon(): url = '{0}?action=play_video&url={1}'.format(self.plugin_url, torrent_url) elif data_type == 'instances': - + # TODO: Add a context menu to select instance as preferred instance # Instances are not playable list_item.setProperty('IsPlayable', 'false')