syntax corrections and version bump
This commit is contained in:
parent
dab2624c88
commit
ad4637f4cf
15 changed files with 1960 additions and 1950 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
*.pyo
|
||||
*.pyc
|
||||
.*
|
|
@ -1,6 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="plugin.makemkvbluray" name="BluRay Player with MakeMKV"
|
||||
version="1.1.0" provider-name="Magnetism">
|
||||
<addon
|
||||
id="plugin.makemkvbluray"
|
||||
name="BluRay Player with MakeMKV"
|
||||
version="1.1.1"
|
||||
provider-name="desolat">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.0" />
|
||||
</requires>
|
||||
|
@ -11,7 +14,7 @@
|
|||
</extension>
|
||||
<extension point="xbmc.addon.metadata">
|
||||
<summary>Play BluRays from XBMC with MakeMKV</summary>
|
||||
<description>Awesomeness </description>
|
||||
<description>Uses MakeMKV streaming ability to play BlueRay Discs</description>
|
||||
<platform>all</platform>
|
||||
</extension>
|
||||
</addon>
|
||||
|
|
5
resources/lib/__init__.py
Normal file
5
resources/lib/__init__.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
'''
|
||||
Created on 06.10.2012
|
||||
|
||||
@author: desolat
|
||||
'''
|
|
@ -107,7 +107,7 @@ class MakeMkvInteraction:
|
|||
self.log.info("MakeMkvCon found!")
|
||||
return True
|
||||
else:
|
||||
self.log.info('MakeMkvcon seems not to be configured properly : %s' %(self.settings.mkvLocation))
|
||||
self.log.info('MakeMkvcon seems not to be configured properly : %s'
|
||||
% (self.settings.mkvLocation))
|
||||
return False
|
||||
|
||||
|
|
@ -20,6 +20,7 @@ _log = brlog.BrLog('tracker service')
|
|||
|
||||
_log.info('Starting the BluRay tracker service')
|
||||
|
||||
|
||||
class MyPlayer(xbmc.Player):
|
||||
def __init__(self):
|
||||
xbmc.Player.__init__(self)
|
||||
|
|
Loading…
Reference in a new issue