libsaria: disable plugins

With my recent changes, my old plugins are incompatible.  I'm going to
come up with a new system in a few releases, so I'm going to wait until
then.
This commit is contained in:
Bryan Schumaker 2011-04-26 07:57:06 -04:00
parent 34f2ffe227
commit 3bc5c05ab1
2 changed files with 6 additions and 7 deletions

View File

@ -24,7 +24,7 @@ from path.cache import Cache
prefs = None
cache = Cache()
plugin = None
#plugin = None
audio = None
lastfm = None
controls = None
@ -56,21 +56,21 @@ def init():
def startup():
global plugin
import plugin
# global plugin
# import plugin
event.start("PRESTART")
audio.init()
controls.init2()
plugin.load_all()
# plugin.load_all()
prefs.enable_save()
event.start("POSTSTART")
def shutdown():
event.start("PREQUIT")
import plugin
plugin.quit()
# import plugin
# plugin.quit()
event.start("POSTQUIT")

View File

@ -9,7 +9,6 @@ import gobject
import libsaria
__vers__ = "Ocarina %s" % libsaria.__vstr__
gtk.gdk.threads_init()
gobject.threads_init()
def uptime():