Skip to content

Commit

Permalink
Release v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jodal committed Apr 30, 2015
2 parents 8b6d289 + 2f96dac commit da9b0a1
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
15 changes: 13 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ Changelog
This changelog is used to track all major changes to Mopidy.


v1.0.4 (2015-04-30)
===================

Bug fix release.

- Audio: Since all previous attempts at tweaking the queuing for :issue:`1097`
seems to break things in subtle ways for different users. We are giving up
on tweaking the defaults and just going to live with a bit more lag on
software volume changes. (Fixes: :issue:`1147`)


v1.0.3 (2015-04-28)
===================

Expand All @@ -16,7 +27,7 @@ Bug fix release.

- Audio: Follow-up fix for :issue:`1097` still exhibits issues for certain
setups. We are giving this get an other go by setting the buffer size to
maximum 100ms instead of a fixed number of buffers. (Fixes: :issue:`1147`,
maximum 100ms instead of a fixed number of buffers. (Addresses: :issue:`1147`,
PR: :issue:`1154`)


Expand All @@ -30,7 +41,7 @@ Bug fix release.

- Audio: Fix for :issue:`1097` tuned down the buffer size in the queue. Turns
out this can cause distortions in certain cases. Give this an other go with
a more generous buffer size. (Fixes: :issue:`1147`, PR: :issue:`1152`)
a more generous buffer size. (Addresses: :issue:`1147`, PR: :issue:`1152`)

- Audio: Make sure mute events get emitted by software mixer.
(Fixes: :issue:`1146`, PR: :issue:`1152`)
Expand Down
2 changes: 1 addition & 1 deletion mopidy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
warnings.filterwarnings('ignore', 'could not open display')


__version__ = '1.0.3'
__version__ = '1.0.4'
4 changes: 0 additions & 4 deletions mopidy/audio/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,7 @@ def add_output(self, description):
logger.info('Audio output set to "%s"', description)

def _add(self, element):
# All tee branches need a queue in front of them.
# But keep the queue short so the volume change isn't to slow:
queue = gst.element_factory_make('queue')
queue.set_property('max-size-time', 100 * gst.MSECOND)

self.add(element)
self.add(queue)
queue.link(element)
Expand Down
5 changes: 3 additions & 2 deletions tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,6 @@ def test_versions_can_be_strictly_ordered(self):
self.assertVersionLess('0.19.5', '1.0.0')
self.assertVersionLess('1.0.0', '1.0.1')
self.assertVersionLess('1.0.1', '1.0.2')
self.assertVersionLess('1.0.2', __version__)
self.assertVersionLess(__version__, '1.0.4')
self.assertVersionLess('1.0.2', '1.0.3')
self.assertVersionLess('1.0.3', __version__)
self.assertVersionLess(__version__, '1.0.5')

0 comments on commit da9b0a1

Please sign in to comment.