diff --git a/docs/changelog.rst b/docs/changelog.rst index 1a281c16..84f9d202 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -101,6 +101,11 @@ Still in development. :confval:`http/zeroconf` config value to change the service name or disable the service. (Fixes: :issue:`39`) +**DBUS/MPRIS** + +- The ``mopidy`` process now registers it's GObject event loop as the default + eventloop for dbus-python. (Fixes: :mpris:`2`) + v0.16.1 (2013-11-02) ==================== diff --git a/docs/conf.py b/docs/conf.py index eb23daf5..25e0b145 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -153,4 +153,8 @@ man_pages = [ # -- Options for extlink extension -------------------------------------------- -extlinks = {'issue': ('https://github.com/mopidy/mopidy/issues/%s', '#')} +extlinks = { + 'issue': ('https://github.com/mopidy/mopidy/issues/%s', '#'), + 'mpris': ( + 'https://github.com/mopidy/mopidy-mpris/issues/%s', 'mopidy-mpris#'), +}