From 5bdf27fd782befb8d1ac1a1b83bac46b649af638 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 5 Sep 2022 10:49:50 +0530 Subject: [PATCH] version 0.26.2 --- docs/changelog.rst | 12 ++++++------ kitty/constants.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 926770e19..e93b69db2 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -35,24 +35,24 @@ mouse anywhere in the current command to move the cursor there. See Detailed list of changes ------------------------------------- -0.26.2 [future] +0.26.2 [2022-09-05] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Allow creating :code:`overlay-main` windows, which are treated as the active window unlike normal overlays (:iss:`5392`) -- hyperlinked_grep kitten: Allow control over which parts of rg output are hyperlinked (:pull:`5428`) +- hints kitten: Allow using :doc:`launch` as the program to run, to open the result in a new kitty tab/window/etc. (:iss:`5462`) + +- hyperlinked_grep kitten: Allow control over which parts of ``rg`` output are hyperlinked (:pull:`5428`) - Fix regression in 0.26.0 that caused launching kitty without working STDIO handles to result in high CPU usage and prewarming failing (:iss:`5444`) -- :doc:`/launch`: Allow setting the margin and padding for the newly created window (:iss:`5463`) +- :doc:`/launch`: Allow setting the margin and padding for newly created windows (:iss:`5463`) - macOS: Fix regression in 0.26.0 that caused asking the user for a line of input such as for :ac:`set_tab_title` to not work (:iss:`5447`) - hints kitten: hyperlink matching: Fix hints occasionally matching text on subsequent line as part of hyperlink (:pull:`5450`) -- hints kitten: Allow using :doc:`launch` as the program to run, to open the result in a new kitty tab/window/etc. (:iss:`5462`) - -- Fix a regression in 0.26.0 that broke mapping of native keys who key codes did not fit in 21 bits (:iss:`5452`) +- Fix a regression in 0.26.0 that broke mapping of native keys whose key codes did not fit in 21 bits (:iss:`5452`) - Wayland: Fix remembering window size not accurate when client side decorations are present diff --git a/kitty/constants.py b/kitty/constants.py index 57a4e57ac..0f0e24f52 100644 --- a/kitty/constants.py +++ b/kitty/constants.py @@ -22,7 +22,7 @@ class Version(NamedTuple): appname: str = 'kitty' kitty_face = '🐱' -version: Version = Version(0, 26, 1) +version: Version = Version(0, 26, 2) str_version: str = '.'.join(map(str, version)) _plat = sys.platform.lower() is_macos: bool = 'darwin' in _plat