mirror of
https://github.com/weechat/weechat.git
synced 2026-07-06 01:33:12 +02:00
Added missing IRC commands (006, 007, 310, 379)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-05-13
|
||||
ChangeLog - 2006-05-14
|
||||
|
||||
Version 0.1.9 (under dev!):
|
||||
* added new key to find previous completion (shift-tab by default)
|
||||
@@ -15,7 +15,7 @@ Version 0.1.9 (under dev!):
|
||||
* fixed nicklist sort bug
|
||||
* added russian translations (thanks to Pavel Shevchuk)
|
||||
* added german doc (thanks to Frank Zacharias)
|
||||
* added missing IRC commands (290, 292, 437, 974)
|
||||
* added missing IRC commands (006, 007, 290, 292, 310, 379, 437, 974)
|
||||
* fixed crash when multiple pv have same name: now it's forbidden
|
||||
and pv buffer is not renamed (when a nick changes) if another
|
||||
exists with same name (bug #16369)
|
||||
|
||||
@@ -315,6 +315,10 @@ t_irc_command irc_commands[] =
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_004 },
|
||||
{ "005", N_("a server message"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "006", N_("a server message"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "007", N_("a server message"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "008", N_("a server message"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "020", N_("a server message"), "", "",
|
||||
@@ -383,6 +387,8 @@ t_irc_command irc_commands[] =
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_306 },
|
||||
{ "307", N_("whois (registered nick)"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_307 },
|
||||
{ "310", N_("available for help"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "311", N_("whois (user)"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_311 },
|
||||
{ "312", N_("whois (server)"), "", "",
|
||||
@@ -465,6 +471,8 @@ t_irc_command irc_commands[] =
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "378", N_("connecting from"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_378 },
|
||||
{ "379", N_("using modes"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "381", N_("you are now an IRC operator"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "382", N_("rehashing"), "", "",
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-05-13
|
||||
ChangeLog - 2006-05-14
|
||||
|
||||
Version 0.1.9 (under dev!):
|
||||
* added new key to find previous completion (shift-tab by default)
|
||||
@@ -15,7 +15,7 @@ Version 0.1.9 (under dev!):
|
||||
* fixed nicklist sort bug
|
||||
* added russian translations (thanks to Pavel Shevchuk)
|
||||
* added german doc (thanks to Frank Zacharias)
|
||||
* added missing IRC commands (290, 292, 437, 974)
|
||||
* added missing IRC commands (006, 007, 290, 292, 310, 379, 437, 974)
|
||||
* fixed crash when multiple pv have same name: now it's forbidden
|
||||
and pv buffer is not renamed (when a nick changes) if another
|
||||
exists with same name (bug #16369)
|
||||
|
||||
@@ -315,6 +315,10 @@ t_irc_command irc_commands[] =
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_004 },
|
||||
{ "005", N_("a server message"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "006", N_("a server message"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "007", N_("a server message"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "008", N_("a server message"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "020", N_("a server message"), "", "",
|
||||
@@ -383,6 +387,8 @@ t_irc_command irc_commands[] =
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_306 },
|
||||
{ "307", N_("whois (registered nick)"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_307 },
|
||||
{ "310", N_("available for help"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "311", N_("whois (user)"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_311 },
|
||||
{ "312", N_("whois (server)"), "", "",
|
||||
@@ -465,6 +471,8 @@ t_irc_command irc_commands[] =
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "378", N_("connecting from"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_378 },
|
||||
{ "379", N_("using modes"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "381", N_("you are now an IRC operator"), "", "",
|
||||
NULL, 0, 0, 0, 1, NULL, NULL, irc_cmd_recv_server_msg },
|
||||
{ "382", N_("rehashing"), "", "",
|
||||
|
||||
Reference in New Issue
Block a user