1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 01:33:12 +02:00

Added support for UnrealIrcd ("~" for chan owner, "&" for chan admin)

This commit is contained in:
Sebastien Helleu
2005-02-15 20:03:35 +00:00
parent 0d21ca207d
commit 84f84823c9
22 changed files with 1536 additions and 1366 deletions
+10
View File
@@ -204,6 +204,8 @@ int cfg_col_input_nick;
int cfg_col_input_bg;
int cfg_col_nick;
int cfg_col_nick_away;
int cfg_col_nick_chanowner;
int cfg_col_nick_chanadmin;
int cfg_col_nick_op;
int cfg_col_nick_halfop;
int cfg_col_nick_voice;
@@ -347,6 +349,14 @@ t_config_option weechat_options_colors[] =
N_("color for away nicknames"),
OPTION_TYPE_COLOR, 0, 0, 0,
"cyan", NULL, &cfg_col_nick_away, NULL, &config_change_color },
{ "col_nick_chanowner", N_("color for chan owner symbol"),
N_("color for chan owner symbol (specific to unrealircd)"),
OPTION_TYPE_COLOR, 0, 0, 0,
"lightgreen", NULL, &cfg_col_nick_chanowner, NULL, &config_change_color },
{ "col_nick_chanadmin", N_("color for chan admin symbol"),
N_("color for chan admin symbol (specific to unrealircd)"),
OPTION_TYPE_COLOR, 0, 0, 0,
"lightgreen", NULL, &cfg_col_nick_chanadmin, NULL, &config_change_color },
{ "col_nick_op", N_("color for operator symbol"),
N_("color for operator symbol"),
OPTION_TYPE_COLOR, 0, 0, 0,
+2
View File
@@ -127,6 +127,8 @@ extern int cfg_col_input_nick;
extern int cfg_col_input_bg;
extern int cfg_col_nick;
extern int cfg_col_nick_away;
extern int cfg_col_nick_chanowner;
extern int cfg_col_nick_chanadmin;
extern int cfg_col_nick_op;
extern int cfg_col_nick_halfop;
extern int cfg_col_nick_voice;