Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[plugin.video.powerunlimited] 1.0.8+matrix.1 #4575

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions plugin.video.powerunlimited/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions plugin.video.powerunlimited/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions plugin.video.powerunlimited/.idea/plugin.video.powerunlimited.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions plugin.video.powerunlimited/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions plugin.video.powerunlimited/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugin.video.powerunlimited/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
xbmc.log("[ADDON] %s, Python Version %s" % (ADDON, str(sys.version)), xbmc.LOGDEBUG)
xbmc.log("[ADDON] %s v%s (%s) is starting, ARGV = %s" % (ADDON, VERSION, DATE, repr(sys.argv)),
xbmc.LOGDEBUG)
from resources.lib import powerunlimited_main as plugin
from resources.lib import powerunlimited_list as plugin
else:
action = urllib.parse.parse_qs(urllib.parse.urlparse(sys.argv[2]).query)['action'][0]
#
Expand Down
15 changes: 9 additions & 6 deletions plugin.video.powerunlimited/addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<addon
id="plugin.video.powerunlimited"
name="PowerUnlimited Tv"
version="1.0.7+matrix.1"
version="1.0.8+matrix.1"
provider-name="Skipmode A1">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
Expand All @@ -18,17 +18,20 @@
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en_GB">Watch videos from PowerUnlimited Tv (dutch)</summary>
<description lang="en_GB">Watch videos from PowerUnlimited Tv (dutch)</description>
<disclaimer lang="en_GB">For bugs, requests or general questions visit the PowerUnlimited Tv thread on the Kodi forum.</disclaimer>
<description lang="en_GB">Watch videos from PowerUnlimited Tv (dutch)</description>
<disclaimer lang="en_GB">For bugs, requests or general questions visit the PowerUnlimited Tv thread on the Kodi forum.</disclaimer>
<summary lang="nl_NL">Bekijk videos van PowerUnlimited Tv (dutch)</summary>
<description lang="nl_NL">Bekijk videos van PowerUnlimited Tv (dutch)</description>
<disclaimer lang="nl_NL">Bugs of andere feedback op deze plugin kan geplaatst worden in de PowerUnlimited Tv thread op het Kodi forum.</disclaimer>
<description lang="nl_NL">Bekijk videos van PowerUnlimited Tv (dutch)</description>
<disclaimer lang="nl_NL">Bugs of andere feedback op deze plugin kan geplaatst worden in de PowerUnlimited Tv thread op het Kodi forum.</disclaimer>
<language>nl</language>
<platform>all</platform>
<license>GPL-2.0-or-later</license>
<forum>http://forum.xbmc.org/showthread.php?tid=203211</forum>
<website>http://www.pu.nl/</website>
<website>https://www.pu.nl/</website>
<source>https://github.com/skipmodea1/plugin.video.powerunlimited.python3</source>
<news>v1.0.8 (2024-10-04)
- updated the addon to use the changed website
</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
Expand Down
3 changes: 3 additions & 0 deletions plugin.video.powerunlimited/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.0.8 (2024-10-04)
- updated the addon to use the changed website

v1.0.7 (2018-01-20)
- removed looking for video dialogue
- addon now works in kode python 2 and should also work in python 3 (!!) once all dependencies work in python 3.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ msgid "For bugs, requests or general questions visit the PowerUnlimited Tv threa
msgstr ""

msgctxt "#30000"
msgid "All Videos"
msgid "Videos"
msgstr ""

msgctxt "#30001"
msgid "PU-TV"
msgid "Podcasts"
msgstr ""

msgctxt "#30002"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ msgid "For bugs, requests or general questions visit the PowerUnlimited Tv threa
msgstr "Bugs of andere feedback op deze plugin kan geplaatst worden in de PowerUnlimited Tv thread op het Kodi forum."

msgctxt "#30000"
msgid "All Videos"
msgstr "Alles"
msgid "Videos"
msgstr "Videos"

msgctxt "#30001"
msgid "PU-TV"
msgstr "PU-TV"
msgid "Podcasts"
msgstr "Podcasts"

msgctxt "#30002"
msgid "Trailers"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
LANGUAGE = SETTINGS.getLocalizedString
IMAGES_PATH = os.path.join(xbmcaddon.Addon().getAddonInfo('path'), 'resources')
HEADERS = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36'}
DATE = "2018-01-20"
VERSION = "1.0.7"
VIDEO_LIST_PAGE_URL = "https://pu.nl/artikelen/videos/"
DATE = "2024-10-04"
VERSION = "1.0.8"


if sys.version_info[0] > 2:
Expand Down
Binary file not shown.
Loading
Loading