Compare commits

..

11 Commits

Author SHA1 Message Date
Kai Sommerfeld
69da8dbd0c Merge pull request #28 from ksooo/fixWindows-matrix
Fix windows matrix
2019-05-10 23:37:27 +02:00
Rechi
6d4f3847c7 [cleanup] remove unused includes
this fixes windows build failures
2019-05-10 23:36:06 +02:00
Rechi
38e25e1f1c [depends] jsoncpp: add checksum file 2019-05-10 23:36:06 +02:00
Kai Sommerfeld
472dc2beae Merge pull request #27 from olafhering/kodiplatform
[cmake] remove usage of kodi-platform
2019-05-10 23:31:20 +02:00
Olaf Hering
ec08c20540 [cmake] remove usage of kodi-platform
The pvr.octonet binary addon does not use kodi-platform.
Remove existing references from CMakeLists.txt and debian/control.
Add dependency to libp8-platform-dev because libkodiplatform-dev
pulled that dependency in as a side effect. Fix that bug too by
adding an explicit dependency.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
2019-04-28 12:34:56 +00:00
Kai Sommerfeld
63ef363522 Merge pull request #26 from ksooo/pvr-api-6-0-0
Implement PVR addon API v6.0.0
2019-04-24 21:05:25 +02:00
Kai Sommerfeld
c91061f84b Implement PVR addon API v6.0.0 2019-04-23 23:30:46 +02:00
Kai Sommerfeld
414e756912 build with Kodi master API 2019-04-21 17:40:25 +02:00
Kai Sommerfeld
9de3166203 build with Kodi Matrix API 2019-04-21 17:25:16 +02:00
Kai Sommerfeld
df1b033f14 Merge pull request #25 from ksooo/Leia
build with Kodi Leia API
2019-04-16 06:39:23 +02:00
ksooo
0295717be2 build with Kodi Leia API 2019-04-16 06:37:32 +02:00
11 changed files with 13 additions and 19 deletions

View File

@@ -36,7 +36,7 @@ before_install:
#
before_script:
- cd $TRAVIS_BUILD_DIR/..
- git clone --depth=1 https://github.com/xbmc/xbmc.git
- git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git
- mkdir -p xbmc/cmake/addons/addons/pvr.octonet
- echo "pvr.octonet https://github.com/DigitalDevices/pvr.octonet master" > xbmc/cmake/addons/addons/pvr.octonet/pvr.octonet.txt
- cd $TRAVIS_BUILD_DIR && mkdir build && cd build

View File

@@ -6,12 +6,10 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR})
enable_language(CXX)
find_package(Kodi REQUIRED)
find_package(kodiplatform REQUIRED)
find_package(p8-platform REQUIRED)
find_package(JsonCpp REQUIRED)
include_directories(
${kodiplatform_INCLUDE_DIRS}
${p8-platform_INCLUDE_DIRS}
${KODI_INCLUDE_DIR}
${JSONCPP_INCLUDE_DIRS})

2
Jenkinsfile vendored
View File

@@ -1 +1 @@
buildPlugin()
buildPlugin(version: "Matrix")

View File

@@ -20,12 +20,9 @@ $ git clone https://github.com/DigitalDevices/pvr.octonet.git
Clone the Kodi repository:
```
$ git clone https://github.com/xbmc/xbmc.git
$ git clone --branch master https://github.com/xbmc/xbmc.git
```
If you already have a local Kodi checkout, you can use that one. Just make sure it is recent enough
(Kodi 17 Beta 5 or later should work).
```
$ cd pvr.octonet
$ mkdir build

View File

@@ -29,7 +29,7 @@ artifacts:
build_script:
- cd ..
- set ROOT=%cd%
- git clone --depth=1 https://github.com/xbmc/xbmc.git
- git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git
- mkdir xbmc\cmake\addons\addons\pvr.octonet
- echo pvr.octonet https://github.com/DigitalDevices/pvr.octonet master > xbmc\cmake\addons\addons\pvr.octonet\pvr.octonet.txt
- cd %ADDON%

2
debian/control vendored
View File

@@ -2,7 +2,7 @@ Source: kodi-pvr-octonet
Priority: extra
Maintainer: Julian Scheel <julian@jusst.de>
Build-Depends: debhelper (>= 9.0.0), cmake, libjsoncpp-dev,
libkodiplatform-dev (>= 16.0.0), kodi-addon-dev
libp8-platform-dev, kodi-addon-dev
Standards-Version: 3.9.4
Section: libs
Homepage: https://github.com/DigitalDevices/pvr.octonet

View File

@@ -0,0 +1 @@
3671ba6051e0f30849942cc66d1798fdf0362d089343a83f704c09ee7156604f

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.octonet"
version="0.7.0"
version="1.0.0"
name="Digital Devices Octopus NET Client"
provider-name="digitaldevices">
<requires>@ADDON_DEPENDS@</requires>

View File

@@ -26,7 +26,6 @@
#include <json/json.h>
#include "OctonetData.h"
#include "p8-platform/util/StringUtils.h"
#ifdef __WINDOWS__
#define timegm _mkgmtime
@@ -228,12 +227,12 @@ PVR_ERROR OctonetData::getChannels(ADDON_HANDLE handle, bool bRadio)
return PVR_ERROR_NO_ERROR;
}
PVR_ERROR OctonetData::getEPG(ADDON_HANDLE handle, const PVR_CHANNEL &channel, time_t start, time_t end)
PVR_ERROR OctonetData::getEPG(ADDON_HANDLE handle, int iChannelUid, time_t start, time_t end)
{
for (unsigned int i = 0; i < channels.size(); i++)
{
OctonetChannel &chan = channels.at(i);
if (channel.iUniqueId != chan.id)
if (iChannelUid != chan.id)
continue;
if(chan.epg.empty()) {

View File

@@ -25,7 +25,6 @@
#include <vector>
#include "p8-platform/threads/threads.h"
#include "p8-platform/util/StdString.h"
#include "client.h"
struct OctonetEpgEntry
@@ -69,7 +68,7 @@ class OctonetData : public P8PLATFORM::CThread
virtual PVR_ERROR getGroups(ADDON_HANDLE handle, bool bRadio);
virtual PVR_ERROR getGroupMembers(ADDON_HANDLE handle, const PVR_CHANNEL_GROUP &group);
virtual PVR_ERROR getEPG(ADDON_HANDLE handle, const PVR_CHANNEL &channel, time_t start, time_t end);
virtual PVR_ERROR getEPG(ADDON_HANDLE handle, int iChannelUid, time_t start, time_t end);
const std::string& getUrl(int id) const;
const std::string& getName(int id) const;

View File

@@ -156,9 +156,9 @@ void OnPowerSavingActivated() {}
void OnPowerSavingDeactivated() {}
/* EPG */
PVR_ERROR GetEPGForChannel(ADDON_HANDLE handle, const PVR_CHANNEL& channel, time_t iStart, time_t iEnd)
PVR_ERROR GetEPGForChannel(ADDON_HANDLE handle, int iChannelUid, time_t iStart, time_t iEnd)
{
return data->getEPG(handle, channel, iStart, iEnd);
return data->getEPG(handle, iChannelUid, iStart, iEnd);
}
PVR_ERROR IsEPGTagRecordable(const EPG_TAG*, bool*) { return PVR_ERROR_NOT_IMPLEMENTED; }
@@ -266,9 +266,9 @@ void DemuxReset(void) {}
void DemuxAbort(void) {}
void DemuxFlush(void) {}
DemuxPacket* DemuxRead(void) { return NULL; }
void FillBuffer(bool mode) {}
/* Various helper functions */
bool IsTimeshifting(void) { return false; }
bool CanPauseStream() { return false; }
bool CanSeekStream() { return false; }