Compatible with new version 2.1.2
#1
There is a new Version of VDR out ( 2.1.2 )
Due some changes, vnsiserver-4 Server Plugin did not Compile ( Your git from 3.10 )

In VDR-Portal Provided Patch did not work ( opdencamp version works )
=> http://www.vdr-portal.de/index.php?page=...ost1167961

Code:
diff --git a/vnsiclient.c b/vnsiclient.c
index 92bea63..f8ff710 100644
--- a/vnsiclient.c
+++ b/vnsiclient.c
@@ -1274,7 +1274,11 @@ bool cVNSIClient::processTIMER_Update() /* OPCODE 85 */
bool cVNSIClient::processRECORDINGS_GetDiskSpace() /* OPCODE 100 */
{
   int FreeMB;
+#if APIVERSNUM > 20101
+  int Percent = cVideoDirectory::VideoDiskSpace(&FreeMB);
+#else
   int Percent = VideoDiskSpace(&FreeMB);
+#endif
   int Total   = (FreeMB / (100 - Percent)) * 100;

   m_resp->add_U32(Total);


make throws
=> vnsiserver.c:216:47: error: VideoDirectory was not declared in this scope
Server OpenSuSE 12.3 - vdr-2.2.0 - 2xSatelco EasyWatch-C - streamdev-server git-19.02.15
Client OpenSuSE 12.3 - vdr-2.2.0 - SoftHDDevice git-19.02.15 - XBMC - Nvidia GT 610 / 331.79
Client Zbox ID84 OpenSuse 12.3 - vdr-2.2.0 - SoftHDDevice git-19.02.15 - Nvidia 331.79
Reply
#2
You say that opdenkamps repo works, I believe thats because fernet authored this PR: https://github.com/opdenkamp/xbmc-pvr-addons/pull/232

He hasn't pulled it back into his repo. Sure he will correct me if I'm wrong, so continue to use opdenkamps repo.

Not sure what you mean by 3.10? If your on frodo its not been backported

Try patching with the 3 patches from the above PR
Guide to building an all in one Ubuntu Server - TV(vdr),File,Music,Web

Server Fractal Designs Define XL, Asus P5QL/EPU, Dual Core E5200, 4gb, L4M-Twin S2 v6.2, Supermicro AOC-USAS-L8I, 1*SSD & 13*HDD drives (24TB total) - Ubuntu Server
XBMC 1 ASRock Z77E-ITX, G850, 8GB RAM, SSD, BD - Ubuntu / OpenElec frodo
XBMC 2 Revo 3700 - OpenElec frodo
XBMC 3 Raspb Pi
Reply
#3
>> Not sure what you mean by 3.10
Sorry, I ment pull from FernetMenta GIT Repo at 03. October 2013 ( I don't know git ID exactly )
Normaly, I Update xbmc with Monthly Cycle (This month I was a little late )

- git clone git://github.com/xbmc/xbmc.git "git-"$date_ext
- cd "git-"$date_ext
- git clone --branch vnsi4 git://github.com/FernetMenta/xbmc-pvr-addons.git pvr-addons

I will try next week with new monthly
Server OpenSuSE 12.3 - vdr-2.2.0 - 2xSatelco EasyWatch-C - streamdev-server git-19.02.15
Client OpenSuSE 12.3 - vdr-2.2.0 - SoftHDDevice git-19.02.15 - XBMC - Nvidia GT 610 / 331.79
Client Zbox ID84 OpenSuse 12.3 - vdr-2.2.0 - SoftHDDevice git-19.02.15 - Nvidia 331.79
Reply
#4
You should update from opedenkamp repo. My staging branches are not updated if i have nothing to submit. Other contributions like the build fix mentioned flow directly to opdenkamp repo.
Reply
#5
you have to compile the vnsi4-server-plugin for VDR using opdenkamps repo with the latest PR/commits as stated above. Its not a XBMC issues its the server addon that requires updating to work with the new VDR.
Guide to building an all in one Ubuntu Server - TV(vdr),File,Music,Web

Server Fractal Designs Define XL, Asus P5QL/EPU, Dual Core E5200, 4gb, L4M-Twin S2 v6.2, Supermicro AOC-USAS-L8I, 1*SSD & 13*HDD drives (24TB total) - Ubuntu Server
XBMC 1 ASRock Z77E-ITX, G850, 8GB RAM, SSD, BD - Ubuntu / OpenElec frodo
XBMC 2 Revo 3700 - OpenElec frodo
XBMC 3 Raspb Pi
Reply

Logout Mark Read Team Forum Stats Members Help
Compatible with new version 2.1.20