diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1e850be80c5..8a9d2621f1a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 `_) + +- 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 `_) + +- 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 `_) + +- Fix Ctrl+Alt+Space not working in normal and application keyboard modes + (`#562 `_) + + version 0.10.0 [2018-05-21] ------------------------------ diff --git a/kitty/constants.py b/kitty/constants.py index 1621ce3709d..5d325d4a6ec 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -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