summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2019-12-13api: add info "weechat_headless"Matthew Horan
2019-12-13irc: add GnuTLS >= 3.1.0 requirement to ssl_password option help (issue #115)Simmo Saan
2019-12-13irc: fix compilation with GnuTLS < 3.1.0 (issue #115)Simmo Saan
Due to this ssl_password will be partially unused with GnuTLS < 3.1.0. In that case an encrypted SSL client cert import will simply fail.
2019-11-21irc: do not automatically open a channel with name "0" (closes #1429)Sébastien Helleu
"0" is a special channel name which causes a client to leave all the channels it is presently on. Note that when option irc.look.buffer_open_before_join is on, WeeChat may still open channel buffers with an invalid channel name like "1". The server should reply something like that, displayed on the server buffer: 1: No such channel
2019-11-15irc: mention /filter command in /help irc.look.smart_filterSébastien Helleu
2019-11-12python: use more idiomatic cmake pkg-config linkingEli Schwartz
cmake documentation is absolutely atrocious, and I don't know why they mention all the wrong things to use, and the cargo cult of successfully writing a cmake build definition (copy-pasting what works from other projects) also uses all the wrong things. But it turns out it is possible to correctly link a PkgConfig target despite all that, at least, *iff* you use cmake >= 3.13. I've chosen option 2, which is to vendor in cmake >= 3.13's FindPkgConfig module in the previous commit. Using IMPORTED_TARGET GLOBAL in a pkg-config check will result in a proper linker target being created. For comparison, this is like using meson's dependency() target, except meson forces you to do this by default. The result is that the build system's internal representation of how to link something, is used instead of manually passing build flags defined in variables. This is an important distinction to make, because cmake does not have a list datatype, and instead turns lists into strings separated by ';' which are indistinguishable from, like, strings which contain ';' characters. When you pass the resulting list-which-isn't-really-a-list to link an executable/library, you either need to preprocess the variable to replace ';' with ' ' (just in case there are multiple elements) or use cmake functions which magically know to do this themselves -- or at least, I assume there are cmake functions that correctly handle so-called "lists", or there would be no need for "lists" to exist. The IMPORTED_TARGET will define a bunch of INTERFACE_* properties which do seem to do exactly this. The resulting build definition should actually, correctly, link python, thereby fixing #1398 in a better way.
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-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-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-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-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: 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-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-19script: add options "-ol" and "-il" in command /script, display "No scripts ↵Sébastien Helleu
loaded" if no scripts are loaded
2019-09-17buflist: fix extra spaces between buffers when conditions are used to hide ↵Sébastien Helleu
buffers (closes #1403) This is a regression introduced in version 2.6 by commit bf21ca072d5250b1196e62db61f3ba675ee89b52.
2019-09-15core: display an error on missing dependency in CMake (closes #916, closes #956)Sébastien Helleu
2019-08-31core: fix compilation of Python plugin on FreeBSD 12.0 (closes #1398)Sébastien Helleu
2019-08-25api: add infos "term_colors" and "term_color_pairs"Sébastien Helleu
2019-08-25ruby: remove unused variable "ruby_hide_errors"Sébastien Helleu
2019-08-24irc: fix parsing of message 346, 348 and 728 when there is a colon before ↵Sébastien Helleu
the timestamp (issue #1396) IRC Messages: - 346: invite list - 348: exception list - 728: quiet list
2019-08-24fset: add filters "h=xxx" and "he=xxx" to filter options by description ↵Sébastien Helleu
(translated or in English)
2019-08-21irc: fix parsing of message 367 (banlist) when there is a colon before the ↵iwalkalone
timestamp (closes #1396)
2019-08-20ruby: fix compilation with Ruby < 2.3Sébastien Helleu
2019-08-19ruby: fix conversion of big integers on 32bit architecture (closes #1395)Sébastien Helleu
2019-08-17buflist: use extra variables in option buflist.look.display_conditions ↵Sébastien Helleu
(closes #1393)
2019-08-17Revert "buflist: mention variables available for option ↵Sébastien Helleu
buflist.look.display_conditions in its help and in /help buflist (closes #1393)" This reverts commit 39e5b0574cff8ade50ff6ec95feda57b1c331b4e.
2019-08-17buflist: mention variables available for option ↵Sébastien Helleu
buflist.look.display_conditions in its help and in /help buflist (closes #1393)
2019-08-10api: add function list_user_data (issue #666)Andrew Potter