diff --git a/ChangeLog b/ChangeLog index b0b14ee8..8fb0fd5a 100644 --- a/ChangeLog +++ b/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 diff --git a/Release_Notes b/Release_Notes index 358aae7a..2a140924 100644 --- a/Release_Notes +++ b/Release_Notes @@ -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. diff --git a/docs/_config.yml b/docs/_config.yml index b6f6f9f8..70070aad 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -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 diff --git a/lib/solaar/__init__.py b/lib/solaar/__init__.py index a987a72c..33e38b3e 100644 --- a/lib/solaar/__init__.py +++ b/lib/solaar/__init__.py @@ -19,5 +19,5 @@ from __future__ import absolute_import, division, print_function, unicode_literals -__version__ = '1.0.6' +__version__ = '1.0.7rc1' NAME = 'Solaar' diff --git a/setup.py b/setup.py index 2a374af5..8ab7e002 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: from distutils.core import setup # from solaar import NAME, __version__ -__version__ = '1.0.6' +__version__ = '1.0.7rc1' NAME = 'Solaar'