Skip to content

Commit

Permalink
version 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed May 24, 2018
1 parent de4384a commit a4af059
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@ Changelog

kitty is a feature full, cross-platform, *fast*, GPU based terminal emulator.

version 0.10.1 [2018-05-24]
------------------------------

- Add a kitten to easily ssh into servers that automatically copies the
terminfo files over. ``kitty +kitten ssh myserver``.

- diff kitten: Make the keyboard shortcuts configurable
(`#563 <https://github.com/kovidgoyal/kitty/issues/563>`_)

- Allow controlling *background_opacity* via either keyboard shortcuts or
remote control. Note that you must set *dynamic_background_opacity yes* in
kitty.conf first. (`#569 <https://github.com/kovidgoyal/kitty/issues/569>`_)

- diff kitten: Add keybindings to scroll by page

- diff kitten: Fix incorrect syntax highlighting for a few file formats such as
yaml

- macOS: Fix regression that caused the *macos_option_as_alt* setting to always
be disabled for all OS windows in a kitty instance after the first window
(`#571 <https://github.com/kovidgoyal/kitty/issues/571>`_)

- Fix Ctrl+Alt+Space not working in normal and application keyboard modes
(`#562 <https://github.com/kovidgoyal/kitty/issues/562>`_)


version 0.10.0 [2018-05-21]
------------------------------

Expand Down
2 changes: 1 addition & 1 deletion kitty/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .fast_data_types import set_boss as set_c_boss

appname = 'kitty'
version = (0, 10, 0)
version = (0, 10, 1)
str_version = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos = 'darwin' in _plat
Expand Down

0 comments on commit a4af059

Please sign in to comment.