version 0.8.4

This commit is contained in:
Kovid Goyal 2018-03-31 12:16:35 +05:30
parent 023487a1d7
commit 7926a140b8
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 11 additions and 1 deletions

View File

@ -3,6 +3,16 @@ Changelog
kitty is a feature full, cross-platform, *fast*, GPU based terminal emulator.
version 0.8.4 [2018-03-31]
-----------------------------
- Fix presence of XDG_CONFIG_DIRS and absence of XDG_CONFIG_HOME preventing
kitty from starting
- Revert change in last release to cell width calculation. Instead just clip
the right edges of characters that overflow the cell by at most two pixels
version 0.8.3 [2018-03-29]
-----------------------------

View File

@ -11,7 +11,7 @@
from .fast_data_types import set_boss as set_c_boss
appname = 'kitty'
version = (0, 8, 3)
version = (0, 8, 4)
str_version = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos = 'darwin' in _plat