Merge branch 'v1.0.x' into develop
Conflicts: docs/changelog.rst
This commit is contained in:
commit
b14aee3e04
@ -51,20 +51,20 @@ Internal changes
|
|||||||
:issue:`1115`)
|
:issue:`1115`)
|
||||||
|
|
||||||
|
|
||||||
v1.0.2 (UNRELEASED)
|
v1.0.2 (2015-04-27)
|
||||||
===================
|
===================
|
||||||
|
|
||||||
Bug fix release.
|
Bug fix release.
|
||||||
|
|
||||||
- HTTP: Make event broadcasts work with Tornado 2.3, the previous threading fix
|
- HTTP: Make event broadcasts work with Tornado 2.3 again. The threading fix
|
||||||
broke this.
|
in v1.0.1 broke this.
|
||||||
|
|
||||||
- Audio: Fix for :issue:`1097` tuned down the buffer size in the queue. Turns
|
- 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
|
out this can cause distortions in certain cases. Give this an other go with
|
||||||
a more generous buffer size. (Fixes: :issue:`1147`)
|
a more generous buffer size. (Fixes: :issue:`1147`, PR: :issue:`1152`)
|
||||||
|
|
||||||
- Audio: Make sure mute events get emitted by software mixer.
|
- Audio: Make sure mute events get emitted by software mixer.
|
||||||
(Fixes: :issue:`1146`)
|
(Fixes: :issue:`1146`, PR: :issue:`1152`)
|
||||||
|
|
||||||
|
|
||||||
v1.0.1 (2015-04-23)
|
v1.0.1 (2015-04-23)
|
||||||
|
|||||||
@ -18,12 +18,12 @@ from scratch, we have a guide for installing Debian/Raspbian and Mopidy. See
|
|||||||
|
|
||||||
The packages should work with:
|
The packages should work with:
|
||||||
|
|
||||||
- Debian stable and testing,
|
- Debian stable ("jessie") and testing ("stretch"),
|
||||||
- Raspbian stable and testing,
|
- Raspbian stable ("jessie") and testing ("stretch"),
|
||||||
- Ubuntu 14.04 LTS and later.
|
- Ubuntu 14.04 LTS and later.
|
||||||
|
|
||||||
Some of the packages, including the core "mopidy" packages, does *not* work
|
Some of the packages *does not* work with Ubuntu 12.04 LTS or Debian 7
|
||||||
on Ubuntu 12.04 LTS.
|
"wheezy".
|
||||||
|
|
||||||
This is just what we currently support, not a promise to continue to
|
This is just what we currently support, not a promise to continue to
|
||||||
support the same in the future. We *will* drop support for older
|
support the same in the future. We *will* drop support for older
|
||||||
@ -47,6 +47,13 @@ from scratch, we have a guide for installing Debian/Raspbian and Mopidy. See
|
|||||||
|
|
||||||
sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/mopidy.list
|
sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/mopidy.list
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
If you're still running Debian 7 "wheezy" or Raspbian "wheezy", you
|
||||||
|
should edit :file:`/etc/apt/sources.list.d/mopidy.list` and replace
|
||||||
|
"stable" with "wheezy". This will give you the latest set of packages
|
||||||
|
that is compatible with Debian "wheezy".
|
||||||
|
|
||||||
#. Install Mopidy and all dependencies::
|
#. Install Mopidy and all dependencies::
|
||||||
|
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
|||||||
@ -14,4 +14,4 @@ if not (2, 7) <= sys.version_info < (3,):
|
|||||||
warnings.filterwarnings('ignore', 'could not open display')
|
warnings.filterwarnings('ignore', 'could not open display')
|
||||||
|
|
||||||
|
|
||||||
__version__ = '1.0.1'
|
__version__ = '1.0.2'
|
||||||
|
|||||||
@ -57,5 +57,6 @@ class VersionTest(unittest.TestCase):
|
|||||||
self.assertVersionLess('0.19.3', '0.19.4')
|
self.assertVersionLess('0.19.3', '0.19.4')
|
||||||
self.assertVersionLess('0.19.4', '0.19.5')
|
self.assertVersionLess('0.19.4', '0.19.5')
|
||||||
self.assertVersionLess('0.19.5', '1.0.0')
|
self.assertVersionLess('0.19.5', '1.0.0')
|
||||||
self.assertVersionLess('1.0.0', __version__)
|
self.assertVersionLess('1.0.0', '1.0.1')
|
||||||
self.assertVersionLess(__version__, '1.0.2')
|
self.assertVersionLess('1.0.1', __version__)
|
||||||
|
self.assertVersionLess(__version__, '1.0.3')
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user