summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-07-14core: display a warning on startup if $TERM is not screen(-256color) under ↵Sébastien Helleu
screen/tmux The same warning is displayed with command "/debug term".
2014-07-14core: add Curl options for versions 7.29.0 to 7.37.0Sébastien Helleu
2014-07-14script: fix display of curl errorsSébastien Helleu
2014-07-14core: hide message timestamp in bare display if timestamp is disabled in ↵Sébastien Helleu
buffer (closes #129)
2014-07-14aspell: rename variable "utf8_char_int" to "code_point"Sébastien Helleu
2014-07-12irc: display locally away status changes in private buffers (in addition to ↵Sébastien Helleu
channels) (closes #117)
2014-07-12python: fix read of return value for callbacks returning an integer in ↵Sébastien Helleu
Python 2.x (closes #125)
2014-07-12core: fix evaluation of expressions with regex condition (closes #63)Sébastien Helleu
The regex itself is not evaluated any more (so parentheses are kept). Before the fix: >> abcd =~ (?-i)^abc == [0] >> (abcd) =~ \(abcd\) == [0] After the fix: >> abcd =~ (?-i)^abc == [1] >> (abcd) =~ \(abcd\) == [1]
2014-07-12core: add option "-mask" in command /unset (closes #112)Sébastien Helleu
2014-07-12core: add option weechat.color.status_nicklist_count (closes #109, closes #110)Sébastien Helleu
2014-07-05core: fix socks5 proxy for curl downloads (closes #119)Sébastien Helleu
2014-07-05core: display curl error after a failed downloadSébastien Helleu
2014-07-05core: return only -1, 0 or 1 in string comparison functionsSébastien Helleu
2014-07-05core: check that timeval arguments are not NULL in timeval functionsSébastien Helleu
2014-07-05core: check that regex is not NULL in function string_regcompSébastien Helleu
2014-07-05core: check that regex is not NULL in function string_regex_flagsSébastien Helleu
2014-07-05core: add note about result that must be freed in function string_mask_to_regexSébastien Helleu
2014-07-05core: check that "chars" argument is not NULL in function string_stripSébastien Helleu
2014-07-05core: check that string is not NULL in function string_convert_escaped_charsSébastien Helleu
2014-07-05core: add comment with return value of function string_strcasestrSébastien Helleu
2014-07-04core: check that string is not NULL in function string_strndupSébastien Helleu
2014-07-01core: remove "www" in weechat.org URLsSébastien Helleu
2014-06-29core: add note about semicolon to separate commands in /help evalSébastien Helleu
2014-06-28core: update message displayed when passphrase is not set on /secure bufferSébastien Helleu
2014-06-28core: do not display content of passphrase on /secure bufferSébastien Helleu
2014-06-28core: fix completion of plugins commands when beginning of command is givenSébastien Helleu
2014-06-28core: fix completion of environment variable value when beginning of value ↵Sébastien Helleu
is given
2014-06-27core: add missing declaration of "environ" (fix compilation on Mac OS X)Sébastien Helleu
2014-06-27core: remove extra spaces in /help setSébastien Helleu
2014-06-27core: add option "env" in command /setSébastien Helleu
2014-06-19irc: fix typo in a messageSébastien Helleu
2014-06-14irc: add value "+" for option irc.look.smart_filter_mode to use modes from ↵Sébastien Helleu
server prefixes (closes #90) The new default value of option irc.look.smart_filter_mode is now "+".
2014-06-11core: set default value "merged" for option weechat.look.hotlist_removeSébastien Helleu
2014-06-10core: fix potential memory leak with infolists not freed in plugins (debian ↵Sébastien Helleu
#751108) The memory leak should not happen if infolists are properly freed by plugins, and it happened only on unload of plugins (or exit).
2014-06-08irc: fix help of commands kick/kickban/remove (closes #102)Sébastien Helleu
2014-06-07core: fix color display of last color number + 1 (closes #101)Sébastien Helleu
2014-06-07core: fix first comment line in weechat.cSébastien Helleu
2014-06-06core: add option weechat.look.hotlist_remove (closes #99)Sébastien Helleu
2014-06-03irc: fix commentSébastien Helleu
2014-05-29relay: don't send signals "buffer_clear" and "buffer_line_added" for relay ↵Sébastien Helleu
raw/list buffers to clients (weechat protocol)
2014-05-28irc: fix extract of channel in parser for JOIN/PART messages when there is a ↵Sébastien Helleu
colon before the channel name (closes #83) The problem was only affecting scripts or triggers using the parser. The irc plugin does not use the "channel" variable built by the parser (when parsing JOIN/PART messages).
2014-05-26irc: add command /remove (closes #91)Sébastien Helleu
2014-05-24relay: fix crash when closing relay buffers (closes #57, closes #78)Sébastien Helleu
A flag "closing" has been added in buffers. It is set to 1 when the buffer is closing, and then no more printf is allowed in the buffer (a message printed on relay buffer was causing a crash when it is closed).
2014-05-24relay: check pointers received in hdata command to prevent crashes with bad ↵Sébastien Helleu
pointers (WeeChat protocol)
2014-05-24api: add argument "flags" in function hdata_new_listSébastien Helleu
2014-05-24relay: remove warning on /reload of relay.conf when ports are definedSébastien Helleu
2014-05-23irc: fix refresh of bar item "irc_channel" after join/part/kick/kill (issue #86)Sébastien Helleu
2014-05-22core: fix reset of attributes between nick colors in /color bufferSébastien Helleu
2014-05-21irc: fix duplicate sender name in display of notice (closes #87)Sébastien Helleu
2014-05-21irc: fix refresh of buffer name in bar items after join/part/kick/kill ↵Sébastien Helleu
(closes #86)