Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-01 | core: add command /toggle | Sébastien Helleu | |
2021-09-27 | core: check that option is not NULL in function ↵ | Sébastien Helleu | |
config_file_option_value_to_string | |||
2021-09-27 | core: fix search of option when the section is not given | Sébastien Helleu | |
2021-09-27 | core: check that option_name is not NULL in config file functions | Sébastien Helleu | |
2021-09-20 | core: add creation of user variables in evaluated expressions with ↵ | Sébastien Helleu | |
${define:name,value} | |||
2021-09-10 | core: remove empty line displayed in output of /plugin list <name> | Sébastien Helleu | |
2021-09-09 | core: add options "-o", "-ol", "-i" and "-il" in command "/plugin list" | Sébastien Helleu | |
2021-09-06 | core: fix indentation in examples of /help eval | Sébastien Helleu | |
2021-09-06 | api: add split of string and shell arguments in evaluation of expressions | Sébastien Helleu | |
Split of string: ${split:number,separators,flags,xxx} Split of shell arguments: ${split_shell:number,xxx} | |||
2021-08-31 | core: add options in command /input and new keys to remove/restore buffers ↵ | Sébastien Helleu | |
in hotlist New options in command /input: - hotlist_remove_buffer - hotlist_restore_buffer - hotlist_restore_all New keys: - alt+h, alt+c: clear the whole hotlist (former key: alt+h) - alt+h, alt+m: mark the current buffer as read by removing it from the hotlist - alt+h, alt+r: restore latest hotlist removed in the current buffer - alt+h, alt+shift+R: restore latest hotlist removed in all buffers | |||
2021-08-29 | api: add "${re:repl_index}" to get the index of replacement in function ↵ | Sébastien Helleu | |
string_eval_expression | |||
2021-08-03 | api: add random integer number in evaluation of expressions with ↵ | Sébastien Helleu | |
"random:min,max" | |||
2021-07-04 | typing: add typing plugin | Sébastien Helleu | |
2021-07-03 | core: fix number of bytes read in function dir_file_copy | Sébastien Helleu | |
2021-07-03 | api: add function file_copy (issue #1667) | Sébastien Helleu | |
2021-06-27 | core: add note about buffers that are not opened in /help layout | Sébastien Helleu | |
2021-06-26 | api: remember insertion order in hashtables | Sébastien Helleu | |
2021-06-23 | core: fix use of uninitialized hash when call to weecrypto_hmac fails | Sébastien Helleu | |
2021-06-22 | core: fix function string_match with joker in the string if multiple words ↵ | Sébastien Helleu | |
matched in input string Before fix: string_match("script.color.text_description", "*script*color*", 0) => 0 After fix: string_match("script.color.text_description", "*script*color*", 0) => 1 | |||
2021-06-17 | core: add option "certs" in command /debug | Sébastien Helleu | |
2021-06-16 | core: fix build on macOS (closes #1662) | Sébastien Helleu | |
2021-06-01 | api: add function crypto_hmac (issue #1628) | Sébastien Helleu | |
2021-05-29 | core, irc, script: fix typos | Sébastien Helleu | |
2021-05-25 | core: replace freenode by libera in command examples | Sébastien Helleu | |
2021-05-25 | core, buflist, irc, relay: replace freenode by libera in comments | Sébastien Helleu | |
2021-05-22 | core: split signal command before evaluating it (issue #1643) | Sébastien Helleu | |
2021-05-22 | core: split startup command before evaluating it (issue #1643) | Sébastien Helleu | |
2021-05-21 | core: fix tests when NLS is disabled | Sébastien Helleu | |
2021-05-21 | core: fix build error if ENABLE_NLS is OFF | Giuseppe Bilotta | |
wee-eval.c calls gettext directly, but gettext is not a function if ENABLE_NLS is off. Fix by defining a gettext macro (that expands to its first argument) if NLS support is disabled. | |||
2021-05-16 | core: set server name when connecting to server with TLS (SNI extension) ↵ | Sébastien Helleu | |
only if it's not an IPV4/IPv6 (closes #1635) | |||
2021-05-16 | api: add translated string in evaluation of expressions with "translate:xxx" ↵ | Sébastien Helleu | |
(issue #1622) | |||
2021-05-12 | core: improve options to load GnuTLS system/user CAs (closes #972) | Sébastien Helleu | |
Changes: * new option: weechat.network.gnutls_ca_system * option weechat.network.gnutls_ca_file renamed to weechat.network.gnutls_ca_user * reload certificates when options are changed * remove build option CA_FILE | |||
2021-05-11 | core: update translations (issue #1285) | Sébastien Helleu | |
2021-05-11 | doc: add XDG directories support in docs (issue #1285) | Sébastien Helleu | |
2021-05-11 | core: change default value of option weechat.plugin.path to ↵ | Sébastien Helleu | |
"${weechat_data_dir}/plugins" (issue #1285) | |||
2021-05-11 | core: split WeeChat home in 4 directories, use XDG directories by default ↵ | Sébastien Helleu | |
(issue #1285) The 4 directories (which can be the same): - config: configuration files, certificates - data: log/upgrade files, local plugins, scripts, xfer files - cache: script repository, scripts downloaded (temporary location) - runtime: FIFO pipe, relay UNIX sockets | |||
2021-05-11 | core: move home directory functions from weechat.c to wee-dir.c (issue #1285) | Sébastien Helleu | |
2021-05-11 | core: move directory/file functions from wee-util.c to wee-dir.c (issue #1285) | Sébastien Helleu | |
2021-05-11 | core: set WeeChat home to empty string by default in CMake and autotools ↵ | Sébastien Helleu | |
(issue #1285) | |||
2021-05-11 | core: evaluate option weechat.plugin.path (issue #1285) | Sébastien Helleu | |
2021-05-11 | core: evaluate option weechat.network.gnutls_ca_file (issue #1285) | Sébastien Helleu | |
2021-05-08 | core: Use mallinfo2() when available | Andrew Potter | |
mallinfo() is deprecated in glibc 2.33 | |||
2021-05-04 | core: display a warning when the file with certificate authorities is not ↵ | Sébastien Helleu | |
found (option weechat.network.gnutls_ca_file) | |||
2021-04-13 | Revert "core: add option "-save" in command /upgrade (closes #1630)" | Sébastien Helleu | |
This reverts commit 1df1903d230c4f8dbd0876b8bbc3454aa1af389c. This is not so easy to implement: it requires saving state of plugins, and plugins like irc can not save the connected state (except in a real upgrade case where the sockets are still valid after exec of the new binary). | |||
2021-04-12 | core: add option "-save" in command /upgrade (closes #1630) | Sébastien Helleu | |
2021-04-04 | core: evaluate left/right part of comparison after split on the comparison ↵ | Sébastien Helleu | |
operator in ${if:xxx} (closes #1627) To force evaluation of the expression before doing the comparison (less safe), the "${eval_cond:xxx}" can be used. With the old behavior we had: >> ${if:a==b} == [0] >> ${if:${raw:a==b}} == [0] >> ${if:${eval_cond:${raw:a==b}}} == [0] And with the new behavior, we have: >> ${if:a==b} == [0] >> ${if:${raw:a==b}} == [1] >> ${if:${eval_cond:${raw:a==b}}} == [0] | |||
2021-03-18 | core: add pointer name in description of function eval_replace_vars_cb | Sébastien Helleu | |
2021-03-17 | api: add support of pointer names in function string_eval_expression (direct ↵ | Sébastien Helleu | |
and in hdata) These two formats are now supported, if "pointer_name" is present in the "pointers" hashtable: * "${pointer_name}": value of pointer (example: "0x1234abcd") * ${buffer[pointer_name].full_name}: use of a pointer name instead of pointer value or list name | |||
2021-03-16 | core: add options to customize commands on system signals, quit by default ↵ | Sébastien Helleu | |
on SIGHUP when not running headless (closes #1595) New options to customize behavior on signals received, with the default behavior: - weechat.signal.sighup: quit in normal mode, reload config in headless - weechat.signal.sigquit: quit - weechat.signal.sigterm: quit - weechat.signal.sigusr1: no command executed by default - weechat.signal.sigusr2: no command executed by default The signals SIGUSR1 and SIGUSR2 are introduced by this commit, so it's now possible to run commands when they are received. The SIGHUP signal makes now WeeChat quit, it was the behavior before version 2.9 of WeeChat (see commit de1e61f7cd50cbd1a99777fe6611642a51abf5f6). | |||
2021-03-14 | doc: use full path /usr/bin/pass in example for option ↵ | Sébastien Helleu | |
sec.crypt.passphrase_command |