version 0.14.5

This commit is contained in:
Kovid Goyal
2019-09-23 08:41:38 +05:30
parent fe807dd66f
commit ffc4e99717
2 changed files with 3 additions and 3 deletions

View File

@@ -4,10 +4,10 @@ Changelog
|kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator.
To update |kitty|, :doc:`follow the instructions <binary>`. To update |kitty|, :doc:`follow the instructions <binary>`.
0.14.5 [future] 0.14.5 [2019-09-23]
--------------------- ---------------------
- Implement a hack to (mostly) preserve tabs when cat a file with them and then - Implement a hack to (mostly) preserve tabs when cat-ting a file with them and then
copying the text or passing screen contents to another program (:iss:`1829`) copying the text or passing screen contents to another program (:iss:`1829`)
- When all visible windows have the same background color, use that as the - When all visible windows have the same background color, use that as the

View File

@@ -9,7 +9,7 @@ from collections import namedtuple
from contextlib import suppress from contextlib import suppress
appname = 'kitty' appname = 'kitty'
version = (0, 14, 4) version = (0, 14, 5)
str_version = '.'.join(map(str, version)) str_version = '.'.join(map(str, version))
_plat = sys.platform.lower() _plat = sys.platform.lower()
is_macos = 'darwin' in _plat is_macos = 'darwin' in _plat