Skip to content

Commit

Permalink
[plugin.video.goplay] 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mediaminister committed Sep 11, 2024
1 parent 4650821 commit 0229b42
Show file tree
Hide file tree
Showing 42 changed files with 4,566 additions and 0 deletions.
674 changes: 674 additions & 0 deletions plugin.video.goplay/LICENSE

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions plugin.video.goplay/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[![GitHub release](https://img.shields.io/github/v/release/add-ons/plugin.video.goplay?display_name=tag)](https://github.com/add-ons/plugin.video.goplay/releases)
[![Build Status](https://img.shields.io/github/actions/workflow/status/add-ons/plugin.video.goplay/ci.yml?branch=master)](https://github.com/add-ons/plugin.video.goplay/actions?query=branch%3Amaster)
[![Codecov status](https://img.shields.io/codecov/c/github/add-ons/plugin.video.goplay/master)](https://codecov.io/gh/add-ons/plugin.video.goplay/branch/master)
[![License: GPLv3](https://img.shields.io/badge/License-GPLv3-yellow.svg)](https://opensource.org/licenses/GPL-3.0)
[![Contributors](https://img.shields.io/github/contributors/add-ons/plugin.video.goplay.svg)](https://github.com/add-ons/plugin.video.goplay/graphs/contributors)

# GoPlay Kodi add-on

*plugin.video.goplay* is een Kodi add-on om de video-on-demand content van [GoPlay](https://www.goplay.be/) te bekijken. Hiervoor dien je eerst een
account op [goplay.be](https://www.goplay.be/) aan te maken.

## Features

De volgende features worden ondersteund:
* Bekijk on-demand content van Play4, Play5, Play6, Play7 en Play Crime
* Doorzoeken van alle programma's

## Screenshots

<table>
<tr>
<td><img src="resources/screenshot01.jpg" width=270></td>
<td><img src="resources/screenshot02.jpg" width=270></td>
<td><img src="resources/screenshot03.jpg" width=270></td>
</tr>
</table>

## Changelog

## [v0.5.0](https://github.com/add-ons/plugin.video.goplay/tree/v0.5.0) (2024-09-11)

- Update to new GoPlay API (@mediaminister)
37 changes: 37 additions & 0 deletions plugin.video.goplay/addon.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.goplay" name="GoPlay" version="0.5.0" provider-name="mediaminister">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.dateutil" version="2.8.1"/>
<import addon="script.module.inputstreamhelper" version="0.6.1"/>
<import addon="script.module.pysocks" version="1.7.0" optional="true"/>
<import addon="script.module.requests" version="2.31.0"/>
<import addon="script.module.routing" version="0.2.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon_entry.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service_entry.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="nl_NL">Bekijk programma's van GoPlay.</summary>
<description lang="nl_NL">Deze add-on geeft toegang tot de programma's die aangeboden worden op Goplay.</description>
<disclaimer lang="nl_NL">Deze add-on wordt niet ondersteund door Play Media, en wordt aangeboden 'as is', zonder enige garantie. De logo's zijn eigendom van Play Media.</disclaimer>
<summary lang="en_GB">Watch content from GoPlay.</summary>
<description lang="en_GB">This add-on gives access to video-on-demand content available on GoPlay.</description>
<disclaimer lang="en_GB">This add-on is not officially commissioned/supported by Play Media and is provided 'as is' without any warranty of any kind. The logos are property of Play Media.</disclaimer>
<platform>all</platform>
<license>GPL-3.0-only</license>
<news>v0.5.0 (2024-09-11)
- Update to new GoPlay API
</news>
<source>https://github.com/add-ons/plugin.video.goplay</source>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.png</fanart>
<screenshot>resources/screenshot01.jpg</screenshot>
<screenshot>resources/screenshot02.jpg</screenshot>
<screenshot>resources/screenshot03.jpg</screenshot>
</assets>
<reuselanguageinvoker>true</reuselanguageinvoker>
</extension>
</addon>
18 changes: 18 additions & 0 deletions plugin.video.goplay/addon_entry.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
"""Addon entry point"""

from __future__ import absolute_import, division, unicode_literals

from xbmcaddon import Addon

from resources.lib import kodiutils, kodilogging

# Reinitialise ADDON every invocation to fix an issue that settings are not fresh.
kodiutils.ADDON = Addon()
kodilogging.ADDON = Addon()

if __name__ == '__main__':
from sys import argv
from resources.lib.addon import run

run(argv)
Empty file.
Binary file added plugin.video.goplay/resources/fanart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added plugin.video.goplay/resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

### MENUS
msgctxt "#30001"
msgid "A-Z"
msgstr ""

msgctxt "#30002"
msgid "Alphabetically sorted list of programs"
msgstr ""

msgctxt "#30003"
msgid "Catalogue"
msgstr ""

msgctxt "#30004"
msgid "Browse the catalogue"
msgstr ""

msgctxt "#30005"
msgid "Recommendations"
msgstr ""

msgctxt "#30006"
msgid "Show the recommendations"
msgstr ""

msgctxt "#30007"
msgid "Channels"
msgstr ""

msgctxt "#30008"
msgid "Show channel based overview"
msgstr ""

msgctxt "#30009"
msgid "Search"
msgstr ""

msgctxt "#30010"
msgid "Search trough the catalogue"
msgstr ""

msgctxt "#30011"
msgid "My List"
msgstr ""

msgctxt "#30012"
msgid "Browse My List"
msgstr ""

msgctxt "#30014"
msgid "Continue watching"
msgstr ""


### SUBMENUS
msgctxt "#30052"
msgid "Watch live [B]{channel}[/B]"
msgstr ""

msgctxt "#30055"
msgid "Catalog for [B]{channel}[/B]"
msgstr ""

msgctxt "#30056"
msgid "Browse the Catalog for [B]{channel}[/B]"
msgstr ""


### CONTEXT MENU
msgctxt "#30100"
msgid "Add to My List"
msgstr ""

msgctxt "#30101"
msgid "Remove from My List"
msgstr ""

msgctxt "#30102"
msgid "Go to Program"
msgstr ""


### MESSAGES
msgctxt "#30701"
msgid "To watch a video, you need to enter your credentials. Do you want to enter them now?"
msgstr ""

msgctxt "#30702"
msgid "An error occurred while authenticating: {error}."
msgstr ""

msgctxt "#30710"
msgid "This video is geo-blocked and can't be played from your location: {error}."
msgstr ""

msgctxt "#30712"
msgid "The video is unavailable and can't be played right now."
msgstr ""

msgctxt "#30717"
msgid "This program is not available in the catalogue."
msgstr ""

msgctxt "#30719"
msgid "This video cannot be played."
msgstr ""

msgctxt "#30720"
msgid "This video is not available abroad."
msgstr ""


### SETTINGS
msgctxt "#30800"
msgid "Credentials"
msgstr ""

msgctxt "#30801"
msgid "Credentials"
msgstr ""

msgctxt "#30802"
msgid "Email address"
msgstr ""

msgctxt "#30803"
msgid "Password"
msgstr ""

msgctxt "#30880"
msgid "Expert"
msgstr ""

msgctxt "#30881"
msgid "Logging"
msgstr ""

msgctxt "#30882"
msgid "Enable debug logging"
msgstr ""

msgctxt "#30883"
msgid "Install Kodi Logfile Uploader…"
msgstr ""

msgctxt "#30884"
msgid "Open Kodi Logfile Uploader…"
msgstr ""
Loading

0 comments on commit 0229b42

Please sign in to comment.