mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 14:18:26 +02:00
version 0.8.4
This commit is contained in:
@@ -3,6 +3,16 @@ 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.
|
||||||
|
|
||||||
|
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]
|
version 0.8.3 [2018-03-29]
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ from collections import namedtuple
|
|||||||
from .fast_data_types import set_boss as set_c_boss
|
from .fast_data_types import set_boss as set_c_boss
|
||||||
|
|
||||||
appname = 'kitty'
|
appname = 'kitty'
|
||||||
version = (0, 8, 3)
|
version = (0, 8, 4)
|
||||||
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
|
||||||
|
|||||||
Reference in New Issue
Block a user