summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-11-10Haiku: link libnetwork, not libpthread.Jerome Duval
2019-11-08irc: set option irc.look.display_pv_warning_address to off by default (issue ↵Sébastien Helleu
#892) This is because the bitlbee server causes the warning to be displayed when it is not expected (the address of remote nick changes multiple times on login).
2019-11-03irc: fix typo and examples in /help serverSébastien Helleu
2019-11-03irc: set raw filter to "*" if local variable "filter" was not set after ↵Sébastien Helleu
/upgrade on raw buffer
2019-11-03irc: restore irc raw filter after /upgrade (issue #1000)Sébastien Helleu
2019-11-03irc: add filters on raw buffer (closes #1000)Sébastien Helleu
2019-10-30fset: add comment on filter by evaluated expressionSébastien Helleu
2019-10-30fset: fix filter variable used to match filter stringSébastien Helleu
2019-10-23plugins: sort options added in configuration sectionsSébastien Helleu
2019-10-23core: optimize search of options in configuration sectionsSébastien Helleu
Since options are sorted in sections, it is faster to search from the last option to the first one. For configuration files with many options in a single section (like plugins.conf), the load of configuration file is about 2 to 3x faster.
2019-10-14core: fix scrolling up in bare mode when switched to bare mode at the top of ↵Sébastien Helleu
the buffer (closes #899, issue #978)
2019-10-12python: send "bytes" instead of "str" to callbacks in Python 3 when the ↵Sébastien Helleu
string is not UTF-8 valid (issue #1220, closes #1389)
2019-10-12core: add reverse of string for screen in evaluation of expressions with ↵Sébastien Helleu
"revscr:"
2019-10-11irc: add option irc.look.display_pv_warning_address (closes #892)Sébastien Helleu
If the address of remote nick changes in a private buffer, a warning is displayed.
2019-10-09irc: add server option ssl_password for SSL certificate private key password ↵Simmo Saan
(closes #115)
2019-10-09irc: fix compiler warning on uninitialized variableSébastien Helleu
2019-10-06core: ensure completion_item is not NULL before using itSébastien Helleu
2019-10-06core: fix crash in completion of filenamesSébastien Helleu
2019-10-06core: fix long linesSébastien Helleu
2019-10-06Merge remote-tracking branch 'origin/pr/630'Sébastien Helleu
2019-10-06core: fix line too long, add comment on argument "with_suffix"Sébastien Helleu
2019-10-06core: count suffix in alignment computed for context infoSébastien Helleu
2019-10-06Merge remote-tracking branch 'origin/pr/619'Sébastien Helleu
2019-10-06logger: fix write in log file if it has been deleted or renamed (closes #123)Sébastien Helleu
2019-10-06irc: use path from option xfer.file.upload_path to complete filename in ↵Sébastien Helleu
command "/dcc send" (closes #60)
2019-10-06core: add optional default path (evaluated) in completion "filename" (issue #60)Sébastien Helleu
2019-10-06core: add support of modifiers in evaluation of expressions with ↵Sébastien Helleu
"modifier:name,data,string" (issue #60)
2019-10-06api: add modifier "eval_path_home" (issue #60)Sébastien Helleu
2019-10-06core: fix comments on modifier callback functions in plugin APISébastien Helleu
2019-10-05xfer: add option xfer.file.download_temporary_suffix with default value ↵Sébastien Helleu
".part" (closes #1237)
2019-10-05xfer: fix memory leak when a xfer is freed and when the plugin is unloadedSébastien Helleu
2019-10-04irc: fix typo in /help linksSébastien Helleu
2019-10-02logger: add option logger.file.color_lines (closes #528, closes #621)Sébastien Helleu
2019-10-01api: add modifier "color_encode_ansi" (issue #528)Sébastien Helleu
2019-10-01core: add function to convert WeeChat colors to ANSI colors (issue #528)Sébastien Helleu
2019-10-01core: add support of reverse video in ANSI color codesSébastien Helleu
2019-10-01core: fix typos in commentsSébastien Helleu
2019-10-01core: fix style in CMake filesSébastien Helleu
2019-09-27irc: add "user" in output of irc_message_parse (closes #136)Sébastien Helleu
2019-09-26logger: move logger backlog functions to logger-backlog.cSébastien Helleu
2019-09-24core: add power operator "**" in calc expressions (issue #997)Sébastien Helleu
2019-09-24core: fix wrong results with the unary minus in calc expressionsSébastien Helleu
2019-09-23irc: add separate options for kick/kill message coloring (closes #683)Simmo Saan
Add new options irc.color.message_kick and irc.color.reason_kick to be used for coloring KICK and KILL messages.
2019-09-22irc: remove option irc.network.channel_encode, add server option ↵Sébastien Helleu
"charset_message" (closes #832) This new option controls which part of the IRC message is decoded/encoded to the target charset, and the new default behavior is to decode/encode the whole IRC message (behavior in WeeChat >= 1.3 was to decode/encode only the text by default).
2019-09-21guile: disable "/guile eval" as this does not (yet) work with Guile >= 2.2 ↵Sébastien Helleu
(issue #1098)
2019-09-21guile: add support of Guile 2.2 (issue #1098)Sébastien Helleu
2019-09-21core: ignore color codes in ${length:xxx} and ${lengthscr:xxx}Sébastien Helleu
2019-09-21core: add "length:xxx" and "lengthscr:xxx" in evaluation of expressionsSébastien Helleu
2019-09-20core: add calculation of expression in evaluation of expressions with ↵Sébastien Helleu
"calc:..." (issue #997)
2019-09-19core: remove extra spaces in arguments of /help uptime and /help versionSébastien Helleu