release 1.1.4rc1
This commit is contained in:
parent
97c65d05e2
commit
ea790ae656
30
ChangeLog.md
30
ChangeLog.md
|
@ -1,3 +1,33 @@
|
|||
# 1.1.4rc1
|
||||
|
||||
* Add depress and release options to KeyPress rule action
|
||||
* Only close existing devices for receiver
|
||||
* Differentiate debug messages for different setting types
|
||||
* Implement packed range setting in config panel
|
||||
* Only produce warning for unimplemented display of setting
|
||||
* Add sidetone and equalizer settings for headsets
|
||||
* Add packed ranges setting
|
||||
* Use built-ins for conversions between int and byte string
|
||||
* Don't add HI_RES wheel ecodes to evdev device codes
|
||||
* Handle null key in persistent remappable actions when device does not respond
|
||||
* Consult polling rate feature for polling rate
|
||||
* Eliminate extra file handles
|
||||
* Close file handles for receiver-connected devices
|
||||
* Access to more keys in KeyPress rule action when in other keyboard groups
|
||||
* Update Turkish translation
|
||||
* Put battery levels in tray menu labels
|
||||
* Reduce warnings for inaccessible keys in KeyPress rule action
|
||||
* Better determination of keycodes and insert needed shifts in KeyPress actions.
|
||||
* Be careful when processing notifications for partly set up devices.
|
||||
* Clear out fields for empty persistent remappable action.
|
||||
* Fix message generation when device is offline.
|
||||
* Fix bug in feature lookup.
|
||||
* Add support for G533 Headset and G502 Gaming Mouse
|
||||
* Improve device features handling.
|
||||
* Keep trying settings that have worked in the past.
|
||||
* Store None in persisters for non-persisting settings.
|
||||
* Only create configuration entries for off-line devices if they have a serial number.
|
||||
|
||||
# 1.1.3
|
||||
|
||||
* Update documentation files
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
# Notes on Major Changes in Releases
|
||||
|
||||
## Version 1.1.4
|
||||
|
||||
* There are settings for sidetone and equalizer gains for headsets.
|
||||
|
||||
* The KeyPress action can now either deppress, release, or click (default) keys.
|
||||
|
||||
* The KeyPress action now inserts shift and level 3 keypresses if simulating a key symbol requires one or both of them. So producing a "B" no longer requires adding a shift keysymbol.
|
||||
|
||||
## Version 1.1.3
|
||||
|
||||
* Solaar uses yaml for configuration files, converting the json configuration file to yaml if necessary.
|
||||
|
|
|
@ -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.1.3
|
||||
version: 1.1.4rc1
|
||||
show_downloads: false
|
||||
encoding: utf-8
|
||||
theme: jekyll-theme-slate
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
## with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
__version__ = '1.1.3'
|
||||
__version__ = '1.1.4rc1'
|
||||
NAME = 'Solaar'
|
||||
|
|
2
setup.py
2
setup.py
|
@ -8,7 +8,7 @@ except ImportError:
|
|||
from distutils.core import setup
|
||||
|
||||
# from solaar import NAME, __version__
|
||||
__version__ = '1.1.3'
|
||||
__version__ = '1.1.4rc1'
|
||||
NAME = 'Solaar'
|
||||
|
||||
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release version="1.1.4rc1" date="2022-06-22"/>
|
||||
<release version="1.1.3" date="2022-04-25"/>
|
||||
<release version="1.1.2" date="2022-03-26"/>
|
||||
<release version="1.1.1" date="2021-12-25"/>
|
||||
|
|
Loading…
Reference in New Issue