2015-04-17, 18:04
Been thinking a bit about this and I think probably it's fine to keep it as it is and make it helix only. The reason I was thinking in making it compatible with past versions of xbmc/kodi is because I originally developed this for an apple tv 2 and there won't be more dev to it. However the ATV2 can run helix and so, be compatible with this version. Better than adding multiple alternatives according to kodi version that will probably lead to bugs.
The idea of retroplayer is cool however it will only reach kodi probably in v.16
For the recording function you can use xbmc boolean conditions:
http://kodi.wiki/view/List_of_boolean_conditions
The use in python is:
Check will be True or False (booleans) accordingly.
Just added english and portuguese translations. English is the base, portuguese is a translation:
https://github.com/enen92/service.sleept...9c1d952463
If you want to translate it to german send a PR.
As for debugging purposes probably adding more options will over-complicate things, the code itself and adding more chances of failure. The addon is designed to work, debug shouldn't be too important But it's up to u.
I'll review the code now
The idea of retroplayer is cool however it will only reach kodi probably in v.16
For the recording function you can use xbmc boolean conditions:
http://kodi.wiki/view/List_of_boolean_conditions
Quote:Pvr.IsRecording Returns true when the system is recording a tv programme.
The use in python is:
Code:
check = xbmc.getCondVisibility('Pvr.IsRecording')
Check will be True or False (booleans) accordingly.
Just added english and portuguese translations. English is the base, portuguese is a translation:
https://github.com/enen92/service.sleept...9c1d952463
If you want to translate it to german send a PR.
As for debugging purposes probably adding more options will over-complicate things, the code itself and adding more chances of failure. The addon is designed to work, debug shouldn't be too important But it's up to u.
I'll review the code now