release 1.0.7rc1

This commit is contained in:
Peter F. Patel-Schneider 2021-07-04 09:33:22 -04:00
parent 5488593caa
commit 6d56dd538e
5 changed files with 34 additions and 3 deletions

View File

@ -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: 1.0.6:
* Update sliding DPI to look for suitable keys * Update sliding DPI to look for suitable keys
* Add mouse gestures that can trigger rules * Add mouse gestures that can trigger rules

View File

@ -1,6 +1,15 @@
Notes on Major Changes in Releases 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: Version 1.0.6:
The sliding DPI setting now looks for suitable keys to use to trigger its effects. The sliding DPI setting now looks for suitable keys to use to trigger its effects.

View File

@ -4,7 +4,7 @@ tagline: Linux Device Manager for Logitech Unifying Receivers and Devices.
owner: pwr-Solaar owner: pwr-Solaar
owner_url: https://github.com/pwr-Solaar owner_url: https://github.com/pwr-Solaar
repository: pwr-Solaar/Solaar repository: pwr-Solaar/Solaar
version: 1.0.6 version: 1.0.7rc1
show_downloads: false show_downloads: false
encoding: utf-8 encoding: utf-8
theme: jekyll-theme-slate theme: jekyll-theme-slate

View File

@ -19,5 +19,5 @@
from __future__ import absolute_import, division, print_function, unicode_literals from __future__ import absolute_import, division, print_function, unicode_literals
__version__ = '1.0.6' __version__ = '1.0.7rc1'
NAME = 'Solaar' NAME = 'Solaar'

View File

@ -8,7 +8,7 @@ except ImportError:
from distutils.core import setup from distutils.core import setup
# from solaar import NAME, __version__ # from solaar import NAME, __version__
__version__ = '1.0.6' __version__ = '1.0.7rc1'
NAME = 'Solaar' NAME = 'Solaar'