From 1b8574449f81e83a82adfd97454f81f6bd7e07c2 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 7 Nov 2021 16:51:39 +1100 Subject: [PATCH] Kakoune 2021.11.08 --- doc/pages/changelog.asciidoc | 8 ++++++++ src/main.cc | 3 +++ 2 files changed, 11 insertions(+) diff --git a/doc/pages/changelog.asciidoc b/doc/pages/changelog.asciidoc index 3bb3e6c1d7..0cab1d0d01 100644 --- a/doc/pages/changelog.asciidoc +++ b/doc/pages/changelog.asciidoc @@ -3,6 +3,14 @@ This changelog contains major and/or breaking changes to Kakoune between released versions. +== Kakoune 2021.11.07 + +* Support for curly and separately colored underlines (undocumented in 2021.10.28) + +* Fixes for terminal flickering + +* Fixes for command and response fifo corner cases + == Kakoune 2021.10.28 * `g` and `v` do not auto lower case the next key, so `GL` needs to be diff --git a/src/main.cc b/src/main.cc index 7fa6070eac..6da6e64857 100644 --- a/src/main.cc +++ b/src/main.cc @@ -44,6 +44,9 @@ struct { unsigned int version; StringView notes; } constexpr version_notes[] = { { + 20211107, + "» colored and curly underlines support (undocumented in 20210828)\n" + }, { 20211028, "» {+b}g{} and {+b}v{} do not auto-convert to lowercase anymore\n" }, {