1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 21:36:37 +02:00

rmodifier: add option "release" in default rmodifier "nickserv" (used to hide passwords in command "/msg nickserv") (bug #35705)

This commit is contained in:
Sebastien Helleu
2012-03-03 12:38:35 +01:00
parent 5f11df74e3
commit d43e9c11e5
3 changed files with 10 additions and 3 deletions
+2
View File
@@ -11,6 +11,8 @@ Version 0.3.8 (under dev!)
* irc: add support of "external" SASL mechanism (task #11864)
* irc: close server buffer when server is deleted
* irc: add search for lower case nicks in option irc.look.nick_color_force
* rmodifier: add option "release" in default rmodifier "nickserv" (used to hide
passwords in command "/msg nickserv") (bug #35705)
Version 0.3.7 (2012-02-26)
--------------------------
+7 -2
View File
@@ -1,13 +1,18 @@
WeeChat News
============
Sébastien Helleu <flashcode@flashtux.org>
v0.3.8-dev, 2012-02-26
v0.3.8-dev, 2012-03-03
Version 0.3.8 (under dev!)
--------------------------
No release note.
* rmodifier "nickserv" has a new default regex which includes option "release"
for command "/msg nickserv". If you never added/changed rmodifiers, you can
just reset all rmodifiers (command: `/rmodifier default -yes`).
If you added/changed some rmodifiers, do it manually with these two commannds:
** `/rmodifier del nickserv`
** `/rmodifier add nickserv history_add,input_text_display 1,4* ^(/(msg|quote) +nickserv +(id|identify|ghost \S+|release \S+) +)(.*)`
Version 0.3.7 (2012-02-26)
--------------------------
+1 -1
View File
@@ -39,7 +39,7 @@ struct t_config_option *rmodifier_config_look_hide_char;
char *rmodifier_config_default_list[][4] =
{
{ "nickserv", "history_add,input_text_display",
"^(/(msg|quote) +nickserv +(identify|ghost \\S+) +)(.*)", "1,4*"
"^(/(msg|quote) +nickserv +(id|identify|ghost \\S+|release \\S+) +)(.*)", "1,4*"
},
{ "oper", "history_add,input_text_display",
"^(/oper +\\S+ +)(.*)", "1,2*"