next version will be 0.8.8
This commit is contained in:
parent
e94d4b28b0
commit
74ca91d611
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
0.8.8:
|
||||||
|
|
||||||
|
* Improved support for some devices: M510, K800, Performance MX.
|
||||||
|
* Improved battery support for some HID++ 1.0 devices.
|
||||||
|
* Properly handle device loss on computer sleep/wake.
|
||||||
|
* Better handling of receiver adding and removal at runtime.
|
||||||
|
* Removed a few more unhelpful notifications.
|
||||||
|
* Incipient support for multiple connected receivers.
|
||||||
|
* More Python 3 fixes.
|
||||||
|
|
||||||
0.8.7:
|
0.8.7:
|
||||||
|
|
||||||
* Don't show the "device disconnected" notification, it can be annoying and
|
* Don't show the "device disconnected" notification, it can be annoying and
|
||||||
|
|
|
@ -4,5 +4,5 @@
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||||
|
|
||||||
__version__ = '0.8.7.1'
|
__version__ = '0.8.8'
|
||||||
NAME = 'Solaar'
|
NAME = 'Solaar'
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# $Id$
|
# $Id$
|
||||||
# Maintainer: Patrick Hüther <patrick dot huether at gmail dot com>
|
# Maintainer: Patrick Hüther <patrick dot huether at gmail dot com>
|
||||||
pkgname=solaar
|
pkgname=solaar
|
||||||
pkgver=0.8.7.1
|
pkgver=0.8.8
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Linux devices manager for the Logitech Unifying Receiver"
|
pkgdesc="Linux devices manager for the Logitech Unifying Receiver"
|
||||||
arch=("any")
|
arch=("any")
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
solaar (0.8.7.1-1) UNRELEASED; urgency=low
|
solaar (0.8.8-1) UNRELEASED; urgency=low
|
||||||
|
|
||||||
* Debian packaging scripts, supports ubuntu ppa as well.
|
* Debian packaging scripts, supports ubuntu ppa as well.
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ from distutils.core import setup
|
||||||
|
|
||||||
|
|
||||||
setup(name='solaar',
|
setup(name='solaar',
|
||||||
version='0.8.7.1',
|
version='0.8.8',
|
||||||
description='Linux devices manager for the Logitech Unifying Receiver.',
|
description='Linux devices manager for the Logitech Unifying Receiver.',
|
||||||
long_description='''
|
long_description='''
|
||||||
Solaar is a Linux device manager for Logitech's Unifying Receiver peripherals.
|
Solaar is a Linux device manager for Logitech's Unifying Receiver peripherals.
|
||||||
|
|
Loading…
Reference in New Issue