Bumped to version 0.3.0

This commit is contained in:
Cyrille Bollu 2018-07-31 16:52:45 +02:00
parent a3dc2511a5
commit 054c446354
3 changed files with 8 additions and 7 deletions

View File

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

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.peertube" name="PeerTube" version="0.2.2" provider-name="Cyrille Bollu">
<addon id="plugin.video.peertube" name="PeerTube" version="0.3.0" provider-name="Cyrille Bollu">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.addon.signals" version="0.0.3"/>
@ -20,8 +20,10 @@
<email>cyrille.bollu2@gmail.com</email>
<source>https://github.com/StCyr/plugin.video.peertube</source>
<news>
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)

View File

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