summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2015-09-08irc: fix charset decoding in incoming private messages (closes #520)Sébastien Helleu
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-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.
2015-08-13python: fix cppcheck error on variable "python2_bin" (closes #486)Sébastien Helleu
This fixes only a wrong error report from cppcheck, there was no problem in code with the variable "python2_bin".
2015-08-13api: add missing function infolist_search_var() in script API (issue #484)Sébastien Helleu
2015-08-13api: add missing function hook_completion_get_string() in script API (issue ↵Sébastien Helleu
#484)
2015-08-12javascript: remove debug prints in log fileSébastien Helleu
2015-08-08Merge pull request #476 from sim642/alias-exampleSébastien Helleu
core: update examples of alias add commands
2015-08-07core: update translationsSébastien Helleu
2015-08-07Merge remote-tracking branch 'origin/pr/475'Sébastien Helleu
2015-08-06core: update examples of alias add commandsSimmo Saan
2015-08-05irc: fix update of lag item when the server lag changesSébastien Helleu
2015-08-04irc: remove lag item when a lag is displayed and new lag computed is exactly ↵Sébastien Helleu
0 milliseconds
2015-07-20irc: add separate color option for current topic in channel bufferSimmo Saan
2015-07-20alias: add options "add", "addcompletion" and "del" in command /alias, ↵Sébastien Helleu
remove command /unalias (closes #458)
2015-07-19xfer: fix typo in a commentSébastien Helleu
2015-07-19aspell: fix typo in a commentSébastien Helleu
2015-07-18xfer: fix crash if the DCC file socket number is too high (issue #465)Sébastien Helleu
2015-07-17irc: fix format of commentSébastien Helleu
2015-07-10irc: evaluate content of server option "nicks"Sébastien Helleu
2015-07-09irc: do not allow command /query with a channel name (closes #459)Sébastien Helleu
2015-07-04logger: fix type of value returned by function logger_tail_last_eolSébastien Helleu
2015-07-04irc: fix type of value returned by function irc_buffer_build_nameSébastien Helleu
2015-07-04api: fix type of value returned by function util_get_time_stringSébastien Helleu
2015-07-04api: fix type of value returned by functions utf8_prev_char, utf8_next_char ↵Sébastien Helleu
and utf8_add_offset
2015-07-04core: add missing comments before functions when the result must be freed ↵Sébastien Helleu
after use
2015-07-04alias: remove unused function alias_get_final_command()Sébastien Helleu
2015-07-03api: fix type of value returned by function strcasestrSébastien Helleu
2015-06-27irc: decode/encode only text in IRC messages and not the headers (bug ↵Sébastien Helleu
#29886, closes #218, closes #451)
2015-06-27xfer: evaluate content of options xfer.file.download_path and ↵Sébastien Helleu
xfer.file.upload_path (issue #388)
2015-06-26script: call function string_eval_path_home() to evaluate scripts pathSébastien Helleu
2015-06-25logger: call function string_eval_path_home() to evaluate logger file pathSébastien Helleu
2015-06-24api: add function string_eval_path_home()Sébastien Helleu
2015-06-21script: rename option script.scripts.dir to script.scripts.path (issue #388)Sébastien Helleu
2015-06-20logger: evaluate content of option logger.file.path (issue #388)Sébastien Helleu
2015-06-19script: evaluate content of option script.scripts.dir (issue #388)Sébastien Helleu
2015-06-16irc: fix crash with commands /allchan, /allpv and /allserv if the executed ↵Sébastien Helleu
command closes buffers (closes #445)
2015-06-15irc: do not open auto-joined channels buffers when option "-nojoin" is used ↵Sébastien Helleu
in command /connect Even if the option irc.look.buffer_open_before_autojoin is on.