summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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-10irc: add support of SNI in SSL connection to IRC server (closes #620)Sébastien Helleu
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-11-12core: add "tmux" and "tmux-256color" in supported $TERM values (closes #519)Sébastien Helleu
2015-11-07irc: disallow /quiet, /unquiet on servers without supportSimmo Saan
2015-11-07irc: make /ban, /unban, /quiet, /unquiet send multiple at once (closes #15)Simmo Saan
irc: make /quiet, /unquiet honor ban_mask_default (closes #577)
2015-11-04core: fix example in /help keySébastien Helleu
2015-11-03irc: add inclusive behavior to /allchan, /allpv, /allservSimmo Saan
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-10-03core: add option weechat.look.paste_auto_add_newline (closes #543)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-09core: display a more explicit error when a filter fails to be added (closes ↵Sébastien Helleu
#522)
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-24api: fix handle of invalid escape in function string_convert_escaped_chars()Sébastien Helleu
And a new test is now checking that "\" returns "".
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-23core: fix truncated messages after a word with a length of zero on screen ↵Sébastien Helleu
(bug #40985, issue #502)
2015-08-22trigger: add support for one-time triggers (closes #399)Simmo Saan
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-18core: fix /uptime output for 0 daysSimmo Saan
2015-08-18core: add extra_vars evaluation option to eval_expressionSimmo Saan
2015-08-18irc: add multiple targets and -server option to /ctcp (closes #204)Simmo Saan
2015-08-18api: add argument "length" in function utf8_is_valid()Sébastien Helleu
2015-08-15irc: update help on option irc.network.channel_encode (issue #218, issue #482)Sébastien Helleu
Remove mention of WeeChat <= 1.2 since the behavior is not exactly the same as old versions (when the option is enabled): only the channel/message are decoded/encoded and not the nick/host.
2015-08-14irc: add option irc.network.channel_encode (issue #218, issue #482)Sébastien Helleu
This is a workaround (disabled by default) to join and chat on ISO encoded channels (or another charset different from UTF-8). This option may be removed in future if a better solution is implemented.