release 1.0.7rc1
This commit is contained in:
parent
5488593caa
commit
6d56dd538e
22
ChangeLog
22
ChangeLog
|
@ -1,3 +1,25 @@
|
|||
1.0.7:
|
||||
* Don't signal status change when battery changes from None to None.
|
||||
* Add Japanese translation
|
||||
* Use first word of name for code name if no other code name available.
|
||||
* Better determination of when to add SW ID.
|
||||
* Check for more HID++ feature request failing.
|
||||
* Fix bug with new_fn_inversion setting.
|
||||
* Use correct device number for directly connected devices
|
||||
* Add debug message when candidate device found
|
||||
* Update Polish, Taiwanese, and Brazilian Portugese translations
|
||||
* Add MouseProcess a rule condition like Process but for the window under the mouse
|
||||
* Add parameters for binary settings to support prefixes
|
||||
* Add locks to serialize requests to devices
|
||||
* Fix bug when reprog key requests returns None
|
||||
* Fix bug for empty process name and class
|
||||
* Rules can now trigger on both pressing and releasing a diverted key
|
||||
* Upgrade mouse gestures to allow sequences of movements
|
||||
* Fix gkeys diversion faked read
|
||||
* Add suppor for Logitech g pro x superlight receiver
|
||||
* Convert HID++ 2.0 device kinds to enhanced HID++ 1.0 device kinds
|
||||
* Update about window, bug report templates, and supported kernels.
|
||||
|
||||
1.0.6:
|
||||
* Update sliding DPI to look for suitable keys
|
||||
* Add mouse gestures that can trigger rules
|
||||
|
|
|
@ -1,6 +1,15 @@
|
|||
Notes on Major Changes in Releases
|
||||
|
||||
|
||||
Version 1.0.7:
|
||||
|
||||
Solaar rules can now trigger on both pressing and releasing a diverted key.
|
||||
|
||||
The new rule condition MouseProcess is like the Process condition except for the process of the window under the mouse.
|
||||
|
||||
Mouse gestures have been upgraded. A mouse gesture is now a sequence of movements separated by no movement periods while the mouse gesture button is held down. The MouseGesture rule condition matches mouse gesture sequences. The old mouse-up, etc., tests are converted to MouseGesture conditions.
|
||||
|
||||
|
||||
Version 1.0.6:
|
||||
|
||||
The sliding DPI setting now looks for suitable keys to use to trigger its effects.
|
||||
|
|
|
@ -4,7 +4,7 @@ tagline: Linux Device Manager for Logitech Unifying Receivers and Devices.
|
|||
owner: pwr-Solaar
|
||||
owner_url: https://github.com/pwr-Solaar
|
||||
repository: pwr-Solaar/Solaar
|
||||
version: 1.0.6
|
||||
version: 1.0.7rc1
|
||||
show_downloads: false
|
||||
encoding: utf-8
|
||||
theme: jekyll-theme-slate
|
||||
|
|
|
@ -19,5 +19,5 @@
|
|||
|
||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||
|
||||
__version__ = '1.0.6'
|
||||
__version__ = '1.0.7rc1'
|
||||
NAME = 'Solaar'
|
||||
|
|
Loading…
Reference in New Issue