Merge branch 'master' into develop
Conflicts: docs/changes.rst mopidy/audio/utils.py mopidy/backends/stream/actor.py tests/backends/base/events.py
This commit is contained in:
commit
71e25e751d
@ -5,23 +5,13 @@ Changes
|
|||||||
This change log is used to track all major changes to Mopidy.
|
This change log is used to track all major changes to Mopidy.
|
||||||
|
|
||||||
|
|
||||||
v0.12.0 (in development)
|
v0.13.0 (in development)
|
||||||
========================
|
========================
|
||||||
|
|
||||||
(in development)
|
(in development)
|
||||||
|
|
||||||
- Make Mopidy work on early Python 2.6 versions. (Fixes: :issue:`302`)
|
|
||||||
|
|
||||||
- ``optparse`` fails if the first argument to ``add_option`` is a unicode
|
|
||||||
string on Python < 2.6.2rc1.
|
|
||||||
|
|
||||||
- ``foo(**data)`` fails if the keys in ``data`` is unicode strings on Python
|
|
||||||
< 2.6.5rc1.
|
|
||||||
|
|
||||||
**Audio sub-system**
|
**Audio sub-system**
|
||||||
|
|
||||||
- Improve selection of mixer tracks for volume control. (Fixes: :issue:`307`)
|
|
||||||
|
|
||||||
- EOT (end of track) and EOS (end of stream) handling has finally been fixed.
|
- EOT (end of track) and EOS (end of stream) handling has finally been fixed.
|
||||||
Problem with the old code was that we simply used EOS for everything, and let
|
Problem with the old code was that we simply used EOS for everything, and let
|
||||||
the EOS propagate for the end of each track. What this means is basically that
|
the EOS propagate for the end of each track. What this means is basically that
|
||||||
@ -46,6 +36,29 @@ v0.12.0 (in development)
|
|||||||
|
|
||||||
- Let GStreamer handle time position tracking and seeks. (Fixes: :issue:`191`)
|
- Let GStreamer handle time position tracking and seeks. (Fixes: :issue:`191`)
|
||||||
|
|
||||||
|
|
||||||
|
v0.12.0 (2013-03-12)
|
||||||
|
====================
|
||||||
|
|
||||||
|
The 0.12 release has been delayed for a while because of some issues related
|
||||||
|
some ongoing GStreamer cleanup we didn't invest enough time to finish. Finally,
|
||||||
|
we've come to our senses and have now cherry-picked the good parts to bring you
|
||||||
|
a new release, while postponing the GStreamer changes to 0.13. The release adds
|
||||||
|
a new backend for playing audio streams, as well as various minor improvements
|
||||||
|
throughout Mopidy.
|
||||||
|
|
||||||
|
- Make Mopidy work on early Python 2.6 versions. (Fixes: :issue:`302`)
|
||||||
|
|
||||||
|
- ``optparse`` fails if the first argument to ``add_option`` is a unicode
|
||||||
|
string on Python < 2.6.2rc1.
|
||||||
|
|
||||||
|
- ``foo(**data)`` fails if the keys in ``data`` is unicode strings on Python
|
||||||
|
< 2.6.5rc1.
|
||||||
|
|
||||||
|
**Audio sub-system**
|
||||||
|
|
||||||
|
- Improve selection of mixer tracks for volume control. (Fixes: :issue:`307`)
|
||||||
|
|
||||||
**Local backend**
|
**Local backend**
|
||||||
|
|
||||||
- Make ``mopidy-scan`` support symlinks.
|
- Make ``mopidy-scan`` support symlinks.
|
||||||
|
|||||||
@ -23,7 +23,7 @@ if (isinstance(pykka.__version__, basestring)
|
|||||||
warnings.filterwarnings('ignore', 'could not open display')
|
warnings.filterwarnings('ignore', 'could not open display')
|
||||||
|
|
||||||
|
|
||||||
__version__ = '0.11.1'
|
__version__ = '0.12.0'
|
||||||
|
|
||||||
|
|
||||||
from mopidy import settings as default_settings_module
|
from mopidy import settings as default_settings_module
|
||||||
|
|||||||
@ -34,5 +34,6 @@ class VersionTest(unittest.TestCase):
|
|||||||
self.assertLess(SV('0.8.1'), SV('0.9.0'))
|
self.assertLess(SV('0.8.1'), SV('0.9.0'))
|
||||||
self.assertLess(SV('0.9.0'), SV('0.10.0'))
|
self.assertLess(SV('0.9.0'), SV('0.10.0'))
|
||||||
self.assertLess(SV('0.10.0'), SV('0.11.0'))
|
self.assertLess(SV('0.10.0'), SV('0.11.0'))
|
||||||
self.assertLess(SV('0.11.0'), SV(__version__))
|
self.assertLess(SV('0.11.0'), SV('0.11.1'))
|
||||||
self.assertLess(SV(__version__), SV('0.11.2'))
|
self.assertLess(SV('0.11.1'), SV(__version__))
|
||||||
|
self.assertLess(SV(__version__), SV('0.12.1'))
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user