summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2024-04-07 19:04:08 +0200
committerSébastien Helleu <flashcode@flashtux.org>2024-04-07 19:04:08 +0200
commit2fe215276e4a32c6ef045dfe595a985a31ecebf6 (patch)
treee749f38ce12c9124820559d547a0cb603f585495
parent419515845dee3de02a2dae5dc6312b75959148bc (diff)
downloadweechat-2fe215276e4a32c6ef045dfe595a985a31ecebf6.zip
core: add version 4.2.2 in ChangeLog and release notes
-rw-r--r--ChangeLog.adoc22
-rw-r--r--ReleaseNotes.adoc19
-rwxr-xr-xversion.sh2
3 files changed, 42 insertions, 1 deletions
diff --git a/ChangeLog.adoc b/ChangeLog.adoc
index 1078dcfd6..4b68cc1dd 100644
--- a/ChangeLog.adoc
+++ b/ChangeLog.adoc
@@ -81,6 +81,28 @@ Build::
* tcl: make plugin compatible with Tcl 9.0 (issue #2075)
+[[v4.2.2]]
+== Version 4.2.2 (2024-04-07)
+
+Bug fixes::
+
+ * core: fix reset to initial scroll position after search of text in buffer (issue #2093)
+ * core: add missing mouse events "alt-ctrl-button2" and "alt-ctrl-button3"
+ * exec: remove trailing space on buffers with free content when line numbers are not displayed
+ * exec: add missing exec tags in lines of buffers with free content (issue #2086)
+ * irc: add missing tags on self action messages when capability echo-message is enabled (issue #2074)
+ * python: fix truncation of unsigned long long integer returned by function string_parse_size
+ * relay: set the last IRC client disconnection time only after a successful connection (issue #2103)
+ * script: always display list of scripts when searching scripts with `/script search` (issue #2077)
+ * script: fix default mouse keys (issue #2076)
+ * scripts: fix crash on script unload when a hook is created in a buffer close callback (issue #2067)
+ * tcl: fix truncation of long integer returned by function hdata_long
+ * trigger: fix memory leak when adding a new trigger with `/trigger` command
+
+Tests::
+
+ * core: fix tests on function strftimeval on Alpine
+
[[v4.2.1]]
== Version 4.2.1 (2024-01-22)
diff --git a/ReleaseNotes.adoc b/ReleaseNotes.adoc
index 7684c8752..b50b5294b 100644
--- a/ReleaseNotes.adoc
+++ b/ReleaseNotes.adoc
@@ -30,6 +30,25 @@ the keys with the following commands:
/reset weechat.key_mouse.@chat(script.scripts):wheelup
----
+[[v4.2.2]]
+== Version 4.2.2 (2024-04-07)
+
+[[v4.2.2_script_keys]]
+=== Script keys
+
+Some arguments to the `/script` command were renamed in version 4.1.0, but the
+keys using these arguments were not changed at same time.
+
+They're now using the new arguments by default, but you must reset manually
+the keys with the following commands:
+
+----
+/reset weechat.key_mouse.@chat(script.scripts):button1
+/reset weechat.key_mouse.@chat(script.scripts):button2
+/reset weechat.key_mouse.@chat(script.scripts):wheeldown
+/reset weechat.key_mouse.@chat(script.scripts):wheelup
+----
+
[[v4.2.1]]
== Version 4.2.1 (2024-01-22)
diff --git a/version.sh b/version.sh
index b7e15195f..c3bad9e74 100755
--- a/version.sh
+++ b/version.sh
@@ -39,7 +39,7 @@
# devel-number the devel version as hex number ("0x04010000" for "4.1.0-dev")
#
-weechat_stable="4.2.1"
+weechat_stable="4.2.2"
weechat_devel="4.3.0-dev"
stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)