Merge commit 'c6ac748427f8b883f81ff2f11463d47783e60fd1'

This commit is contained in:
MikeBuzz 2012-02-09 15:00:24 +00:00
parent c364aae577
commit fc4884fa9d
6 changed files with 12 additions and 24 deletions

View File

@ -1,3 +1,6 @@
2.0.3
- fix so python dont steal xbmc's webserver port
2.0.2
- rebuild with latest changes

View File

@ -20,7 +20,7 @@
PKG_NAME="xbmc-ps3d"
PKG_VERSION="2.0"
PKG_REV="2"
PKG_REV="3"
PKG_ARCH="any"
PKG_LICENSE="OSS"
PKG_SITE="http://www.xbmc.org"

View File

@ -18,15 +18,6 @@
# http://www.gnu.org/copyleft/gpl.html
################################################################################
import os
import sys
import xbmcaddon
import xbmc, time, os, subprocess
__scriptname__ = "PS3 Remote/Controller driver"
__author__ = "OpenELEC"
__url__ = "http://www.openelec.tv"
__settings__ = xbmcaddon.Addon(id='driver.remote.xbmc-ps3d')
__cwd__ = __settings__.getAddonInfo('path')
__path__ = xbmc.translatePath( os.path.join( __cwd__, 'bin', "ps3d.service") )
os.system(__path__)
subprocess.Popen("ps3d.service", shell=True, close_fds=True)

View File

@ -1,3 +1,6 @@
2.0.1
- fix so python dont steal xbmc's webserver port
2.0.0
- prepare for OpenELEC-2.0 release
- update to SABnzbd-0.6.14

View File

@ -20,7 +20,7 @@
PKG_NAME="SABnzbd-Suite"
PKG_VERSION="2.0"
PKG_REV="0"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="OSS"
PKG_SITE="http://www.openelec.tv"

View File

@ -18,15 +18,6 @@
# http://www.gnu.org/copyleft/gpl.html
################################################################################
import os
import sys
import xbmcaddon
import xbmc, time, os, subprocess
__scriptname__ = "SABnzbd Suite"
__author__ = "OpenELEC"
__url__ = "http://www.openelec.tv"
__settings__ = xbmcaddon.Addon(id='service.downloadmanager.SABnzbd-Suite')
__cwd__ = __settings__.getAddonInfo('path')
__path__ = xbmc.translatePath( os.path.join( __cwd__, 'bin', "SABnzbd-Suite.service") )
os.system(__path__)
subprocess.Popen("SABnzbd-Suite.service", shell=True, close_fds=True)