diff --git a/ChangeLog.md b/ChangeLog.md index 385291e8..53ccf4bc 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ -# 1.1.1rc2 +# 1.1.1 +* Keep left pane in Solaar main window the same size +* Fix crash when checking a process condition when X11 not running +* Add version number to output of solaar show +* Fix crash when pinging a device with unknown protocol * Display battery percentage estimates from battery voltage * Add minimal support for Logitech PRO X Wireless Gaming Headset * Push settings when device requests software reconfiguration diff --git a/docs/_config.yml b/docs/_config.yml index 644fa113..181e96d8 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.1.1rc2 +version: 1.1.1 show_downloads: false encoding: utf-8 theme: jekyll-theme-slate diff --git a/lib/solaar/__init__.py b/lib/solaar/__init__.py index 1e87a97c..7cadbc98 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.1.1rc2' +__version__ = '1.1.1' NAME = 'Solaar' diff --git a/setup.py b/setup.py index d8fc4b34..36615f9f 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.1.1rc2' +__version__ = '1.1.1' NAME = 'Solaar'