release 1.0.6rc1
This commit is contained in:
parent
be143992ff
commit
f5fac6f713
28
ChangeLog
28
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:
|
1.0.5:
|
||||||
* Update documentation on devices forgetting settings.
|
* Update documentation on devices forgetting settings.
|
||||||
* Improve help messages
|
* Improve help messages
|
||||||
|
|
|
@ -1,6 +1,21 @@
|
||||||
Notes on Major Changes in Releases
|
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:
|
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.
|
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.
|
||||||
|
|
|
@ -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.5
|
version: 1.0.6rc1
|
||||||
show_downloads: false
|
show_downloads: false
|
||||||
encoding: utf-8
|
encoding: utf-8
|
||||||
theme: jekyll-theme-slate
|
theme: jekyll-theme-slate
|
||||||
|
|
|
@ -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.5'
|
__version__ = '1.0.6rc1'
|
||||||
NAME = 'Solaar'
|
NAME = 'Solaar'
|
||||||
|
|
Loading…
Reference in New Issue