release 1.1.0rc1

This commit is contained in:
Peter F. Patel-Schneider 2021-11-09 08:55:56 -05:00
parent f16294e5aa
commit d8cce70a0c
5 changed files with 30 additions and 3 deletions

View File

@ -1,3 +1,25 @@
1.1.0rc1:
* Add Catalan translation.
* Add toggle command to solaar config to toggle boolean settings
* Don't select windows with no PID when looking for focus window
* Catch errors when applying settings so that other settings are not affected
* Add support for Bolt receivers and devices
* Revise method for creating system tray menu
* Remove obsolete code (mostly Python 2 compatability code)
* Add support for PRO X Wireless Mouse, G914 TKL keyboard
* Ignore more notifications that come to a device listener
* Handle more device connection protocols
* Update usage and rules documentation
* Change emojis to text in documentation
* Pare down device documentation so as not to require frequent updates
* Add information about M500S mouse
* Reimplment MOUSE GESTURE and DPI SLIDING settings
* Add setting for DPI CHANGE button to switch sensitivity
* Use file name instead of icon name for tray to avoid XFCE bug
* Update documentation on implemented features and mouse gestures
* Update Polish, Japanese, and Spanish translations
* Make Quit and About strings more translatable
1.0.7: 1.0.7:
* Don't use time_ns so as not to require Python 3.7 * Don't use time_ns so as not to require Python 3.7
* Correctly determine setting box in change_click method * Correctly determine setting box in change_click method

View File

@ -1,5 +1,10 @@
Notes on Major Changes in Releases Notes on Major Changes in Releases
Version 1.1.0:
Solaar now supports Bolt receivers and devices that connect to them, including authentication of devices when pairing.
A setting has been added for the DPI CHANGE button to switch movement sensitivity.
Version 1.0.7: Version 1.0.7:

View File

@ -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.7 version: 1.1.0rc1
show_downloads: false show_downloads: false
encoding: utf-8 encoding: utf-8
theme: jekyll-theme-slate theme: jekyll-theme-slate

View File

@ -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.0.7' __version__ = '1.1.0rc1'
NAME = 'Solaar' NAME = 'Solaar'

View File

@ -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.0.7' __version__ = '1.1.0.rc1'
NAME = 'Solaar' NAME = 'Solaar'