version 0.18.2

This commit is contained in:
Kovid Goyal 2020-07-28 14:01:16 +05:30
parent 01be77e0bc
commit ec3998a9b8
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 4 deletions

View File

@ -4,7 +4,7 @@ Changelog
|kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator.
To update |kitty|, :doc:`follow the instructions <binary>`.
0.18.2 [future]
0.18.2 [2020-07-28]
--------------------
- X11: Improve handling of multiple keyboards. Now pressing a modifier key in
@ -41,8 +41,6 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
:option:`kitty --single-instance` using the :option:`kitty --override` command line
argument (:iss:`2806`)
- Wayland: Fix a crash when using animated mouse cursors (:iss:`2810`)
- Fix the CSI J (Erase in display ED) escape code not removing line continued
markers (:iss:`2809`)

View File

@ -20,7 +20,7 @@ class Version(NamedTuple):
appname: str = 'kitty'
version: Version = Version(0, 18, 1)
version: Version = Version(0, 18, 2)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat