1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 17:23:15 +02:00

Compare commits

..

4 Commits

Author SHA1 Message Date
Sébastien Helleu b407de4c3b Version 4.3.0 2024-05-26 09:16:17 +02:00
Sébastien Helleu 8444670ef1 relay/api: set API version to 0.1.0 in OpenAPI document 2024-05-26 08:39:28 +02:00
Sébastien Helleu 657805ca25 core: add relay options renamed in release notes 2024-05-26 08:24:08 +02:00
Sébastien Helleu 12378b3a19 relay/api: set API version to 0.1.0 2024-05-26 00:04:28 +02:00
6 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
:breaking: pass:quotes[*[breaking]*] :breaking: pass:quotes[*[breaking]*]
[[v4.3.0]] [[v4.3.0]]
== Version 4.3.0 (under dev) == Version 4.3.0 (2024-05-26)
{see-release-notes} {see-release-notes}
+9 -1
View File
@@ -12,7 +12,15 @@ For a complete list of changes, please look at ChangeLog.
[[v4.3.0]] [[v4.3.0]]
== Version 4.3.0 (under dev) == Version 4.3.0 (2024-05-26)
[[v4.3.0_relay_options]]
=== Relay options
The following relay options have been renamed:
* relay.color.status_waiting_auth -> relay.color.status_authenticating
* relay.weechat.commands -> relay.network.commands (new default value: `*,!quit`)
[[v4.3.0_irc_color_channel_modes]] [[v4.3.0_irc_color_channel_modes]]
=== Color of IRC channel modes === Color of IRC channel modes
+1
View File
@@ -1671,6 +1671,7 @@ irc_message_split (struct t_irc_server *server, const char *message)
&& ((weechat_strcasecmp (command, "privmsg") == 0) && ((weechat_strcasecmp (command, "privmsg") == 0)
|| (weechat_strcasecmp (command, "notice") == 0)) || (weechat_strcasecmp (command, "notice") == 0))
&& message && message
&& strchr (message, '\n')
&& (index_args + 1 <= argc - 1) && (index_args + 1 <= argc - 1)
&& (weechat_strncmp (argv[index_args + 1], "\01", 1) != 0) && (weechat_strncmp (argv[index_args + 1], "\01", 1) != 0)
&& (weechat_strncmp (argv[index_args + 1], ":\01", 2) != 0) && (weechat_strncmp (argv[index_args + 1], ":\01", 2) != 0)
+2 -2
View File
@@ -24,8 +24,8 @@ struct t_relay_client;
enum t_relay_status; enum t_relay_status;
#define RELAY_API_VERSION_MAJOR 0 #define RELAY_API_VERSION_MAJOR 0
#define RELAY_API_VERSION_MINOR 0 #define RELAY_API_VERSION_MINOR 1
#define RELAY_API_VERSION_PATCH 1 #define RELAY_API_VERSION_PATCH 0
#define RELAY_API_VERSION_NUMBER \ #define RELAY_API_VERSION_NUMBER \
((RELAY_API_VERSION_MAJOR << 16) \ ((RELAY_API_VERSION_MAJOR << 16) \
+ (RELAY_API_VERSION_MINOR << 8) \ + (RELAY_API_VERSION_MINOR << 8) \
+1 -1
View File
@@ -13,7 +13,7 @@ info:
license: license:
name: CC BY-NC-SA 4.0 name: CC BY-NC-SA 4.0
url: https://creativecommons.org/licenses/by-nc-sa/4.0/ url: https://creativecommons.org/licenses/by-nc-sa/4.0/
version: 0.0.1 version: 0.1.0
externalDocs: externalDocs:
url: https://weechat.org/doc/ url: https://weechat.org/doc/
+2 -2
View File
@@ -39,8 +39,8 @@
# devel-number the devel version as hex number ("0x04010000" for "4.1.0-dev") # devel-number the devel version as hex number ("0x04010000" for "4.1.0-dev")
# #
weechat_stable="4.2.2" weechat_stable="4.3.0"
weechat_devel="4.3.0-dev" weechat_devel="4.3.0"
stable_major=$(echo "${weechat_stable}" | cut -d"." -f1) stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)
stable_minor=$(echo "${weechat_stable}" | cut -d"." -f2) stable_minor=$(echo "${weechat_stable}" | cut -d"." -f2)