release 0.8.3
This commit is contained in:
parent
fd3c88cb67
commit
fa72b89b3a
|
@ -3,7 +3,7 @@
|
||||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||||
|
|
||||||
NAME = 'Solaar'
|
NAME = 'Solaar'
|
||||||
VERSION = '0.8.2'
|
VERSION = '0.8.3'
|
||||||
__author__ = "Daniel Pavel <daniel.pavel@gmail.com>"
|
__author__ = "Daniel Pavel <daniel.pavel@gmail.com>"
|
||||||
__version__ = VERSION
|
__version__ = VERSION
|
||||||
__license__ = "GPL"
|
__license__ = "GPL"
|
||||||
|
|
|
@ -226,6 +226,7 @@ def _make_device_box(index):
|
||||||
unpair = Gtk.Button('Unpair')
|
unpair = Gtk.Button('Unpair')
|
||||||
unpair.set_image(Gtk.Image.new_from_icon_name('edit-delete', Gtk.IconSize.BUTTON))
|
unpair.set_image(Gtk.Image.new_from_icon_name('edit-delete', Gtk.IconSize.BUTTON))
|
||||||
unpair.connect('clicked', ui.action._unpair_device, frame)
|
unpair.connect('clicked', ui.action._unpair_device, frame)
|
||||||
|
unpair.set_relief(Gtk.ReliefStyle.NONE)
|
||||||
unpair.set_property('margin-left', 106)
|
unpair.set_property('margin-left', 106)
|
||||||
unpair.set_property('margin-right', 106)
|
unpair.set_property('margin-right', 106)
|
||||||
unpair.set_property('can-focus', False) # exclude from tab-navigation
|
unpair.set_property('can-focus', False) # exclude from tab-navigation
|
||||||
|
|
|
@ -55,8 +55,11 @@ _D('Wireless Illuminated Keyboard K800')
|
||||||
_D('Zone Touch Mouse T400')
|
_D('Zone Touch Mouse T400')
|
||||||
_D('Wireless Rechargeable Touchpad T650')
|
_D('Wireless Rechargeable Touchpad T650')
|
||||||
_D('Logitech Cube', kind='mouse')
|
_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',
|
_D('Performance Mouse MX', codename='Performance MX',
|
||||||
|
registers=_NamedInts(battery=0x0D),
|
||||||
settings=[
|
settings=[
|
||||||
hidpp10.MouseDPI_Setting(0x63, _NamedInts(**dict((str(x * 100), 0x80 + x) for x in range(1, 16)))),
|
hidpp10.MouseDPI_Setting(0x63, _NamedInts(**dict((str(x * 100), 0x80 + x) for x in range(1, 16)))),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue