summaryrefslogtreecommitdiff
path: root/ChangeLog.adoc
AgeCommit message (Collapse)Author
2021-04-06trigger: add variables "${tg_shell_argc}" and "${tg_shell_argvN}" in command ↵Sébastien Helleu
trigger evaluated strings (closes #1624)
2021-04-04core: 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-21core: update ChangeLog (issue #1621)Sébastien Helleu
2021-03-20core: update ChangeLog (issue #1591, issue #1592)Sébastien Helleu
2021-03-19core: update ChangeLogSébastien Helleu
2021-03-17api: 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-16core: 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-14api: add info "weechat_daemon"Sébastien Helleu
2021-03-14core: update ChangeLog (closes #1618)Sébastien Helleu
2021-03-07Version 3.1Sébastien Helleu
2021-02-28core: fix quoted line in cursor mode (closes #1602)Sébastien Helleu
Regression was introduced in version 2.7 by commit 93d2dbf3e1ef30e676a6edd56ab2b9bd2ddd70d9.
2021-02-28core: add missing "xxx" in format of evaluated expressions (ChangeLog)Sébastien Helleu
2021-02-27irc: add bar item "irc_nick_prefix"Sébastien Helleu
2021-02-27irc: 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-25core: add info_hashtable "secured_data"Sébastien Helleu
2021-02-16core: convert "totp" to upper case in ChangeLogSébastien Helleu
2021-02-11core: move line from "New features" to "Bug fixes" (issue #1612)Sébastien Helleu
2021-02-10core: move line to appropriate version in ChangeLogSébastien Helleu
2021-02-09core: move line from "New features" to "Bug fixes" (issue #1613)Sébastien Helleu
2021-02-09buflist: add option buflist.look.use_items to speed up display of buflist ↵Sébastien Helleu
(closes #1613)
2021-02-08core: fix wrong size of the new window after vertical split (closes #1612)Sébastien Helleu
2021-02-07core: update ChangeLog (closes #992, closes #993)Sébastien Helleu
2021-02-06core: update ChangeLog (remove option sec.crypt.passphrase_file)Sébastien Helleu
2021-02-06core: 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-05core: add raw string in evaluation of expressions with "raw:xxx" (closes #1611)Sébastien Helleu
2021-02-03irc: add info "irc_is_message_ignored"Sébastien Helleu
2021-01-31core: add version 3.0.1 in ChangeLog, release notes and weechat.specSébastien Helleu
2021-01-30core: update ChangeLogSébastien Helleu
2021-01-30irc: make default chantypes configurableMatti Virkkunen
2021-01-16core: update ChangeLogSébastien Helleu
2021-01-01core: add indentation and colors in /eval debug outputSébastien Helleu
2020-12-31core: display more verbose debug with two "-d" in command /evalSé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-25core: 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-19core: 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-19core: 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-18core: add option "recreate" in command /filterSébastien Helleu
2020-12-06irc: fix completion of commands /halfop and /dehalfopSébastien Helleu
2020-12-05core: update ChangeLogSébastien Helleu
2020-11-20spell: fix crash with IRC color codes in command line (closes #1589)Sébastien Helleu
2020-11-17core: display an error when the buffer is not found with command /command ↵Sébastien Helleu
-buffer
2020-11-14trigger: 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-14core: add evaluation of conditions in evaluation of expressions with ↵Sébastien Helleu
"eval_cond:" (closes #1582)
2020-11-13spell: 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-11Version 3.0Sébastien Helleu
2020-10-21trigger: add variable "tg_argc" in data set by command trigger (closes #1576)Sébastien Helleu
2020-10-18irc: 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-11exec: add option "-oerr" to send stderr to buffer (now disabled by default) ↵Sébastien Helleu
(closes #1566)
2020-10-10core: update ChangeLog (issue #1567)Sébastien Helleu
2020-10-04api: add optional list of colors in infos "nick_color" and "nick_color_name" ↵Sébastien Helleu
(closes #1565)
2020-09-06script: add option script.scripts.download_enabled (closes #1548)Sébastien Helleu