Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-10 | irc: add bar items "irc_nick", "irc_host" and "irc_nick_host" | Sébastien Helleu | |
2019-05-10 | irc: add variable "nick_host" in server structure | Sébastien Helleu | |
2019-05-10 | irc: fix parsing of MODE command when there are colons after the first mode ↵ | Sébastien Helleu | |
argument (closes #1296) | |||
2019-04-25 | cmake: 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-14 | core: use getopt to parse command line arguments | Sébastien Helleu | |
Multiple options can now be given in a single flag, for example: weechat -ast Following formats were allowed for command line argument with a value: weechat -d /tmp/weechat weechat --dir /tmp/weechat Now these extra formats are supported as well: weechat -d/tmp/weechat weechat --dir=/tmp/weechat | |||
2019-04-13 | core: bump API version | Sébastien Helleu | |
This is required after changes on functions hook_info and info_get. | |||
2019-04-13 | core: merge functions gui_line_prefix_is_same_nick_as_{previous|next} (issue ↵ | Sébastien Helleu | |
#931) | |||
2019-04-13 | core: fix /help weechat.look.buffer_time_same | Sébastien Helleu | |
2019-04-13 | core: add option weechat.look.prefix_same_nick_middle (closes #930, closes #931) | Adrian Bjugård | |
2019-04-13 | core: add option weechat.look.buffer_time_same (closes #1127) | Simmo Saan | |
2019-04-13 | trigger: add hook "info_hashtable" | Sébastien Helleu | |
2019-04-13 | trigger: add hook "info" | Sébastien Helleu | |
2019-04-13 | irc: fix memory leak in infos "irc_server_isupport" and ↵ | Sébastien Helleu | |
"irc_server_isupport_value" | |||
2019-04-13 | api: return allocated string in hook_info callback and function info_get | Sébastien Helleu | |
2019-04-06 | xfer: 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-04-01 | tests: add tests on function util_signal_search | Sébastien Helleu | |
2019-03-31 | core: add documentation on command line debug options (in --help and man pages) | Sébastien Helleu | |
Command line debug options are now documented: * --no-dlclose: do not call the function dlclose after plugins are unloaded * --no-gnutls: do not call the init and deinit functions of GnuTLS library * --no-gcrypt: do not call the init and deinit functions of Gcrypt library These options must not be used in production, they're for debug only and can be used with tools like Valgrind or electric-fence. | |||
2019-03-29 | core: don't execute command scheduled by /repeat if the buffer does not ↵ | Sébastien Helleu | |
exist any more | |||
2019-03-29 | core: don't execute command scheduled by /wait if the buffer does not exist ↵ | Sébastien Helleu | |
any more | |||
2019-03-29 | core: use seconds by default in /repeat interval, allow unit for the interval | Sébastien Helleu | |
2019-03-29 | core: move parsing of /wait delay in a separate function, with unit tests | Sébastien Helleu | |
2019-03-29 | core: allow text in addition to a command in command /repeat | Sébastien Helleu | |
2019-03-28 | relay: 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-28 | api: add option "delay" in hashtable options of function command_options ↵ | Sébastien Helleu | |
(issue #1327) | |||
2019-03-28 | core: make "input_commands_allowed" work with /wait and /repeat commands ↵ | Sébastien Helleu | |
(issue #928) | |||
2019-03-24 | core: 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-21 | irc: fix length of string for SHA-512, SHA-256 and SHA-1 in help on ↵ | Sébastien Helleu | |
ssl_fingerprint option | |||
2019-03-19 | irc: 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-19 | php: remove value for first #define in headers | Sébastien Helleu | |
2019-03-18 | irc: fix update of channels modes with arguments when joining a channel ↵ | Sébastien Helleu | |
(closes #1324) | |||
2019-03-17 | core: fix typo: Weechat -> WeeChat | Sébastien Helleu | |
2019-03-12 | relay: fix compilation warning when gnutls is not found | Sébastien Helleu | |
2019-03-12 | irc: fix compilation warning when gnutls is not found | Sébastien Helleu | |
2019-03-12 | core: set max length to 4096 for /secure passphrase (closes #1323) | Sébastien Helleu | |
2019-03-11 | core: improve message displayed when a command is not allowed (issue #928) | Sébastien Helleu | |
The whole command with arguments and the full buffer name are now displayed in the warning message (in debug mode only). | |||
2019-03-11 | relay: 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-10 | relay: add forbidden commands /key and /trigger in weechat protocol (issue #928) | Sébastien Helleu | |
2019-03-10 | relay: add forbidden commands /wait and /repeat in weechat protocol (issue #928) | Sébastien Helleu | |
2019-03-10 | core: replace argument "keep_eol" by "flags" in function string_split ↵ | Sébastien Helleu | |
(closes #1322) | |||
2019-03-09 | core: 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-09 | relay: 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-02 | core: use bitwise shift operator to define flag constants | Sébastien Helleu | |
2019-02-28 | irc: quote argument to NICK | Matthew Martin | |
2019-02-28 | script: use SHA-512 instead of MD5 for script checksum | Sébastien Helleu | |
Related to weechat/weechat.org@66a8b72ab17784e7476b142e36c0fd8c7ae9c7c3 | |||
2019-02-28 | relay: add option relay.weechat.commands (closes #928) | Sébastien Helleu | |
2019-02-28 | api: add function command_options (issue #928) | Sébastien Helleu | |
2019-02-27 | php: fix memory leak in functions using hashtable parameters | Sé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-27 | core: remove function gui_buffer_match_list_split, use function ↵ | Sébastien Helleu | |
string_match_list | |||
2019-02-27 | core: use function string_match_list for the autoload of plugins | Sébastien Helleu | |
2019-02-27 | api: add function string_match_list | Sébastien Helleu | |