summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2019-05-10irc: add bar items "irc_nick", "irc_host" and "irc_nick_host"Sébastien Helleu
2019-05-10irc: add variable "nick_host" in server structureSébastien Helleu
2019-05-10irc: fix parsing of MODE command when there are colons after the first mode ↵Sébastien Helleu
argument (closes #1296)
2019-04-25cmake: allow custom libdir (fix #1341)Ryan Farley
Allows for custom LIBDIR to specified with cmake builds. WEECHAT_LIBDIR is used for a custom Weechat directory, or set from LIBDIR (as LIBDIR used to be set).
2019-04-13core: bump API versionSébastien Helleu
This is required after changes on functions hook_info and info_get.
2019-04-13trigger: add hook "info_hashtable"Sébastien Helleu
2019-04-13trigger: add hook "info"Sébastien Helleu
2019-04-13irc: fix memory leak in infos "irc_server_isupport" and ↵Sébastien Helleu
"irc_server_isupport_value"
2019-04-13api: return allocated string in hook_info callback and function info_getSébastien Helleu
2019-04-06xfer: add option xfer.network.speed_limit_recv (closes #269)Sébastien Helleu
For consistency, the option xfer.network.speed_limit has been renamed to xfer.network.speed_limit_send.
2019-03-28relay: use option "delay" in call to command_options (closes #1327)Sébastien Helleu
This fixes a crash when sending "/plugin reload relay" from a relay client.
2019-03-28api: add option "delay" in hashtable options of function command_options ↵Sébastien Helleu
(issue #1327)
2019-03-28core: make "input_commands_allowed" work with /wait and /repeat commands ↵Sébastien Helleu
(issue #928)
2019-03-24core: add CMake option "ENABLE_CODE_COVERAGE" to compile with code coverage ↵Sébastien Helleu
options This option is OFF by default and should be enabled only for tests, to measure test coverage.
2019-03-21irc: fix length of string for SHA-512, SHA-256 and SHA-1 in help on ↵Sébastien Helleu
ssl_fingerprint option
2019-03-19irc: display an error with /allchan -current or /allpv -current if the ↵Sébastien Helleu
current buffer is not an irc buffer (closes #1325)
2019-03-19php: remove value for first #define in headersSébastien Helleu
2019-03-18irc: fix update of channels modes with arguments when joining a channel ↵Sébastien Helleu
(closes #1324)
2019-03-12relay: fix compilation warning when gnutls is not foundSébastien Helleu
2019-03-12irc: fix compilation warning when gnutls is not foundSébastien Helleu
2019-03-11relay: use empty value by default for option relay.weechat.commands (issue #928)Sébastien Helleu
The relay client is supposed to be safe by default, and the relay connection should be protected by the different ways (restriction on IP address, SSL, strong password, Time-based One-Time Password, local bind address and use of SSH tunnel…). So this option lets the user add extra security by allowing only some commands (whitelist), or allowing any commands except a list of given commands (blacklist).
2019-03-10relay: add forbidden commands /key and /trigger in weechat protocol (issue #928)Sébastien Helleu
2019-03-10relay: add forbidden commands /wait and /repeat in weechat protocol (issue #928)Sébastien Helleu
2019-03-10core: replace argument "keep_eol" by "flags" in function string_split ↵Sébastien Helleu
(closes #1322)
2019-03-09core: add value -1 for keep_eol in function string_strip (issue #1322)Sébastien Helleu
The value -1 means it's a standard split, but empty items are kept, and separators are not removed at beginning/end of string.
2019-03-09relay: add extra forbidden commands in weechat protocol (issue #928)Sébastien Helleu
Commands were already forbidden (option relay.weechat.commands): - /exec - /upgrade - /quit These extra commands are now forbidden by default: - /fset - /set - /unset - /plugin - /script - /python - /perl - /ruby - /lua - /tcl - /guile - /javascript - /php - /secure
2019-03-02core: use bitwise shift operator to define flag constantsSébastien Helleu
2019-02-28irc: quote argument to NICKMatthew Martin
2019-02-28script: use SHA-512 instead of MD5 for script checksumSébastien Helleu
Related to weechat/weechat.org@66a8b72ab17784e7476b142e36c0fd8c7ae9c7c3
2019-02-28relay: add option relay.weechat.commands (closes #928)Sébastien Helleu
2019-02-28api: add function command_options (issue #928)Sébastien Helleu
2019-02-27php: fix memory leak in functions using hashtable parametersSébastien Helleu
Functions fixed in PHP plugin: - string_eval_expression - string_eval_path_home - key_bind - hook_process_hashtable - hook_hsignal_send - info_get_hashtable - hdata_update
2019-02-27core: use function string_match_list for the autoload of pluginsSébastien Helleu
2019-02-27api: add function string_match_listSébastien Helleu
2019-02-26fset: fix typo in /help fset.format.option2arza
2019-02-24relay: remove obsolete commentSébastien Helleu
2019-02-22fset: fix slow refresh of fset buffer during /reload (closes #1313)Sébastien Helleu
2019-02-19core: force new API version to prevent the old aspell plugin to load (issue ↵Sébastien Helleu
#1299)
2019-02-19spell: rename "aspell" plugin to "spell" (issue #1299)Sébastien Helleu
The following things have been renamed: - file aspell.conf -> spell.conf - options aspell.* -> spell.* - bar item aspell_dict -> spell_dict - bar item and local variable aspell_suggest -> spell_suggest - info aspell_dict -> spell_dict
2019-02-18aspell: optimize stripping of nick_completer (issue #1306)Simmo Saan
2019-02-18aspell: strip trailing spaces from nick_completer (closes #1306)Simmo Saan
2019-02-04irc: fix parsing of whois messages in notifySébastien Helleu
2019-01-31irc: fix crash in parsing of IRC channel modes (issue #1296, closes #1297)Sébastien Helleu
Regression was introduced by commit b38b2abe3b397af1133951fb5326cc5cbb80807e.
2019-01-29irc: fix parsing of MODE, 341 (invite) and CHGHOST commands when there are ↵Sébastien Helleu
colons (closes #1296)
2019-01-28relay: fix crash on /upgrade when the real IP is not set (closes #1294)Sébastien Helleu
2019-01-27aspell: look for suggestions only if the misspelled word has changed (closes ↵Sébastien Helleu
#1175)
2019-01-26aspell: set a misspelled word without suggestions in local variable ↵Nils Görs
"aspell_suggest" (closes #1288)
2019-01-26doc: fix regex examples to be compatible with FreeBSDSébastien Helleu
The following special sequences are not supported in regular expressions on FreeBSD: - "\w": replaced with "[a-zA-Z0-9_]" - "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice only spaces could be a problem when we use this sequence).
2019-01-20script: add missing input actions "A" and "v" in /help scriptSébastien Helleu
2019-01-20tests: add tests on IRC color functionsSébastien Helleu
Functions tested: - irc_color_decode - irc_color_encode - irc_color_decode_ansi