From f5fac6f7131e88f8f5419ba3b46917fb700331be Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sun, 7 Mar 2021 22:08:38 -0500 Subject: [PATCH] release 1.0.6rc1 --- ChangeLog | 28 ++++++++++++++++++++++++++++ Release_Notes | 15 +++++++++++++++ docs/_config.yml | 2 +- lib/solaar/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 46 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 348208cb..b1d4f80f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,31 @@ +1.0.6rc1: + * Update sliding DPI to look for suitable keys + * Add mouse gestures that can trigger rules + * Complain if receivers do not support connection notification + * In polling rate setting, only modify onboard profiles when actually writing polling rate + * Add ability to ignore settings. + * Use symbols for receiver sub-registers + * Add support for wired G700 + * Do not set attention icon + * Replace deprecated GTK stock menu icons + * Better handling of icons in tray and tray menus + * Receiver c52e does not unpair + * Match active WM_CLASS as well as active process name in rules + * Correctly set icon theme value when regular battery icons are not available + * Handle exception when device is not available when device is being added + * Perform initial activation of devices in listener threads + * Keep track of serial numbers in the configuration file + * Don't update settings for non-active devices + * Set the current host name if not stored on the device + * Add setting for SMART SHIFT ENHANCED feature + * Don't unnecessarily use long messages for HID++ 1.0 commands + * Correctly select choices in solaar config and use 1-origin addressing + * Add quirk for G915 TKL keyboard because its host mode inteferes with its Fn keys + * Show command outputs both saved and on-device settings + * Update documentation + * Fix bug in hidconsole + * Update French translation + 1.0.5: * Update documentation on devices forgetting settings. * Improve help messages diff --git a/Release_Notes b/Release_Notes index ef76965d..358aae7a 100644 --- a/Release_Notes +++ b/Release_Notes @@ -1,6 +1,21 @@ Notes on Major Changes in Releases +Version 1.0.6: + +The sliding DPI setting now looks for suitable keys to use to trigger its effects. + +If a mouse has a suitable button it can generate mouse gestures, which trigger rule processing. Mouse gestures need to be turned on and the button diverted to produce mouse gestures. + +Settings can now be ignored by clicking on the icon at the right-hand edge of a setting until the dialog error icon (usually a red icon) appears. Solaar will not try to restore the value for an ignored setting. + +Icon handling in the tray and the tray menu has been updated to work better with some system tray implementations. + +The process rule condition also matches against the current X11 WM_CLASS. + +The SMART SHIFT ENHANCED feature is supported. + + Version 1.0.5: Solaar has rules that can perform actions such as pressing keys or scrolling when certain HID++ feature notifications happen. Users can change these rules either by editing ~/.config/solaar/rules.yaml or via a GUI. Rules depend on X11 and so are only available under X11. This is an experimental feature for Solaar and may undergo changes in the future. diff --git a/docs/_config.yml b/docs/_config.yml index 0d5ac651..a4eadfc3 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.5 +version: 1.0.6rc1 show_downloads: false encoding: utf-8 theme: jekyll-theme-slate diff --git a/lib/solaar/__init__.py b/lib/solaar/__init__.py index b9be0ff9..9bd95165 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.5' +__version__ = '1.0.6rc1' NAME = 'Solaar' diff --git a/setup.py b/setup.py index f347ac60..7d6aeabf 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.5' +__version__ = '1.0.6rc1' NAME = 'Solaar'