release 0.8.3

This commit is contained in:
Daniel Pavel 2012-12-08 05:29:50 +02:00
parent fd3c88cb67
commit fa72b89b3a
3 changed files with 8 additions and 4 deletions

View File

@ -3,7 +3,7 @@
from __future__ import absolute_import, division, print_function, unicode_literals
NAME = 'Solaar'
VERSION = '0.8.2'
VERSION = '0.8.3'
__author__ = "Daniel Pavel <daniel.pavel@gmail.com>"
__version__ = VERSION
__license__ = "GPL"

View File

@ -226,6 +226,7 @@ def _make_device_box(index):
unpair = Gtk.Button('Unpair')
unpair.set_image(Gtk.Image.new_from_icon_name('edit-delete', Gtk.IconSize.BUTTON))
unpair.connect('clicked', ui.action._unpair_device, frame)
unpair.set_relief(Gtk.ReliefStyle.NONE)
unpair.set_property('margin-left', 106)
unpair.set_property('margin-right', 106)
unpair.set_property('can-focus', False) # exclude from tab-navigation

View File

@ -45,7 +45,7 @@ _D('Touch Mouse M600')
_D('Marathon Mouse M705',
registers=_NamedInts(battery=0x0D),
settings=[hidpp10.SmoothScroll_Setting(0x01)],
)
)
_D('Wireless Keyboard K270')
_D('Wireless Keyboard K350')
_D('Wireless Keyboard K360')
@ -55,11 +55,14 @@ _D('Wireless Illuminated Keyboard K800')
_D('Zone Touch Mouse T400')
_D('Wireless Rechargeable Touchpad T650')
_D('Logitech Cube', kind='mouse')
_D('Anywhere Mouse MX', codename='Anywhere MX')
_D('Anywhere Mouse MX', codename='Anywhere MX',
registers=_NamedInts(battery=0x0D),
)
_D('Performance Mouse MX', codename='Performance MX',
registers=_NamedInts(battery=0x0D),
settings=[
hidpp10.MouseDPI_Setting(0x63, _NamedInts(**dict((str(x * 100), 0x80 + x) for x in range(1, 16)))),
],
)
)
del namedtuple