From af85f58e3d7cec85f344bde909ed5fdceb2f3bb6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 9 Mar 2018 09:21:50 +0530 Subject: [PATCH] version 0.8.1 --- CHANGELOG.rst | 31 +++++++++++++++++++++++++++++++ kitty/constants.py | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4f27002d1..646b49001 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,37 @@ Changelog kitty is a feature full, cross-platform, *fast*, GPU based terminal emulator. +version 0.8.1 [2018-03-09] +----------------------------- + +- Extend kitty's remote control feature to work over both UNIX and TCP sockets, + so now you can control kitty from across the internet, if you want to. + +- Render private use unicode characters that are followed by a space as a two + character ligature. This fixes rendering for applications that misuse + private-use characters to display square symbols. + +- Fix Unicode emoji presentation variant selector causing new a fallback font + instance to be created + +- Fix a rare error that prevented the Unicode input kitten from working + sometimes + +- Allow using Ctrl+Alt+letter in legacy keyboard modes by outputting them as Ctrl+letter and Alt+letter. + This matches other terminals' behavior. + +- Fix cursor position off-by-one on horizontal axis when resizing the terminal + +- Wayland: Fix auto-repeat of keys not working + +- Wayland: Add support for window decorations provided by the Wayland shell + +- macOS: Fix URL hints not working + +- macOS: Fix shell not starting in login mode on some computers + +- macOS: Output errors into console.app when running as a bundle + version 0.8.0 [2018-02-24] ----------------------------- diff --git a/kitty/constants.py b/kitty/constants.py index d70e6d485..dfa515d78 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -10,7 +10,7 @@ from collections import namedtuple from .fast_data_types import set_boss as set_c_boss appname = 'kitty' -version = (0, 8, 0) +version = (0, 8, 1) str_version = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos = 'darwin' in _plat