Version bump: autorandr-1.8
This commit is contained in:
parent
9929130fe5
commit
d8cb50aff3
|
@ -212,7 +212,7 @@ profiles matching multiple (or any) monitors.
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
**autorandr 1.8 (dev)**
|
**autorandr 1.8**
|
||||||
* *2019-02-17* Add an X11 daemon that runs autorandr when a display connects (by @rliou92, #127)
|
* *2019-02-17* Add an X11 daemon that runs autorandr when a display connects (by @rliou92, #127)
|
||||||
* *2019-02-17* Replace width=0 check with disconnected to detect disconnected monitors (by @joseph-jones, #139)
|
* *2019-02-17* Replace width=0 check with disconnected to detect disconnected monitors (by @joseph-jones, #139)
|
||||||
* *2019-02-17* Fix handling of empty padding (by @jschwab, #138)
|
* *2019-02-17* Fix handling of empty padding (by @jschwab, #138)
|
||||||
|
|
|
@ -48,7 +48,7 @@ if sys.version_info.major == 2:
|
||||||
else:
|
else:
|
||||||
import configparser
|
import configparser
|
||||||
|
|
||||||
__version__ = "1.7"
|
__version__ = "1.8"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
input = raw_input
|
input = raw_input
|
||||||
|
|
5
setup.py
5
setup.py
|
@ -2,17 +2,18 @@ from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
long_description = open('README.rst').read()
|
long_description = open('README.md').read()
|
||||||
except:
|
except:
|
||||||
long_description = 'Automatically select a display configuration based on connected devices'
|
long_description = 'Automatically select a display configuration based on connected devices'
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='autorandr',
|
name='autorandr',
|
||||||
|
|
||||||
version='1.7-1',
|
version='1.8.post1',
|
||||||
|
|
||||||
description='Automatically select a display configuration based on connected devices',
|
description='Automatically select a display configuration based on connected devices',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
|
|
||||||
url='https://github.com/phillipberndt/autorandr',
|
url='https://github.com/phillipberndt/autorandr',
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue