Merge pull request #273 from gpodder/freedesktop-detection

Disable MPRIS listener extension in Windows and macOS
This commit is contained in:
Eric Le Lay 2017-04-23 14:11:17 +02:00 committed by GitHub
commit 0b4a6de4f1
2 changed files with 3 additions and 0 deletions

View File

@ -35,6 +35,7 @@ __description__ = _('Convert MPRIS notifications to gPodder Media Player D-Bus A
__authors__ = 'Dov Feldstern <dovdevel@gmail.com>'
__doc__ = 'http://wiki.gpodder.org/wiki/Extensions/MprisListener'
__category__ = 'desktop-integration'
__only_for__ = 'freedesktop'
USECS_IN_SEC = 1000000

View File

@ -104,6 +104,8 @@ dbus_session_bus = None
ui.win32 = (platform.system() == 'Windows')
# Set "osx" to True if we are on Mac OS X
ui.osx = (platform.system() == 'Darwin')
# We assume it's a freedesktop.org system if it's not Windows or OS X
ui.freedesktop = not ui.win32 and not ui.osx
# i18n setup (will result in "gettext" to be available)
# Use _ = gpodder.gettext in modules to enable string translations