Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-06 | trigger: add variables "${tg_shell_argc}" and "${tg_shell_argvN}" in command ↵ | Sébastien Helleu | |
trigger evaluated strings (closes #1624) | |||
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-21 | core: update ChangeLog (issue #1621) | Sébastien Helleu | |
2021-03-20 | core: update ChangeLog (issue #1591, issue #1592) | Sébastien Helleu | |
2021-03-19 | core: update ChangeLog | 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 | api: add info "weechat_daemon" | Sébastien Helleu | |
2021-03-14 | core: update ChangeLog (closes #1618) | Sébastien Helleu | |
2021-03-07 | Version 3.1 | Sébastien Helleu | |
2021-02-28 | core: fix quoted line in cursor mode (closes #1602) | Sébastien Helleu | |
Regression was introduced in version 2.7 by commit 93d2dbf3e1ef30e676a6edd56ab2b9bd2ddd70d9. | |||
2021-02-28 | core: add missing "xxx" in format of evaluated expressions (ChangeLog) | Sébastien Helleu | |
2021-02-27 | irc: add bar item "irc_nick_prefix" | Sébastien Helleu | |
2021-02-27 | irc: fix separator between nick and host in bar item "irc_nick_host" | Sébastien Helleu | |
Use "!" instead of "@" to separate nick from host, like it is done in IRC protocol. The nick and host is now displayed as "nick!user@host" instead of "nick@user@host". | |||
2021-02-25 | core: add info_hashtable "secured_data" | Sébastien Helleu | |
2021-02-16 | core: convert "totp" to upper case in ChangeLog | Sébastien Helleu | |
2021-02-11 | core: move line from "New features" to "Bug fixes" (issue #1612) | Sébastien Helleu | |
2021-02-10 | core: move line to appropriate version in ChangeLog | Sébastien Helleu | |
2021-02-09 | core: move line from "New features" to "Bug fixes" (issue #1613) | Sébastien Helleu | |
2021-02-09 | buflist: add option buflist.look.use_items to speed up display of buflist ↵ | Sébastien Helleu | |
(closes #1613) | |||
2021-02-08 | core: fix wrong size of the new window after vertical split (closes #1612) | Sébastien Helleu | |
2021-02-07 | core: update ChangeLog (closes #992, closes #993) | Sébastien Helleu | |
2021-02-06 | core: update ChangeLog (remove option sec.crypt.passphrase_file) | Sébastien Helleu | |
2021-02-06 | core: replace option sec.crypt.passphrase_file by ↵ | Sébastien Helleu | |
sec.crypt.passphrase_command (closes #141) The command is used to read the passphrase on startup, for example using your favorite password manager. Note: only the passphrase is read from the program, the secured data is still stored encrypted in sec.conf and handled by WeeChat itself. | |||
2021-02-05 | core: add raw string in evaluation of expressions with "raw:xxx" (closes #1611) | Sébastien Helleu | |
2021-02-03 | irc: add info "irc_is_message_ignored" | Sébastien Helleu | |
2021-01-31 | core: add version 3.0.1 in ChangeLog, release notes and weechat.spec | Sébastien Helleu | |
2021-01-30 | core: update ChangeLog | Sébastien Helleu | |
2021-01-30 | irc: make default chantypes configurable | Matti Virkkunen | |
2021-01-16 | core: update ChangeLog | Sébastien Helleu | |
2021-01-01 | core: add indentation and colors in /eval debug output | Sébastien Helleu | |
2020-12-31 | core: display more verbose debug with two "-d" in command /eval | Sébastien Helleu | |
Now a single -d in command /eval shows less debug messages than previous versions. To get the same debug messages than previous versions, two -d must be used. | |||
2020-12-25 | core: do not remove quotes in arguments of command /eval (closes #1601) | Sébastien Helleu | |
Now, /eval -n -c "a" == "a" returns True instead of False. When quotes were removed, the condition evaluated was: a" == "a (which is False). | |||
2020-12-19 | core: add options "setvar" and "delvar" in command /buffer, rename option ↵ | Sébastien Helleu | |
"localvar" to "listvar" The option "localvar" (introduced long time ago, in WeeChat 0.3.0) is still recognized by WeeChat, to stay compatible with any extension/script calling it (or referencing it in the documentation). It is deprecated and will be removed in a future release. | |||
2020-12-19 | core: add buffer local variable "completion_default_template" (evaluated) ↵ | Sébastien Helleu | |
(closes #1600) When this local variable is set, it overrides the value of option "weechat.completion.default_template". It is evaluated, that means the global default template can be used to append some custom completion. For example: /buffer set localvar_set_completion_default_template ${weechat.completion.default_template}|%(my_completion) | |||
2020-12-18 | core: add option "recreate" in command /filter | Sébastien Helleu | |
2020-12-06 | irc: fix completion of commands /halfop and /dehalfop | Sébastien Helleu | |
2020-12-05 | core: update ChangeLog | Sébastien Helleu | |
2020-11-20 | spell: fix crash with IRC color codes in command line (closes #1589) | Sébastien Helleu | |
2020-11-17 | core: display an error when the buffer is not found with command /command ↵ | Sébastien Helleu | |
-buffer | |||
2020-11-14 | trigger: add variable "${tg_trigger_name}" in command trigger evaluated ↵ | Sébastien Helleu | |
strings (closes #1580) ${tg_trigger_name} is replaced by the trigger name in these command strings: - description - arguments - description of arguments - completion | |||
2020-11-14 | core: add evaluation of conditions in evaluation of expressions with ↵ | Sébastien Helleu | |
"eval_cond:" (closes #1582) | |||
2020-11-13 | spell: fix refresh of bar item "spell_suggest" when the input becomes empty ↵ | Sébastien Helleu | |
(closes #1586) When the input is empty, length of string is zero: when sending zero to function weechat_string_dyn_alloc, the function returns NULL and therefore we return immediately instead of handling the empty input, which is a valid value. The regression was introduced by the use of dynamic strings, commit: 299f74bfef9e0d239ad141a4df3b2dcf11a4c0da | |||
2020-11-11 | Version 3.0 | Sébastien Helleu | |
2020-10-21 | trigger: add variable "tg_argc" in data set by command trigger (closes #1576) | Sébastien Helleu | |
2020-10-18 | irc: remove SASL timeout message displayed by error after successful SASL ↵ | Sébastien Helleu | |
authentication (closes #1515) The SASL timer is removed immediately when the SASL authentication is successful or has failed. | |||
2020-10-11 | exec: add option "-oerr" to send stderr to buffer (now disabled by default) ↵ | Sébastien Helleu | |
(closes #1566) | |||
2020-10-10 | core: update ChangeLog (issue #1567) | Sébastien Helleu | |
2020-10-04 | api: add optional list of colors in infos "nick_color" and "nick_color_name" ↵ | Sébastien Helleu | |
(closes #1565) | |||
2020-09-06 | script: add option script.scripts.download_enabled (closes #1548) | Sébastien Helleu | |