mirror of
https://github.com/DigitalDevices/pvr.octonet.git
synced 2025-03-01 10:53:09 +00:00
Compare commits
6 Commits
0.7.0-Leia
...
1.0.0-2-Ma
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
63ef363522 | ||
|
|
c91061f84b | ||
|
|
414e756912 | ||
|
|
9de3166203 | ||
|
|
df1b033f14 | ||
|
|
0295717be2 |
@@ -36,7 +36,7 @@ before_install:
|
|||||||
#
|
#
|
||||||
before_script:
|
before_script:
|
||||||
- cd $TRAVIS_BUILD_DIR/..
|
- 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
|
- 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
|
- 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
|
- cd $TRAVIS_BUILD_DIR && mkdir build && cd build
|
||||||
|
|||||||
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@@ -1 +1 @@
|
|||||||
buildPlugin()
|
buildPlugin(version: "Matrix")
|
||||||
|
|||||||
@@ -20,12 +20,9 @@ $ git clone https://github.com/DigitalDevices/pvr.octonet.git
|
|||||||
Clone the Kodi repository:
|
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
|
$ cd pvr.octonet
|
||||||
$ mkdir build
|
$ mkdir build
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ artifacts:
|
|||||||
build_script:
|
build_script:
|
||||||
- cd ..
|
- cd ..
|
||||||
- set ROOT=%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
|
- 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
|
- echo pvr.octonet https://github.com/DigitalDevices/pvr.octonet master > xbmc\cmake\addons\addons\pvr.octonet\pvr.octonet.txt
|
||||||
- cd %ADDON%
|
- cd %ADDON%
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<addon
|
<addon
|
||||||
id="pvr.octonet"
|
id="pvr.octonet"
|
||||||
version="0.7.0"
|
version="1.0.0"
|
||||||
name="Digital Devices Octopus NET Client"
|
name="Digital Devices Octopus NET Client"
|
||||||
provider-name="digitaldevices">
|
provider-name="digitaldevices">
|
||||||
<requires>@ADDON_DEPENDS@</requires>
|
<requires>@ADDON_DEPENDS@</requires>
|
||||||
|
|||||||
@@ -228,12 +228,12 @@ PVR_ERROR OctonetData::getChannels(ADDON_HANDLE handle, bool bRadio)
|
|||||||
return PVR_ERROR_NO_ERROR;
|
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++)
|
for (unsigned int i = 0; i < channels.size(); i++)
|
||||||
{
|
{
|
||||||
OctonetChannel &chan = channels.at(i);
|
OctonetChannel &chan = channels.at(i);
|
||||||
if (channel.iUniqueId != chan.id)
|
if (iChannelUid != chan.id)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if(chan.epg.empty()) {
|
if(chan.epg.empty()) {
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ class OctonetData : public P8PLATFORM::CThread
|
|||||||
virtual PVR_ERROR getGroups(ADDON_HANDLE handle, bool bRadio);
|
virtual PVR_ERROR getGroups(ADDON_HANDLE handle, bool bRadio);
|
||||||
virtual PVR_ERROR getGroupMembers(ADDON_HANDLE handle, const PVR_CHANNEL_GROUP &group);
|
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& getUrl(int id) const;
|
||||||
const std::string& getName(int id) const;
|
const std::string& getName(int id) const;
|
||||||
|
|
||||||
|
|||||||
@@ -156,9 +156,9 @@ void OnPowerSavingActivated() {}
|
|||||||
void OnPowerSavingDeactivated() {}
|
void OnPowerSavingDeactivated() {}
|
||||||
|
|
||||||
/* EPG */
|
/* 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; }
|
PVR_ERROR IsEPGTagRecordable(const EPG_TAG*, bool*) { return PVR_ERROR_NOT_IMPLEMENTED; }
|
||||||
@@ -266,9 +266,9 @@ void DemuxReset(void) {}
|
|||||||
void DemuxAbort(void) {}
|
void DemuxAbort(void) {}
|
||||||
void DemuxFlush(void) {}
|
void DemuxFlush(void) {}
|
||||||
DemuxPacket* DemuxRead(void) { return NULL; }
|
DemuxPacket* DemuxRead(void) { return NULL; }
|
||||||
|
void FillBuffer(bool mode) {}
|
||||||
|
|
||||||
/* Various helper functions */
|
/* Various helper functions */
|
||||||
bool IsTimeshifting(void) { return false; }
|
|
||||||
bool CanPauseStream() { return false; }
|
bool CanPauseStream() { return false; }
|
||||||
bool CanSeekStream() { return false; }
|
bool CanSeekStream() { return false; }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user