Release version 0.13.0
parent
c903542433
commit
af848401cd
17
CHANGELOG
17
CHANGELOG
|
@ -1,6 +1,21 @@
|
|||
qtile x.x.x, released 2018-XX-XX:
|
||||
qtile 0.13.0, released 2018-12-23:
|
||||
!!! deprecation warning !!!
|
||||
- wmii layout is deprecated in terms of columns layout, which has the
|
||||
same behavior with different defaults, see the wmii definition for
|
||||
more details
|
||||
* features
|
||||
- add svg handling for images
|
||||
- allow addgroup command to set the layout
|
||||
- add command to get current log level
|
||||
- allow groupbox to hide unused groups
|
||||
- add caps lock indicator widget
|
||||
- add custom_command to check_update widget
|
||||
* bugfixes
|
||||
- better shutdown handling
|
||||
- fix clientlist current client tracking
|
||||
- fix typo in up command on ratiotile layout
|
||||
- various fixes to check_update widget
|
||||
- fix 0 case for resize screen
|
||||
|
||||
qtile 0.12.0, released 2018-07-20:
|
||||
!!! Config breakage !!!
|
||||
|
|
|
@ -28,7 +28,7 @@ Features
|
|||
Current Release
|
||||
===============
|
||||
|
||||
The current stable version of qtile is 0.12.0, released 2018-07-20. See the
|
||||
The current stable version of qtile is 0.13.0, released 2018-12-23. See the
|
||||
`documentation <http://docs.qtile.org/en/latest/manual/install/index.html>`_
|
||||
for installation instructions.
|
||||
|
||||
|
|
|
@ -97,7 +97,7 @@ copyright = u'2008-2018, Aldo Cortesi and contributers'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.12.0'
|
||||
version = '0.13.0'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = version
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "QSHELL" "1" "Jul 20, 2018" "0.12.0" "Qtile"
|
||||
.TH "QSHELL" "1" "Dec 23, 2018" "0.13.0" "Qtile"
|
||||
.SH NAME
|
||||
qshell \- Qtile Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "QTILE" "1" "Jul 20, 2018" "0.12.0" "Qtile"
|
||||
.TH "QTILE" "1" "Dec 23, 2018" "0.13.0" "Qtile"
|
||||
.SH NAME
|
||||
qtile \- Qtile Documentation
|
||||
.
|
||||
|
|
16
setup.py
16
setup.py
|
@ -33,6 +33,7 @@ import textwrap
|
|||
from setuptools import setup
|
||||
from setuptools.command.install import install
|
||||
|
||||
|
||||
class CheckCairoXcb(install):
|
||||
def cairo_xcb_check(self):
|
||||
try:
|
||||
|
@ -63,6 +64,7 @@ class CheckCairoXcb(install):
|
|||
sys.exit(1)
|
||||
install.finalize_options(self)
|
||||
|
||||
|
||||
long_description = """
|
||||
A pure-Python tiling window manager.
|
||||
|
||||
|
@ -80,23 +82,17 @@ Features
|
|||
unit-tested window mangers around.
|
||||
"""
|
||||
|
||||
if '_cffi_backend' in sys.builtin_module_names: # pypy has cffi builtin
|
||||
if '_cffi_backend' in sys.builtin_module_names: # pypy has cffi builtin
|
||||
import _cffi_backend
|
||||
requires_cffi = "cffi==" + _cffi_backend.__version__
|
||||
else:
|
||||
requires_cffi = "cffi>=1.1.0"
|
||||
|
||||
dependencies = ['xcffib>=0.5.0', 'cairocffi>=0.9[xcb]', 'six>=1.4.1', requires_cffi]
|
||||
if sys.version_info >= (3, 4):
|
||||
pass
|
||||
elif sys.version_info >= (3, 3):
|
||||
dependencies.append('asyncio')
|
||||
else:
|
||||
dependencies.append('trollius')
|
||||
|
||||
setup(
|
||||
name="qtile",
|
||||
version="0.12.0",
|
||||
version="0.13.0",
|
||||
description="A pure-Python tiling window manager.",
|
||||
long_description=long_description,
|
||||
classifiers=[
|
||||
|
@ -108,6 +104,7 @@ setup(
|
|||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
"Operating System :: Unix",
|
||||
|
@ -123,6 +120,9 @@ setup(
|
|||
install_requires=dependencies,
|
||||
setup_requires=dependencies,
|
||||
extras_require={
|
||||
':python_version=="2.7"': [
|
||||
'trollius',
|
||||
],
|
||||
'ipython': ["ipykernel", "jupyter_console"],
|
||||
},
|
||||
packages=['libqtile',
|
||||
|
|
Loading…
Reference in New Issue