From 0871024eda6e5187ef996e7a2b2f1ac976954a42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Tue, 22 Aug 2023 12:08:18 +0200 Subject: [PATCH] core: add version 4.0.4 --- ChangeLog.adoc | 23 ++++++++++++++++------- ReleaseNotes.adoc | 5 +++++ version.sh | 2 +- 3 files changed, 22 insertions(+), 8 deletions(-) diff --git a/ChangeLog.adoc b/ChangeLog.adoc index f88d471f5..a630caa0f 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -35,8 +35,6 @@ New features:: Bug fixes:: - * core: fix integer overflow when setting integer option with `++N` or `--N` - * core: fix increment/decrement of options weechat.notify.* * core: fix cursor position after `/plugin list -i` or `/plugin list -il` * core: display focus hashtable for debug even if no key is matching * fset: remove extra spaces between min and max values when second format is used @@ -45,22 +43,33 @@ Bug fixes:: * irc: fix display of country code in message 344 received as whois geo info (issue #1736) * irc: add missing "account-tag" in list of supported capabilities * irc: add channel in "autojoin" server option only when the channel is actually joined (issue #1990) + * relay: synchronize nick modes with IRC client upon connection (issue #1984) + * script: add parameters up/down/go in `/help script` and command completion + * script: fix cursor position after `/script list -i` or `/script list -il` + * script: fix buffer used by command `/script list -i|-il|-o|-ol` + +Tests:: + + * core: add tests on GUI buffer functions + +[[v4.0.4]] +== Version 4.0.4 (2023-08-22) + +Bug fixes:: + + * core: fix integer overflow when setting integer option with `++N` or `--N` + * core: fix increment/decrement of options weechat.notify.* * irc: add missing tags on multiline messages (issue #1987) * irc: fix redirection of command `/list` when the reply doesn't start with message 321 (start of /list) * irc: fix wrong time displayed for CTCP messages received from self nick (issue #2000) * logger: remove trailing empty line in display of backlog (issue #2002) * perl: fix display of non-ASCII chars after load of a script with Perl >= 5.38 (issue #1996) - * relay: synchronize nick modes with IRC client upon connection (issue #1984) - * script: add parameters up/down/go in `/help script` and command completion * script: adjust scroll after command `/script go N` - * script: fix cursor position after `/script list -i` or `/script list -il` - * script: fix buffer used by command `/script list -i|-il|-o|-ol` * scripts: fix function string_parse_size on 32-bit systems (python and ruby) (issue #1999) * xfer: fix conversion of string to IPv4 on 32-bit systems (issue #1999) Tests:: - * core: add tests on GUI buffer functions * irc: fix tests on function irc_join_compare_join_channel (issue #1997) * scripts: fix tests of functions print_date_tag, print_y_date_tags and hook_timer on 32-bit systems (issue #1999) diff --git a/ReleaseNotes.adoc b/ReleaseNotes.adoc index 70bf1acd3..6512201d9 100644 --- a/ReleaseNotes.adoc +++ b/ReleaseNotes.adoc @@ -84,6 +84,11 @@ You can reset it with this command: /reset weechat.key_mouse.@chat(fset.fset):button1 ---- +[[v4.0.4]] +== Version 4.0.4 (2023-08-22) + +No release notes. + [[v4.0.3]] == Version 4.0.3 (2023-08-08) diff --git a/version.sh b/version.sh index b6cd07b09..cd5e52b81 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.0.3" +weechat_stable="4.0.4" weechat_devel="4.1.0-dev" stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)