diff --git a/ChangeLog b/ChangeLog index c5bbd6d6..0cd55be2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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: * Don't use time_ns so as not to require Python 3.7 * Correctly determine setting box in change_click method diff --git a/Release_Notes b/Release_Notes index 2a140924..e0e9c082 100644 --- a/Release_Notes +++ b/Release_Notes @@ -1,5 +1,10 @@ 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: diff --git a/docs/_config.yml b/docs/_config.yml index b9692139..3522c429 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.7 +version: 1.1.0rc1 show_downloads: false encoding: utf-8 theme: jekyll-theme-slate diff --git a/lib/solaar/__init__.py b/lib/solaar/__init__.py index a2a4576b..da03311a 100644 --- a/lib/solaar/__init__.py +++ b/lib/solaar/__init__.py @@ -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.0.7' +__version__ = '1.1.0rc1' NAME = 'Solaar' diff --git a/setup.py b/setup.py index 3985bc72..ce852457 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.7' +__version__ = '1.1.0.rc1' NAME = 'Solaar'