summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-01-21irc: check that server option ssl_fingerprint has exactly 40 hexadecimal ↵Sebastien Helleu
digits (when set to non-empty value)
2014-01-21irc: add server option "ssl_fingerprint" (task #12724)Maarten de Vries
2014-01-20irc: add comment with return value for function irc_server_gnutls_callbackSebastien Helleu
2014-01-20irc: display PONG answer when resulting from manual /ping commandSebastien Helleu
2014-01-19core: add command /printSebastien Helleu
2014-01-18core: fix typo in arguments description of command /muteSebastien Helleu
2014-01-18core: reformat hook_command argumentsSebastien Helleu
2014-01-18core: update some function commentsSebastien Helleu
2014-01-16core: set max value for option weechat.look.hotlist_names_count to ↵Sebastien Helleu
GUI_BUFFERS_MAX (10000)
2014-01-15core: add option weechat.look.tab_widthSebastien Helleu
2014-01-14core: add completion "plugins_installed"Sebastien Helleu
2014-01-13core: fix typo in /help weechat.look.highlight_regexSebastien Helleu
2014-01-11api: add stdin options in functions hook_process_hashtable and hook_set ↵Sebastien Helleu
(task #10847, task #13031) The function hook_set has been added in script API.
2014-01-11irc: fix time parsed in tag of messages on CygwinSebastien Helleu
2014-01-10xfer: add gcrypt library for link of pluginSebastien Helleu
2014-01-10irc: add missing include of netinet/in.h (fix compilation error on FreeBSD)Sebastien Helleu
2014-01-09core: optimize xxx_valid() functions: return immediately if pointer is NULLSebastien Helleu
2014-01-09core: add "POSIX extended" in description of options/commands/functions ↵Sebastien Helleu
using regular expressions
2014-01-09relay: fix memory leak on unload of relay pluginSebastien Helleu
2014-01-09xfer: add support of IPv6 for DCC chat/file (patch #7992)Andrew Potter
2014-01-08core: fix crash in /eval when config option has a NULL valueSebastien Helleu
2014-01-07core: fix typo in commentSebastien Helleu
2014-01-06ruby: remove evil tabSebastien Helleu
2014-01-06xfer: use same infolist for hook and signals (patch #7974)Andrew Potter
2014-01-06core: add missing type "shared_string" in hdata_type_string[]Sebastien Helleu
2014-01-06xfer: add option xfer.file.auto_check_crc32 (patch #7963)Sebastien Helleu
Thanks to Andrew Potter for the patch.
2014-01-06ruby: fix ruby init with ruby >= 2.0 (bug #41115)Sebastien Helleu
2014-01-05core: fix crash with hdata_update on shared strings, add hdata type ↵Sebastien Helleu
"shared_string" (bug #41104)
2014-01-05xfer: replace call to sprintf() with snprintf()Sebastien Helleu
2014-01-05core: replace calls to sprintf() with snprintf()Sebastien Helleu
2014-01-05core: fix compilation warnings on OpenBSDSebastien Helleu
On OpenBSD, the variable "tv_sec" in struct timeval has type "long" (type "time_t" under Linux). So we need to copy this value to a temporary variable before using its pointer with function localtime().
2014-01-02xfer: add "network" prefix for (dis)connection messages in xfer chat bufferSebastien Helleu
2014-01-02irc: use statusmsg from message 005 to check prefix char in status ↵Sebastien Helleu
notices/messages
2014-01-02irc: add comments for functions about modes/prefix/chanmodesSebastien Helleu
2014-01-01core: update copyright datesSebastien Helleu
2013-12-31core: fix unneeded shift of buffer numbers when a buffer with layout is ↵Sebastien Helleu
created and merged
2013-12-30core: rename option "add" to "store" in command /layoutSebastien Helleu
2013-12-24irc: fix typo in /help irc.look.highlight_{channel|pv|server}Sebastien Helleu
2013-12-23core: replace darkgray color as default value of optionsSebastien Helleu
New default value is now used for these options: - weechat.color.chat_inactive_buffer: "default" - weechat.color.chat_inactive_window: "default" - weechat.color.chat_nick_offline: "default" - weechat.color.chat_nick_offline_highlight_bg: "blue" - weechat.color.chat_prefix_buffer_inactive_buffer: "default" - irc.color.topic_old: "default" - logger.color.backlog_end: "default" - logger.color.backlog_line: "default" - script.color.text_delimiters: "default"
2013-12-22relay: use syntax \xNN instead of \NN for control chars in raw bufferSebastien Helleu
2013-12-22irc: use syntax \xNN instead of \NN for control chars in raw bufferSebastien Helleu
2013-12-21charset: replace call to strcasecmp by weechat_strcasecmpSebastien Helleu
This fixes a compilation problem on Illumos.
2013-12-18core: add support of UTF-8 chars in horizontal/vertical separatorsSebastien Helleu
2013-12-18core: add option weechat.look.window_auto_zoom, disable automatic zoom by ↵Sebastien Helleu
default when terminal becomes too small for windows
2013-12-17irc: remove display of channel in channel notices, display "PvNotice" for ↵Sebastien Helleu
channel welcome notices
2013-12-16irc: add option irc.look.smart_filter_mode (task #12499)Sebastien Helleu
2013-12-15core: add support of logical and/or for argument "tags" in function hook_printSebastien Helleu
2013-12-15core: fix use of NULL pointer (in case of malloc error) when creating a new ↵Sebastien Helleu
filter
2013-12-15core: fix some translation of "tags" in frenchSebastien Helleu
2013-12-15core: add buffer property "highlight_tags_restrict", rename option ↵Sebastien Helleu
irc.look.highlight_tags to irc.look.highlight_tags_restrict The buffer property "highlight_tags" is renamed to "highlight_tags_restrict". New behavior for buffer property "highlight_tags": force highlight on tags. Option irc.look.highlight_tags is renamed to irc.look.highlight_tags_restrict.