version 0.24.0

This commit is contained in:
Kovid Goyal 2022-01-04 08:21:17 +05:30
parent 53431c7ba8
commit b6254e4a67
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ command.
Detailed list of changes
-------------------------------------
0.24.0 [future]
0.24.0 [2022-01-04]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Integrate kitty closely with common shells such as zsh, fish and bash.
@ -109,8 +109,8 @@ Detailed list of changes
- Add support for reporting mouse events with pixel co-ordinates using the
``SGR_PIXEL_PROTOCOL`` introduced in xterm 359
- When programs ask to read from the clipboard prompt the user to allow
the request by default instead of denying by default. See
- When programs ask to read from the clipboard prompt, ask the user to allow
the request by default instead of denying it by default. See
:opt:`clipboard_control` for details (:iss:`4022`)
- A new mappable action ``swap_with_window`` to swap the current window with another window in the tab, visually

View File

@ -22,7 +22,7 @@ class Version(NamedTuple):
appname: str = 'kitty'
kitty_face = '🐱'
version: Version = Version(0, 23, 1)
version: Version = Version(0, 24, 0)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat