Skip to content

Commit 3e366ef

Browse files
committed
Move NAD mixer to an external extension
1 parent f2b42c5 commit 3e366ef

6 files changed

Lines changed: 20 additions & 301 deletions

File tree

docs/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ and improved.
4747
as extensions, but they are still distributed together with Mopidy and are
4848
enabled by default.
4949

50+
- The NAD mixer have been moved out of Mopidy core to its own project,
51+
Mopidy-NAD. See :ref:`ext` for more information.
52+
5053
**Command line options**
5154

5255
- The command option :option:`mopidy --list-settings` is now named

docs/ext/index.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,21 @@ These extensions are maintained outside Mopidy's core, often by other
3030
developers.
3131

3232

33+
Mopidy-NAD
34+
----------
35+
36+
Extension for controlling volume using an external NAD amplifier.
37+
38+
Author:
39+
Stein Magnus Jodal
40+
PyPI:
41+
`Mopidy-NAD <https://pypi.python.org/pypi/Mopidy-NAD>`_
42+
GitHub:
43+
`mopidy/mopidy-nad <https://github.com/mopidy/mopidy-nad>`_
44+
Issues:
45+
`mopidy/mopidy <https://github.com/mopidy/mopidy/issues>`_
46+
47+
3348
Mopidy-SoundCloud
3449
-----------------
3550

@@ -42,3 +57,5 @@ PyPI:
4257
`Mopidy-SoundCloud <https://pypi.python.org/pypi/Mopidy-SoundCloud>`_
4358
GitHub:
4459
`dz0ny/mopidy-soundcloud <https://github.com/dz0ny/mopidy-soundcloud>`_
60+
Issues:
61+
`dz0ny/mopidy-soundcloud <https://github.com/dz0ny/mopidy-soundcloud/issues>`_

docs/modules/audio/mixers/nad.rst

Lines changed: 0 additions & 6 deletions
This file was deleted.

mopidy/audio/mixers/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
from .auto import AutoAudioMixer
99
from .fake import FakeMixer
10-
from .nad import NadMixer
1110

1211

1312
def register_mixer(mixer_class):
@@ -19,4 +18,3 @@ def register_mixer(mixer_class):
1918
def register_mixers():
2019
register_mixer(AutoAudioMixer)
2120
register_mixer(FakeMixer)
22-
register_mixer(NadMixer)

mopidy/audio/mixers/nad.py

Lines changed: 0 additions & 292 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ def get_version(filename):
3131
'spotify': ['pyspotify >= 1.9, < 1.11'],
3232
'scrobbler': ['pylast >= 0.5.7'],
3333
'http': ['cherrypy >= 3.2.2', 'ws4py >= 0.2.3'],
34-
'external_mixers': ['pyserial'],
3534
},
3635
test_suite='nose.collector',
3736
tests_require=[

0 commit comments

Comments
 (0)