summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2016-01-05trigger: add info in error messagesSébastien Helleu
2016-01-05alias: do not allow slashes and spaces in alias name (closes #646)Sébastien Helleu
2016-01-03irc: remove argument "clear" from command /cap (issue #8, closes #641)Sébastien Helleu
2016-01-02irc: evaluate content of server option "addresses"Sébastien Helleu
2016-01-01core: update copyright datesSébastien Helleu
2015-12-24irc: fix typoSébastien Helleu
2015-12-24irc: move option irc.network.alternate_nick into servers (closes #633)Sébastien Helleu
2015-12-24core: add a parent name in options (closes #629)Sébastien Helleu
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-20irc: add default color for +y mode prefixChristine Dodrill
2015-12-20Merge pull request #626 from sunpoet/masterSébastien Helleu
javascript: fix build on FreeBSD
2015-12-20irc: add missing field realname in function irc_nick_print_log()Sébastien Helleu
2015-12-20irc: fix commentsSébastien Helleu
2015-12-20irc: fix long lineSébastien Helleu
2015-12-20irc: fix condition in account message callbackSébastien Helleu
2015-12-20Merge remote-tracking branch 'origin/pr/351'Sébastien Helleu
2015-12-20relay: add option relay.irc.backlog_since_last_messageNick
2015-12-20Fix build on FreeBSDSunpoet Po-Chuan Hsieh
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-10script: update help on /script searchSébastien Helleu
2015-12-09script: add completion with languages and extensions, support search by ↵Sébastien Helleu
language/extension in /script search
2015-12-03fifo: fix invalid pointer typeSébastien Helleu
2015-12-02fifo: add /fifo commandSébastien Helleu
2015-12-02script: fix commentSébastien Helleu
2015-11-24irc: add a condition for colon before the password in PASS message (issue #602)Sébastien Helleu
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-24irc: add a missing colon before the password in PASS message (closes #602)Sébastien Helleu
2015-11-17irc: use current channel and current server channels first in completions ↵Sébastien Helleu
"irc_channels" and "irc_server_channels" (closes #392)
2015-11-16irc: use current channel first in completion "irc_channels" (task #12923, ↵Sébastien Helleu
issue #392)
2015-10-27ruby: fix load of scripts requiring "uri" (closes #433)Sébastien Helleu
2015-10-25fifo: add buffer name in error when the buffer is not foundSébastien Helleu
2015-10-18irc: add "cap-notify" in list of supported capabilities (/help cap)Sébastien Helleu
2015-10-18irc: fix code styleSébastien Helleu
2015-10-18Merge remote-tracking branch 'origin/pr/477'Sébastien Helleu
2015-09-30core: update translationsSébastien Helleu
2015-09-27logger: Report system error string to userAndrew Potter
2015-09-13relay: remove useless condition always evaluated to trueSébastien Helleu
2015-09-12alias: display completion in /alias list (closes #518)Sébastien Helleu
2015-09-12alias: fix indentation errorSébastien Helleu
2015-09-08irc: fix charset decoding in incoming private messages (closes #520)Sébastien Helleu
2015-08-31trigger: add recover to cmd_pass/msg_auth, and regain to msg_authJuan Francisco Cantero Hurtado
2015-08-25irc: remove blank line at the end of fileSébastien Helleu
2015-08-24script: add option script.scripts.download_timeoutSébastien Helleu
2015-08-24irc: fix typos in /help ban and /help quietSébastien Helleu
2015-08-24irc: add command /cap (closes #8)Sébastien Helleu
2015-08-23relay: display the arrow before client id and protocol in raw bufferSébastien Helleu
This prevents the arrow to be truncated if the option weechat.look.prefix_align_max is set to a non-zero value.
2015-08-23irc: display the arrow before server name in raw bufferSébastien Helleu
This prevents the arrow to be truncated if the option weechat.look.prefix_align_max is set to a non-zero value.
2015-08-22irc: add hex dump of messages in raw bufferSébastien Helleu
The dump of messages is displyed when the debug is enabled for irc plugin (level 2 or more), for example: /debug set irc 2
2015-08-22relay: use API function string_hex_dump() to display raw messageSébastien Helleu
2015-08-22api: add function string_hex_dump()Sébastien Helleu
2015-08-22irc: fix display of messages sent to server in raw bufferSébastien Helleu
Since the received messages are displayed without UTF-8 conversion (ie this is really the data received), it is consistent to display the message really sent to server (ie after charset conversion), instead of the UTF-8 internal message.
2015-08-22irc: fix display of invalid UTF-8 chars in raw bufferSébastien Helleu
Invalid UTF-8 chars are now displayed as hexadecimal codes, for example: "test\xE9" instead of "test?" (the real word being "testé").
2015-08-18irc: add multiple targets and -server option to /ctcp (closes #204)Simmo Saan