From 72888b4cb6f3cacb04ee7eb3db18299b3ef1e3507595f502f6fef168829e827e Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Mon, 14 Jun 2021 07:32:43 +0000 Subject: [PATCH 1/4] - Update to 0.21.1: * Fix a regression in the previous release that could cause a crash when changing layouts and mousing (#3713) - Update to 0.21.0: * Allow reloading the kitty.conf config file by pressing ctrl+shift+f5. (#1292) * Allow clicking URLs to open them without needing to also hold ctrl+shift * Allow remapping all mouse button press/release events to perform arbitrary actions. See details. * Support infinite length ligatures (#3504) * Backward incompatibility: The options to control which modifiers keys to press for various mouse actions have been removed, if you used these options, you will need to replace them with configuration using the new mouse actions framework as they will be ignored. The options were: terminal_select_modifiers, rectangle_select_modifiers and open_url_modifiers. * Add a configurable mouse action (ctrl+alt+triplepress to select from the clicked point to the end of the line. (#3585) * Add the ability to un-scroll the screen to the kitty @ scroll-window remote control command (#3604) * A new option, tab_bar_margin_height to add margins around the top and bottom edges of the tab bar (#3247) * Unicode input kitten: Fix a regression in 0.20.0 that broke keyboard handling when the NumLock or CapsLock modifiers were engaged. (#3587) * Fix a regression in 0.20.0 that sent incorrect bytes for the F1-F4 keys in rmkx mode (#3586) * Add a few more special commandline arguments for the launch command. Now all KITTY_PIPE_DATA is also available via command line argument OBS-URL: https://build.opensuse.org/package/show/X11:terminals/kitty?expand=0&rev=79 --- kitty-0.20.3.tar.gz | 3 --- kitty-0.21.1.tar.gz | 3 +++ kitty.changes | 62 +++++++++++++++++++++++++++++++++++++++++++++ kitty.spec | 2 +- 4 files changed, 66 insertions(+), 4 deletions(-) delete mode 100644 kitty-0.20.3.tar.gz create mode 100644 kitty-0.21.1.tar.gz diff --git a/kitty-0.20.3.tar.gz b/kitty-0.20.3.tar.gz deleted file mode 100644 index d5ba233..0000000 --- a/kitty-0.20.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7048cc0e6c17fe5ef3fbac18125dbd5f05d6c628838f004b8e2ad3546fb77d85 -size 4229573 diff --git a/kitty-0.21.1.tar.gz b/kitty-0.21.1.tar.gz new file mode 100644 index 0000000..e137aea --- /dev/null +++ b/kitty-0.21.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4b18788fa2bc0855078d6299139b12f61fa1d2311508a69e9936ca916d6c2d +size 5677683 diff --git a/kitty.changes b/kitty.changes index 8285430..1e043b9 100644 --- a/kitty.changes +++ b/kitty.changes @@ -1,3 +1,65 @@ +------------------------------------------------------------------- +Mon Jun 14 07:31:28 UTC 2021 - Michael Vetter + +- Update to 0.21.1: + * Fix a regression in the previous release that could cause a + crash when changing layouts and mousing (#3713) + +------------------------------------------------------------------- +Mon Jun 14 07:28:29 UTC 2021 - Michael Vetter + +- Update to 0.21.0: + * Allow reloading the kitty.conf config file by pressing + ctrl+shift+f5. (#1292) + * Allow clicking URLs to open them without needing to also hold + ctrl+shift + * Allow remapping all mouse button press/release events to + perform arbitrary actions. See details. + * Support infinite length ligatures (#3504) + * Backward incompatibility: The options to control which + modifiers keys to press for various mouse actions have been + removed, if you used these options, you will need to replace + them with configuration using the new mouse actions framework + as they will be ignored. The options were: terminal_select_modifiers, + rectangle_select_modifiers and open_url_modifiers. + * Add a configurable mouse action (ctrl+alt+triplepress to select + from the clicked point to the end of the line. (#3585) + * Add the ability to un-scroll the screen to the kitty @ + scroll-window remote control command (#3604) + * A new option, tab_bar_margin_height to add margins around + the top and bottom edges of the tab bar (#3247) + * Unicode input kitten: Fix a regression in 0.20.0 that broke + keyboard handling when the NumLock or CapsLock modifiers were engaged. (#3587) + * Fix a regression in 0.20.0 that sent incorrect bytes for the + F1-F4 keys in rmkx mode (#3586) + * Add a few more special commandline arguments for the launch command. + Now all KITTY_PIPE_DATA is also available via command line argument + substitution (#3593) + * Fix dynamically changing the background color in a window causing + rendering artifacts in the tab bar (#3595) + * Fix passing STDIN to launched background processes causing them to + not inherit environment variables (#3603) + * Fix deleting windows that are not the last window via remote control + leaving no window focused (#3619) + * Add an option kitty @ get-text --add-cursor to also get the current + cursor position and state as ANSI escape codes (#3625) + * Add an option kitty @ get-text --add-wrap-markers to add line wrap + markers to the output (#3633) + * Improve rendering of curly underlines on HiDPI screens (#3637) + * ssh kitten: Mimic behavior of ssh command line client more closely + by executing any command specified on the command line via the users' + shell just as ssh does (#3638) + * Fix trailing parentheses in URLs not being detected (#3688) + * Tab bar: Use a lower contrast color for tab separators (#3666) + * Fix a regression that caused using the title command in session + files to stop working (#3676) + * Fix ligatures not working with the Iosevka font + (requires Iosevka >= 7.0.4) (#297) + * Remote control: Allow matching tabs by index number in currently + active OS Window (#3708) + * ssh kitten: Fix non-standard properties in terminfo such as the + ones used for true color not being copied (#312) + ------------------------------------------------------------------- Thu May 6 07:44:39 UTC 2021 - Michael Vetter diff --git a/kitty.spec b/kitty.spec index d15ad82..f4b9d2d 100644 --- a/kitty.spec +++ b/kitty.spec @@ -17,7 +17,7 @@ Name: kitty -Version: 0.20.3 +Version: 0.21.1 Release: 0 Summary: A GPU-based terminal emulator License: GPL-3.0-only From 07ee72e99725f933b40b74dff7cb7f8189ab81a4af559093a664858ac1ad64d4 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Mon, 14 Jun 2021 07:36:02 +0000 Subject: [PATCH 2/4] OBS-URL: https://build.opensuse.org/package/show/X11:terminals/kitty?expand=0&rev=80 --- kitty.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty.spec b/kitty.spec index f4b9d2d..73fce52 100644 --- a/kitty.spec +++ b/kitty.spec @@ -41,6 +41,7 @@ BuildRequires: libpng16-compat-devel BuildRequires: libwayland-egl-devel BuildRequires: libxkbcommon-devel BuildRequires: libxkbcommon-x11-devel +BuildRequires: python-importlib-resources # for 'tic' BuildRequires: ncurses-devel BuildRequires: pkgconfig From 20b65ec1661b8ef8273022c6b86805dbf73ad0682be2b938cd93b34bec4ca467 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Mon, 14 Jun 2021 07:38:20 +0000 Subject: [PATCH 3/4] OBS-URL: https://build.opensuse.org/package/show/X11:terminals/kitty?expand=0&rev=81 --- kitty.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty.spec b/kitty.spec index 73fce52..c16d302 100644 --- a/kitty.spec +++ b/kitty.spec @@ -41,7 +41,7 @@ BuildRequires: libpng16-compat-devel BuildRequires: libwayland-egl-devel BuildRequires: libxkbcommon-devel BuildRequires: libxkbcommon-x11-devel -BuildRequires: python-importlib-resources +BuildRequires: python39-importlib-resources # for 'tic' BuildRequires: ncurses-devel BuildRequires: pkgconfig From f01c5c6af5c60e771e8e86a72936cb86d759940b7538d5508792f3af340e69a8 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Tue, 15 Jun 2021 09:40:30 +0000 Subject: [PATCH 4/4] OBS-URL: https://build.opensuse.org/package/show/X11:terminals/kitty?expand=0&rev=82 --- kitty.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty.spec b/kitty.spec index c16d302..27d4042 100644 --- a/kitty.spec +++ b/kitty.spec @@ -41,7 +41,7 @@ BuildRequires: libpng16-compat-devel BuildRequires: libwayland-egl-devel BuildRequires: libxkbcommon-devel BuildRequires: libxkbcommon-x11-devel -BuildRequires: python39-importlib-resources +BuildRequires: python3-importlib-resources # for 'tic' BuildRequires: ncurses-devel BuildRequires: pkgconfig