Kodi Community Forum

Full Version: Compile new IPTV Simple Client with New Properties
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
@afedchin

Please try the compile SimpleIPTV for latest nightlies.
with this I can compile for windows....
http://forum.kodi.tv/showthread.php?tid=...pid1960105

There are currently new properties and fixes going on in the add-ons and pvr area.
API version 1.9.6
I try to create addon I have all new properties in Kodi but I have error my epg10.db have no data in sql.
PVR Working for me but something I made have wrong code (think is include folder)

Image

Image
@Angelinas
There was a bug in the Kodi and epg database. Current nightly already include the fix. Also I've already prepared new version of addon and it will be included in nightlies builds soon.
Tnx For Quick answer Smile

OK,one propose for changes in PVR,I use your PVR for long time.
But in all version that I use only windows version have pictures EPG like picture no.2 (i change like we write in http://forum.kodi.tv/showthread.php?tid=...pid1645311 )

scarecrow420 try to change in KODI ,but his change only show IconPath in dialogEPGInfo window.
http://forum.kodi.tv/showthread.php?tid=...pid1861139
This can be used for dynamic lists

Please change this PlotOutline ,because none of epg.xml dont have this info.Just fill up with copy of IconPath and we can see all of EPG Images in every window.
Code:
entry.strPlotOutline  = strIconPath;

With changes we have this.in home window Smile

Image

***********************************************************************************************************
I see that you working with github...
but why this not not supported....Huh
Everything can find in EPG.xml
strOriginalTitle - sub-title
strCast - actor
strWriter - writer
strIMDBNumber - showid
iYear - date
strEpisodeName - episode-num
iStarRating - star-rating

Code:
tag.strPlot = myTag->strPlot.c_str();
tag.strOriginalTitle = NULL; /* not supported */
tag.strCast = NULL; /* not supported */
tag.strDirector = NULL; /* not supported */
tag.strWriter = NULL; /* not supported */
tag.iYear = 0; /* not supported */
tag.strIMDBNumber = NULL; /* not supported */
tag.strIconPath = myTag->strIconPath.c_str();
if (!FindEpgGenre(myTag->strGenreString, tag.iGenreType, tag.iGenreSubType))
{
tag.iGenreType = EPG_GENRE_USE_STRING;
tag.iGenreSubType = 0; /* not supported */
tag.strGenreDescription = myTag->strGenreString.c_str();
}
tag.iParentalRating = 0; /* not supported */
tag.iStarRating = 0; /* not supported */
tag.bNotify = false; /* not supported */
tag.iSeriesNumber = 0; /* not supported */
tag.iEpisodeNumber = 0; /* not supported */
tag.iEpisodePartNumber = 0; /* not supported */
tag.strEpisodeName = NULL; /* not supported */
(2015-03-20, 22:59)afedchin Wrote: [ -> ]@Angelinas
There was a bug in the Kodi and epg database. Current nightly already include the fix. Also I've already prepared new version of addon and it will be included in nightlies builds soon.

Why iptvsimple no longer works in kodi 15 for linux?
@afedchin
Please see this version of my changes in github
https://github.com/kodi-pvr/pvr.iptvsimp...s1-patch-0

For all str. I am shure that will work,but with int.Year......
when you got time, fiks this and include in your original version.
Kodi will show all of new properties.
If my code are ok I send you pull request Smile