version 0.5.1

This commit is contained in:
Kovid Goyal
2017-12-01 10:15:18 +05:30
parent 9ed980a511
commit 8d2a720fb9
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ Changelog
kitty is a feature full, cross-platform, *fast*, GPU based terminal emulator.
version 0.5.1 [future]
version 0.5.1 [2017-12-01]
---------------------------
- Add an option to control the thickness of lines in box drawing characters
@@ -14,7 +14,7 @@ version 0.5.1 [future]
- Fix unicode block characters not being rendered properly
- Fix shift+up/down not rendering correct escape codes
- Fix shift+up/down not generating correct escape codes
- Image display: Fix displaying images taller than two screen heights not
scrolling properly

View File

@@ -11,7 +11,7 @@ from collections import namedtuple
from .fast_data_types import set_boss as set_c_boss
appname = 'kitty'
version = (0, 5, 0)
version = (0, 5, 1)
str_version = '.'.join(map(str, version))
_plat = sys.platform.lower()
isosx = 'darwin' in _plat