summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
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-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-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-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 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.
2013-12-11irc: display mask of ignore deleted with /ignore delSebastien Helleu
2013-12-11irc: add note about command /disconnect in /help connectSebastien Helleu
2013-12-08core: remove option on /unset of plugin description option ↵Sebastien Helleu
(plugins.desc.xxx) (bug #40768)
2013-12-08irc: don't return a default ban mask if option is not set or if host is not ↵Sebastien Helleu
found
2013-12-07irc: rename option irc.look.ban_mask_default to irc.network.ban_mask_defaultSebastien Helleu
2013-12-07irc: add option irc.look.ban_mask_default (bug #26571)Sebastien Helleu
2013-12-07irc: improve /help of command/command_delay/autojoin options in serversSebastien Helleu
2013-12-06irc: add option irc.network.lag_maxSebastien Helleu
2013-12-05irc: fix ignore on a host without nickSebastien Helleu
2013-12-04irc: add comments about irc color codes in messagesSebastien Helleu
2013-12-04irc: remove function irc_color_decode_for_user_entrySebastien Helleu
Since commits d03eb52d4992c46b01c47d076ae5ef5aa68be10c and 0c48b7ab8bbd4b5b2f5bb73f3e96930091fa7ead, the IRC color codes are the same in input line and messages, so the function irc_color_decode_for_user_entry is not needed any more. It was used only to decode colors when completing the command /topic (with the channel topic).
2013-12-01irc: use color code 0x1F (ctrl-_) for underlined text in input line (same ↵Sebastien Helleu
code as messages) (bug #40756)
2013-12-01irc: use color code 0x16 (ctrl-V) for reverse video in messagesSebastien Helleu
Other clients are using 0x16, and not 0x12 that was the default in WeeChat (which was able to decode both 0x12 and 0x16). Now the 0x12 is not decoded and does not make reverse video any more.
2013-12-01irc: check that string is not NULL in functions ↵Sebastien Helleu
irc_color_{decode,decode_for_user_entry,encode}
2013-12-01core: add missing access to hdata "buffer_visited"Sebastien Helleu
2013-11-30irc: use option irc.network.colors_send (instead of receive) when displaying ↵Sebastien Helleu
messages sent by commands /away, /me, /msg, /notice, /query
2013-11-30aspell: fix detection of nicks when there are non-alphanumeric chars around ↵Sebastien Helleu
and in private buffers
2013-11-30aspell: fix detection of nicks when there is nick completer at the endSebastien Helleu
2013-11-30aspell: fix detection of nicks with non-alphanumeric charsSebastien Helleu
2013-11-30irc: fix crash when setting a wrong value in server option "ssl_priorities"Sebastien Helleu
The bug was introduced by commit 2305c95db08a214dba68e771c9bbabc51ca7d055
2013-11-28python: fix load of scripts with python >= 3.3Sebastien Helleu
2013-11-26irc: suggest lower values for option irc.server.xxx.ssl_dhkey_size after SSL ↵Sebastien Helleu
error GNUTLS_E_DH_PRIME_UNACCEPTABLE
2013-11-23irc: fix memory leak when checking the value of ssl_priorities option in serversSebastien Helleu
2013-11-23irc: fix memory leak when a channel is deletedSebastien Helleu
2013-11-19guile: disable guile gmp allocator (fix crash on unload of relay plugin) ↵Pierre Carru
(bug #40628)
2013-11-18scripts: use #ifdef to check if versions are defined in signal "debug_libs"Sebastien Helleu
2013-11-18core: remove "v" before versions displayed by /debug libsSebastien Helleu
2013-11-17scripts: display lib version on signal "debug_libs"Sebastien Helleu
2013-11-17aspell: display aspell/enchant version on signal "debug_libs"Sebastien Helleu
2013-11-09core: rename option weechat.look.set_title to weechat.look.window_title ↵Sebastien Helleu
(evaluated string)
2013-11-09core: add infos "term_width" and "term_height"Sebastien Helleu
2013-11-09api: add support for C++ pluginsstfn
2013-11-09xfer: load plugin even if options can not be read in xfer.conf (with warnings)Sebastien Helleu
2013-11-09script: load plugin even if options can not be read in script.conf (with ↵Sebastien Helleu
warnings)
2013-11-09rmodifier: remove unneeded warningSebastien Helleu
2013-11-09relay: load plugin even if options can not be read in relay.conf (with warnings)Sebastien Helleu