summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
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
2013-11-09logger: load plugin even if options can not be read in logger.conf (with ↵Sebastien Helleu
warnings)
2013-11-09irc: load plugin even if options can not be read in irc.conf (with warnings)Sebastien Helleu
2013-11-09charset: remove unneeded warning, do not load plugin when options can not be ↵Sebastien Helleu
initialized
2013-11-09aspell: load plugin even if options can not be read in aspell.conf (with ↵Sebastien Helleu
warnings)
2013-11-09alias: remove unneeded warning, do not load plugin when options can not be ↵Sebastien Helleu
initialized
2013-11-07irc: fix groups in channel nicklist when reconnecting to a server that ↵Sebastien Helleu
supports more nick prefixes than the previously connected server
2013-11-02core: add support of italic text (requires ncurses >= 5.9 patch 20130831)Sebastien Helleu
2013-10-27irc: fix auto-switch to channel buffer when doing /join channel (without "#")Sebastien Helleu
2013-10-24lua: fix crash on calls to callbacks during load of scriptSebastien Helleu
2013-10-08irc: add option irc.look.notice_welcome_tagsSebastien Helleu
2013-10-08irc: add server option "default_msg_kick" to customize default kick/kickban ↵Sebastien Helleu
message (task #12777) (patch from Nils Görs)
2013-10-06irc: improve help of server option "autojoin"Sebastien Helleu
2013-10-05core: move the "-no-undefined" from LDFLAGS in configure.ac to Makefile.am ↵Sebastien Helleu
in plugins This "-no-undefined" was causing an error when detecting "ld" lib on Cygwin.
2013-10-05relay: fix decoding of websocket frames when there are multiple frames in a ↵Sebastien Helleu
single message received (only the first one was decoded)
2013-10-05irc: use "private" notify for welcome notices displayed in channel (like ↵Sebastien Helleu
when they are displayed in server buffer)
2013-10-05irc: remove target of notice (self nick) in the display of channel welcome ↵Sebastien Helleu
notice (fix highlight problem)
2013-10-04irc: display target of notice when it is displayed in channelSebastien Helleu
With the new option irc.look.notice_welcome_redirect, a private notice could have a channel at beginning of message (with format "[#channel]") and then be displayed on the channel, without difference with a real channel notice (received by all nicks in channel). For example with these commands: /notice nick2 [#channel] private notice /notice #channel notice for whole channel Old display was (on receiver side, in #channel): -- | Notice(nick1): private notice -- | Notice(nick1): notice for whole channel New display is: -- | Notice(nick1) -> nick2: private notice -- | Notice(nick1) -> #channel: notice for whole channel
2013-10-03irc: fix reconnection to server using IPv6 (bug #38819, bug #40166)Sebastien Helleu
2013-09-20aspell: fix detection of word start/end when there are apostrophes or minus ↵Sebastien Helleu
chars before/after word (thanks to Nils Görs)
2013-09-20irc: add extra info in /help irc.look.smart_filter_delaySebastien Helleu
2013-09-19irc: add note about evaluated content of "password" server optionSebastien Helleu
2013-09-19relay: add support of secured data in option relay.network.password ↵Sebastien Helleu
(evaluate content) (patch from Nils Görs)