Skip to content

Commit

Permalink
version 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Jun 20, 2020
1 parent be3c76d commit eb4ee2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ Changelog
|kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator.
To update |kitty|, :doc:`follow the instructions <binary>`.

0.18.0 [future]
0.18.0 [2020-06-20]
--------------------

- Allow multiple overlay windows per normal window

- Add an option :opt:`confirm_os_window_close` to ask for confirmation
when closing an OS window with multiple kitty windows.

- Tall and Fat layouts: Add a ``mirrored`` option to put the full size window
on the opposite edge of the screen (:iss:`2654`)

Expand All @@ -25,9 +28,6 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
for the ``send_mouse_event`` function that can be used in kittens have
been changed (see :ref:`send_mouse_event`).

- Add an option :opt:`confirm_os_window_close` to ask for confirmation
when closing an OS window with multiple kitty windows.

- Add a new mappable ``quit`` action to quit kitty completely.

- Fix marks using different colors with regexes using only a single color
Expand All @@ -49,7 +49,7 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
- X11: Reduce startup time by ~25% by only querying GLX for framebuffer
configurations once (:iss:`2754`)

- macOS: Notarize the kitty application (:iss:`2040`)
- macOS: Notarize the kitty application bundle (:iss:`2040`)

- Fix the kitty shell launched via a mapping needlessly requiring
:opt:`allow_remote_control` to be turned on.
Expand Down
2 changes: 1 addition & 1 deletion kitty/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Version(NamedTuple):


appname: str = 'kitty'
version: Version = Version(0, 17, 4)
version: Version = Version(0, 18, 0)
str_version: str = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos: bool = 'darwin' in _plat
Expand Down

0 comments on commit eb4ee2f

Please sign in to comment.