Skip to content

Commit

Permalink
[plugin.video.stalkervod] v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rickeylohia committed Apr 6, 2024
1 parent bc96e29 commit d3f4640
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 21 deletions.
8 changes: 5 additions & 3 deletions plugin.video.stalkervod/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Stalker VOD Kodi add-on
**plugin.video.stalkervod** is a [Kodi](https://kodi.tv/) add-on for Stalker platform IPTV Client. You can watch Video On-Demand as well as TV Channels.

v0.0.6 - Bug fix

v0.0.5 - Fix for portals with no stalker_portal in context path
Please try re-entering the server address based on the format provided if it does not work after upgrading to v0.0.5
https://github.com/rickeylohia/plugin.video.stalkervod/issues/12

v0.0.4 Refactor, debug logs and minor bug fix

0.0.3 Minor bug fixes and highlight favorites
v0.0.3 Minor bug fixes and highlight favorites

0.0.2 Add favorites context menu option and re-use existing token if possible
v0.0.2 Add favorites context menu option and re-use existing token if possible

0.0.1 Initial Release
v0.0.1 Initial Release
20 changes: 3 additions & 17 deletions plugin.video.stalkervod/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.stalkervod" name="Stalker VOD Client" version="0.0.5" provider-name="rickey">
<addon id="plugin.video.stalkervod" name="Stalker VOD Client" version="0.0.6" provider-name="rickey">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.requests" version="2.27.1"/>
Expand All @@ -24,22 +24,8 @@
<screenshot>resources/media/screenshot_4.png</screenshot>
</assets>
<news>
v0.0.5 (2024-03-23)
- Fix for portals with no stalker_portal in context path
Please try re-entering the server address based on the format provided if it does not work after upgrading to v0.0.5
https://github.com/rickeylohia/plugin.video.stalkervod/issues/12

v0.0.4 (2024-01-20)
- Refactor, debug logs and fix for https://github.com/rickeylohia/plugin.video.stalkervod/issues/10

v0.0.3 (2024-01-05)
- Minor bug fixes and highlight favorites

v0.0.2 (2023-12-27)
- Add favorites context menu option and re-use existing token if possible

v0.0.1 (2023-10-22)
- Initial Release
v0.0.6 (2024-04-06)
- Bug fix
</news>
</extension>
</addon>
2 changes: 1 addition & 1 deletion plugin.video.stalkervod/lib/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def __create_video_listing(videos, params):
video_info.setMediaType('season')
else:
url = G.get_plugin_url({'action': 'play', 'video_id': video['id'], 'series': 0})
if video['time'] and video['time'] != '0':
if video['time'] and video['time'].isnumeric() and video['time'] != '0':
video_info.setDuration(int(video['time']) * 60)
video_info.setMediaType('movie')
list_item.setProperty('IsPlayable', 'true')
Expand Down

0 comments on commit d3f4640

Please sign in to comment.