release 1.1.3rc3
This commit is contained in:
parent
8e61ada15b
commit
5a3ffe04e8
|
@ -1,12 +1,15 @@
|
||||||
# 1.1.3rc2
|
# 1.1.3rc3
|
||||||
|
|
||||||
|
* Update documentation files
|
||||||
|
* Lower remove python 3.7 constructs and lower python dependency to 3.6
|
||||||
|
* Fix bug in xtest mouse scrolling
|
||||||
* Allow mouse gesture setting for non-mice, e.g., trackballs
|
* Allow mouse gesture setting for non-mice, e.g., trackballs
|
||||||
* Print message when there is another Solaar process running
|
* Print message when there is another Solaar process running
|
||||||
* Fix determination of whether to force read before writing boolean setting
|
* Fix determination of whether to force read before writing boolean setting
|
||||||
* Add recent diversion features to default list in rules UI
|
* Add recent diversion features to default list in rules UI
|
||||||
* Add setting to divert hires scroll wheel
|
* Add setting to divert hires scroll wheel
|
||||||
* Don't use device kind to determine how to handle notifications
|
* Don't use device kind to determine how to handle notifications
|
||||||
* Update Polish and Russian translations
|
* Update Polish, Russian, and zh_CN translations
|
||||||
* Remove pggettext so as to not require Python 3.8
|
* Remove pggettext so as to not require Python 3.8
|
||||||
* Remove Python 2 unicode support
|
* Remove Python 2 unicode support
|
||||||
* Store keys in configuration file as int instead of str
|
* Store keys in configuration file as int instead of str
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
|
|
||||||
* Solaar rules work better under Wayland but still cannot access the current process nor the current keyboard modifiers.
|
* Solaar rules work better under Wayland but still cannot access the current process nor the current keyboard modifiers.
|
||||||
|
|
||||||
|
* Solaar uses uinput for simulating input in Wayland. See https://pwr-solaar.github.io/Solaar/rules for instructions on setting up uinput correctly.
|
||||||
|
|
||||||
## Version 1.1.2
|
## Version 1.1.2
|
||||||
|
|
||||||
* Solaar now depends on Python evdev. It can be installed if needed via `pip install --user evdev` or, in most distributions, by installing the python3-evdev package.
|
* Solaar now depends on Python evdev. It can be installed if needed via `pip install --user evdev` or, in most distributions, by installing the python3-evdev package.
|
||||||
|
|
|
@ -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.1.3rc2
|
version: 1.1.3rc3
|
||||||
show_downloads: false
|
show_downloads: false
|
||||||
encoding: utf-8
|
encoding: utf-8
|
||||||
theme: jekyll-theme-slate
|
theme: jekyll-theme-slate
|
||||||
|
|
|
@ -148,7 +148,7 @@ for the step-by-step procedure for manual installation.
|
||||||
To make the Polling Rate and M-Key LEDs settings effective the Onboard Profiles setting has to be disabled.
|
To make the Polling Rate and M-Key LEDs settings effective the Onboard Profiles setting has to be disabled.
|
||||||
This may have other effects, such as turning off backlighting.
|
This may have other effects, such as turning off backlighting.
|
||||||
|
|
||||||
- Solaar will try to use uinput to simulate input from rules if Xtest is not available
|
- Solaar will try to use uinput to simulate input from rules under Wayland or if Xtest is not available
|
||||||
but this needs write permission on /dev/uinput.
|
but this needs write permission on /dev/uinput.
|
||||||
For more information see [the rules page](https://pwr-solaar.github.io/Solaar/rules).
|
For more information see [the rules page](https://pwr-solaar.github.io/Solaar/rules).
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ When running under Wayland without X11 libraries loaded even more features will
|
||||||
Rule features known not to work under Wayland include process and mouse process conditions.
|
Rule features known not to work under Wayland include process and mouse process conditions.
|
||||||
Under Wayland using keyboard groups may result in incorrect symbols being input for simulated input.
|
Under Wayland using keyboard groups may result in incorrect symbols being input for simulated input.
|
||||||
Under Wayland simulating inputs when modifier keys are pressed may result in incorrect symbols being input.
|
Under Wayland simulating inputs when modifier keys are pressed may result in incorrect symbols being input.
|
||||||
Simulated input uses Xtest if available or uinput if the user has write access to /dev/uinput.
|
Simulated input uses Xtest if available under X11 or uinput if the user has write access to /dev/uinput.
|
||||||
To get access to /dev/uinput run `sudo setfacl -m u:${user}:rw /dev/uinput`*
|
To get access to /dev/uinput run `sudo setfacl -m u:${user}:rw /dev/uinput`*
|
||||||
|
|
||||||
Logitech devices that use HID++ version 2.0 or greater produce feature-based
|
Logitech devices that use HID++ version 2.0 or greater produce feature-based
|
||||||
|
|
|
@ -16,5 +16,5 @@
|
||||||
## with this program; if not, write to the Free Software Foundation, Inc.,
|
## with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
__version__ = '1.1.3rc2'
|
__version__ = '1.1.3rc3'
|
||||||
NAME = 'Solaar'
|
NAME = 'Solaar'
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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.1.3rc2'
|
__version__ = '1.1.3rc3'
|
||||||
NAME = 'Solaar'
|
NAME = 'Solaar'
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release version="1.1.3rc2" date="2022-04-15"/>
|
<release version="1.1.3rc3" date="2022-04-20"/>
|
||||||
<release version="1.1.2" date="2022-03-26"/>
|
<release version="1.1.2" date="2022-03-26"/>
|
||||||
<release version="1.1.1" date="2021-12-25"/>
|
<release version="1.1.1" date="2021-12-25"/>
|
||||||
<release version="1.1.0" date="2021-12-20"/>
|
<release version="1.1.0" date="2021-12-20"/>
|
||||||
|
|
Loading…
Reference in New Issue