From fa72b89b3ab9f72f44b75e3f9d18aafac56e0153 Mon Sep 17 00:00:00 2001 From: Daniel Pavel Date: Sat, 8 Dec 2012 05:29:50 +0200 Subject: [PATCH] release 0.8.3 --- app/solaar.py | 2 +- app/ui/main_window.py | 1 + lib/logitech/unifying_receiver/descriptors.py | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/app/solaar.py b/app/solaar.py index e1f6a201..7c81cea4 100644 --- a/app/solaar.py +++ b/app/solaar.py @@ -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 " __version__ = VERSION __license__ = "GPL" diff --git a/app/ui/main_window.py b/app/ui/main_window.py index b1654c04..3836fa8a 100644 --- a/app/ui/main_window.py +++ b/app/ui/main_window.py @@ -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 diff --git a/lib/logitech/unifying_receiver/descriptors.py b/lib/logitech/unifying_receiver/descriptors.py index b68f1d7e..e4810d97 100644 --- a/lib/logitech/unifying_receiver/descriptors.py +++ b/lib/logitech/unifying_receiver/descriptors.py @@ -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