version 0.10.1
This commit is contained in:
parent
de4384a420
commit
a4af0599cc
@ -3,6 +3,32 @@ 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.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]
|
version 0.10.0 [2018-05-21]
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
@ -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, 10, 0)
|
version = (0, 10, 1)
|
||||||
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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user