1
0
Fork 0
mirror of https://github.com/seqizz/autorandr.git synced 2024-09-07 10:30:28 +02:00

Release 1.11

This updates the readme with changes since 1.10.1 and releases 1.11.
This version primarily brings small bugfixes, only change warranting
minor version bump is that batch mode now assigns user groups.

Fixes #227.
This commit is contained in:
Phillip Berndt 2020-11-15 16:32:28 +01:00 committed by Gürkan Gür
parent 6eae3c8bb7
commit 9e95d5cc2c
3 changed files with 7 additions and 2 deletions

View file

@ -224,6 +224,11 @@ options nvidia_drm modeset=1
## Changelog
**autorandr 1.11**
* *2020-05-23* Handle empty sys.executable
* *2020-06-08* Fix Python 2 compatibility
* *2020-10-06* Set group membership of users in batch mode
**autorandr 1.10.1**
* *2020-05-04* Revert making the launcher the default (fixes #195)

View file

@ -48,7 +48,7 @@ if sys.version_info.major == 2:
else:
import configparser
__version__ = "1.10.1"
__version__ = "1.11"
try:
input = raw_input

View file

@ -9,7 +9,7 @@ except:
setup(
name='autorandr',
version='1.10.1.post1',
version='1.11.post1',
description='Automatically select a display configuration based on connected devices',
long_description=long_description,