Sébastien Helleu
02bcee02e9
relay: fix typo in a comment
2016-02-02 07:00:40 +01:00
Sébastien Helleu
1a94193147
relay: fix command "input" received from clients (weechat protocol) ( closes #663 )
...
The command "input" received with only spaces in content of message was
ignored by WeeChat (because of the split on spaces).
2016-01-23 10:37:07 +01:00
Sébastien Helleu
f2214da118
irc: add missing completion "*" for target in command /msg
2016-01-17 09:07:23 +01:00
Sébastien Helleu
3c953780f0
irc: fix /msg command with multiple targets including "*"
2016-01-17 09:06:17 +01:00
Sébastien Helleu
9d4554e805
irc: add examples in /help ctcp
2016-01-17 08:51:22 +01:00
Sébastien Helleu
99ff5813d9
irc: add a constant with list of supported CTCPs for completion in command /ctcp
2016-01-17 08:36:00 +01:00
Sébastien Helleu
aee4871083
irc: add missing completion "*" for target in command /ctcp
2016-01-17 08:32:44 +01:00
Sébastien Helleu
efb23016fe
irc: do not exit from function in case of error with "ctcp *"
...
When "*" is a target in the middle of a list, for example
"#chan1,*,#chan2", if there's an error with "*", the CTCP should be sent
to #chan1 and #chan2, even if "*" fails (and not only #chan1 like it was
previously).
2016-01-17 08:24:53 +01:00
Sébastien Helleu
68b70fb185
irc: free allocated memory in case of early exit from the function
2016-01-17 08:21:45 +01:00
Sébastien Helleu
b0725c2b9b
irc: fix code style
2016-01-17 08:20:14 +01:00
Sébastien Helleu
a7695f7201
Merge remote-tracking branch 'origin/pr/493'
2016-01-17 08:11:23 +01:00
Luis Colorado
b46e75d504
Add extern keyword several places to link in osx
2016-01-15 09:12:30 +02:00
Sébastien Helleu
101fa2cab8
irc: fix channel forwarding ( closes #643 )
...
The problem happens when the option
irc.look.buffer_open_before_{autojoin|join} is on.
2016-01-06 07:17:44 +01:00
Sébastien Helleu
fe0c9dbc93
trigger: add info in error messages
2016-01-05 07:53:38 +01:00
Sébastien Helleu
7a55d8aa29
alias: do not allow slashes and spaces in alias name ( closes #646 )
2016-01-05 07:46:24 +01:00
Sébastien Helleu
3d0a7451d8
irc: remove argument "clear" from command /cap (issue #8 , closes #641 )
2016-01-03 09:01:43 +01:00
Sébastien Helleu
522dcf133c
irc: evaluate content of server option "addresses"
2016-01-02 10:12:40 +01:00
Sébastien Helleu
3330724574
core: update copyright dates
2016-01-01 11:09:53 +01:00
Sébastien Helleu
08d22a948f
irc: fix typo
2015-12-24 22:20:12 +01:00
Sébastien Helleu
ed32302011
irc: move option irc.network.alternate_nick into servers ( closes #633 )
2015-12-24 20:36:05 +01:00
Sébastien Helleu
c4e3d66ba5
core: add a parent name in options ( closes #629 )
...
Inherited values are now displayed in /set output when the value is
null, if a parent option name is defined in option.
New option: weechat.color.chat_value_null
2015-12-24 07:53:37 +01:00
Christine Dodrill
c3857e97cf
irc: add default color for +y mode prefix
2015-12-20 19:28:46 +01:00
Sébastien Helleu
80d53ac8bd
Merge pull request #626 from sunpoet/master
...
javascript: fix build on FreeBSD
2015-12-20 18:54:17 +01:00
Sébastien Helleu
f26fbb4850
irc: add missing field realname in function irc_nick_print_log()
2015-12-20 10:28:05 +01:00
Sébastien Helleu
fb8799e81c
irc: fix comments
2015-12-20 10:22:43 +01:00
Sébastien Helleu
da505c0392
irc: fix long line
2015-12-20 10:20:12 +01:00
Sébastien Helleu
971a90474f
irc: fix condition in account message callback
2015-12-20 10:18:13 +01:00
Sébastien Helleu
ad45fd775d
Merge remote-tracking branch 'origin/pr/351'
2015-12-20 10:13:29 +01:00
Nick
52820627f0
relay: add option relay.irc.backlog_since_last_message
2015-12-20 08:19:59 +01:00
Sunpoet Po-Chuan Hsieh
6c3b940dc4
Fix build on FreeBSD
...
The error message is as follows:
/usr/ports/irc/weechat/work/weechat-1.3/src/plugins/javascript/weechat-js-api.cpp:4206:16: error: use of undeclared identifier
'localtime'
date_tmp = localtime (&time);
^
/usr/ports/irc/weechat/work/weechat-1.3/src/plugins/javascript/weechat-js-api.cpp:4208:9: error: use of undeclared identifier
'strftime'
strftime (timebuffer, sizeof (timebuffer), "%F %T", date_tmp);
^
2015-12-20 05:36:00 +08:00
Sébastien Helleu
e6e8f34b4a
script: update help on /script search
2015-12-10 07:06:21 +01:00
Sébastien Helleu
e734914380
script: add completion with languages and extensions, support search by language/extension in /script search
2015-12-09 07:40:16 +01:00
Sébastien Helleu
0b86ce9d44
fifo: fix invalid pointer type
2015-12-03 07:55:11 +01:00
Sébastien Helleu
6f0151e128
fifo: add /fifo command
2015-12-02 19:46:34 +01:00
Sébastien Helleu
2a494227b4
script: fix comment
2015-12-02 19:35:16 +01:00
Sébastien Helleu
4fca6c58c8
irc: add a condition for colon before the password in PASS message (issue #602 )
...
Some weird IRC servers may refuse a PASS command with a colon, so we
send a colon only if the password contains spaces or begins with a
colon.
2015-11-24 20:26:06 +01:00
Sébastien Helleu
9e9dd27bb3
irc: add a missing colon before the password in PASS message ( closes #602 )
2015-11-24 07:44:21 +01:00
Sébastien Helleu
c337e74e7a
irc: use current channel and current server channels first in completions "irc_channels" and "irc_server_channels" ( closes #392 )
2015-11-17 20:48:24 +01:00
Sébastien Helleu
17e1747a82
irc: use current channel first in completion "irc_channels" (task #12923 , issue #392 )
2015-11-16 20:24:45 +01:00
Sébastien Helleu
4f867a89ad
ruby: fix load of scripts requiring "uri" ( closes #433 )
2015-10-27 15:14:36 +01:00
Sébastien Helleu
61a4c1b5c1
fifo: add buffer name in error when the buffer is not found
2015-10-25 07:37:43 +01:00
Sébastien Helleu
995eb1f004
irc: add "cap-notify" in list of supported capabilities (/help cap)
2015-10-18 19:19:03 +02:00
Sébastien Helleu
8e70134614
irc: fix code style
2015-10-18 18:57:18 +02:00
Sébastien Helleu
6b6b85c724
Merge remote-tracking branch 'origin/pr/477'
2015-10-18 18:47:47 +02:00
Sébastien Helleu
b76cd5a724
core: update translations
2015-09-30 20:57:29 +02:00
Andrew Potter
b3d1d1877e
logger: Report system error string to user
2015-09-27 22:04:47 -07:00
Sébastien Helleu
2a96bc67b0
relay: remove useless condition always evaluated to true
2015-09-13 07:53:54 +02:00
Sébastien Helleu
664876bde6
alias: display completion in /alias list ( closes #518 )
2015-09-12 09:23:48 +02:00
Sébastien Helleu
1b05a1a06b
alias: fix indentation error
2015-09-12 09:23:17 +02:00
Sébastien Helleu
29ec400a8e
irc: fix charset decoding in incoming private messages ( closes #520 )
2015-09-08 09:25:05 +02:00