1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 05:16:38 +02:00

core: rename option weechat.color.status_name_ssl to weechat.color.status_name_tls (issue #1903)

This commit is contained in:
Sébastien Helleu
2023-04-06 00:02:15 +02:00
parent ff2f94c12b
commit 23b870ec1d
4 changed files with 8 additions and 7 deletions
+1
View File
@@ -31,6 +31,7 @@ New features::
* core: add relative move of read marker with `/buffer set unread [+/-]N` (issue #1895)
* core: add access to hashtable properties in evaluation of expressions (issue #1888)
* core: display similar command names when a command is unknown (issue #1877)
* core: rename option weechat.color.status_name_ssl to weechat.color.status_name_tls
* core, plugins: make many identifiers case sensitive (issue #1872, issue #398, bug #32213)
* core: add item "mouse_status" in default status bar, change default color to lightgreen
* api: add function config_set_version (issue #1238)
+5 -5
View File
@@ -282,7 +282,7 @@ struct t_config_option *config_color_status_filter = NULL;
struct t_config_option *config_color_status_more = NULL;
struct t_config_option *config_color_status_mouse = NULL;
struct t_config_option *config_color_status_name = NULL;
struct t_config_option *config_color_status_name_ssl = NULL;
struct t_config_option *config_color_status_name_tls = NULL;
struct t_config_option *config_color_status_nicklist_count = NULL;
struct t_config_option *config_color_status_number = NULL;
struct t_config_option *config_color_status_time = NULL;
@@ -4513,11 +4513,11 @@ config_weechat_init_options ()
NULL, NULL, NULL,
&config_change_color, NULL, NULL,
NULL, NULL, NULL);
config_color_status_name_ssl = config_file_new_option (
config_color_status_name_tls = config_file_new_option (
weechat_config_file, weechat_config_section_color,
"status_name_ssl", "color",
"status_name_tls", "color",
N_("text color for current buffer name in status bar, if data are "
"secured with a protocol like SSL"),
"secured with a protocol like TLS"),
NULL, -1, 0, "lightgreen", NULL, 0,
NULL, NULL, NULL,
&config_change_color, NULL, NULL,
@@ -4745,7 +4745,7 @@ config_weechat_init_options ()
"gnutls_ca_system", "boolean",
N_("load system's default trusted certificate authorities on startup; "
"this can be turned off to save some memory only if you are not "
"using SSL connections at all"),
"using TLS connections at all"),
NULL, 0, 0, "on", NULL, 0,
NULL, NULL, NULL,
&config_change_network_gnutls_ca, NULL, NULL,
+1 -1
View File
@@ -329,7 +329,7 @@ extern struct t_config_option *config_color_status_filter;
extern struct t_config_option *config_color_status_more;
extern struct t_config_option *config_color_status_mouse;
extern struct t_config_option *config_color_status_name;
extern struct t_config_option *config_color_status_name_ssl;
extern struct t_config_option *config_color_status_name_tls;
extern struct t_config_option *config_color_status_nicklist_count;
extern struct t_config_option *config_color_status_number;
extern struct t_config_option *config_color_status_time;
+1 -1
View File
@@ -82,7 +82,7 @@
#define IRC_COLOR_NOTICE weechat_color(weechat_config_string(irc_config_color_notice))
#define IRC_COLOR_STATUS_NUMBER weechat_color("status_number")
#define IRC_COLOR_STATUS_NAME weechat_color("status_name")
#define IRC_COLOR_STATUS_NAME_SSL weechat_color("status_name_ssl")
#define IRC_COLOR_STATUS_NAME_SSL weechat_color("status_name_tls")
#define IRC_COLOR_MESSAGE_JOIN weechat_color(weechat_config_string(irc_config_color_message_join))
#define IRC_COLOR_MESSAGE_ACCOUNT weechat_color(weechat_config_string(irc_config_color_message_account))
#define IRC_COLOR_MESSAGE_CHGHOST weechat_color(weechat_config_string(irc_config_color_message_chghost))