Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-21 | core: increase buffer size in HTTP proxy connection | Sébastien Helleu | |
In case of long address/username/password, the HTTP CONNECT message could be truncated. | |||
2020-11-21 | core: increase command buffer size in /color command | Sébastien Helleu | |
In case of long alias name, the command to set color alias could be truncated. | |||
2020-11-20 | spell: fix crash with IRC color codes in command line (closes #1589) | Sébastien Helleu | |
2020-11-19 | core: add missing cast to unsigned char on first argument to function isdigit | Sébastien Helleu | |
2020-11-17 | core: fix and normalize error messages | 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-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-15 | script: allow command /script list when option ↵ | Sébastien Helleu | |
script.scripts.download_enabled is set to off (closes #1574) | |||
2020-10-11 | exec: add option "-oerr" to send stderr to buffer (now disabled by default) ↵ | Sébastien Helleu | |
(closes #1566) | |||
2020-10-11 | exec: add missing option "-oc" in /help exec | Sébastien Helleu | |
2020-10-10 | trigger: add a function to set variables common to all triggers (issue #1567) | Sébastien Helleu | |
2020-10-10 | trigger: add tg_trigger_name variable to all triggers (closes #1567) | Simmo Saan | |
2020-10-04 | api: add optional list of colors in infos "nick_color" and "nick_color_name" ↵ | Sébastien Helleu | |
(closes #1565) | |||
2020-10-04 | core: add argument "num_colors" in function gui_nick_hash_color, add tests ↵ | Sébastien Helleu | |
on nick functions (issue #1565) Functions tested: - gui_nick_hash_djb2_64 - gui_nick_hash_djb2_32 - gui_nick_hash_sum_64 - gui_nick_hash_sum_32 - gui_nick_get_forced_color - gui_nick_strdup_for_color - gui_nick_find_color - gui_nick_find_color_name | |||
2020-09-12 | irc: fix again typo in English plural form of "normal" | Sébastien Helleu | |
2020-09-12 | irc: fix typo in English plural form of "normal" (normals -> normal) | Sébastien Helleu | |
2020-09-06 | script: add option script.scripts.download_enabled (closes #1548) | Sébastien Helleu | |
2020-09-02 | script: do not automatically download list of scripts on startup if the file ↵ | Sébastien Helleu | |
is too old (closes #1548) The repository file is downloaded anyway if too old on any /script action. | |||
2020-08-28 | spell: also skip IRC color attributes codes when checking words in input ↵ | Sébastien Helleu | |
(issue #1547) | |||
2020-08-25 | irc: add comments in functions irc_color_decode and irc_color_encode | Sébastien Helleu | |
2020-08-25 | spell: skip IRC color codes when checking words in input (closes #1547) | Sébastien Helleu | |
2020-08-24 | spell: use dynamic string functions to return modified string | Sébastien Helleu | |
2020-08-23 | api: add argument "bytes" in function string_dyn_concat | Sébastien Helleu | |
2020-08-22 | spell: properly skip WeeChat color codes when checking words in input ↵ | Sébastien Helleu | |
(closes #1547) | |||
2020-08-22 | api: add function string_color_code_size (issue #1547) | Sébastien Helleu | |
2020-08-20 | fset: fix refresh of option values in fset buffer (issue #1553) | Sébastien Helleu | |
2020-08-17 | irc: replace calls to malloc by calloc | Sébastien Helleu | |
After these calls to malloc the memory is set to zero, so it's better to call calloc that does it already. | |||
2020-08-17 | core: replace calls to malloc by calloc | Sébastien Helleu | |
After these calls to malloc the memory is set to zero, so it's better to call calloc that does it already. | |||
2020-08-16 | core: set notify_level to 3 if highlight is forced in gui_line_hook_update ↵ | Sébastien Helleu | |
(only if tag "notify_none" is not in the line) (issue #1529) | |||
2020-08-16 | core: set notify_level to 3 in case of highlight in gui_line_hook_update ↵ | Sébastien Helleu | |
only if tag "notify_none" is not in the line (issue #1529) | |||
2020-08-16 | core: set notify_level to 3 in case of highlight only if tag "notify_none" ↵ | Sébastien Helleu | |
is not in the line (issue #1529) | |||
2020-08-15 | core: set "notify_level" to 3 if there is a highlight in the line (closes #1529) | Sébastien Helleu | |
2020-08-09 | fset: add option fset.look.auto_refresh (closes #1553) | Sébastien Helleu | |
2020-08-05 | irc: send all channels in a single JOIN command when reconnecting to the ↵ | Sébastien Helleu | |
server (closes #1551) | |||
2020-08-04 | core: check that line is not NULL in functions gui_line_is_displayed and ↵ | Sébastien Helleu | |
gui_line_get_nick_tag | |||
2020-08-04 | core: check that line_data is not NULL in functions gui_line_tags_alloc and ↵ | Sébastien Helleu | |
gui_line_has_tag_no_filter | |||
2020-08-04 | core: rename functions to allocate/free lines | Sébastien Helleu | |
2020-07-31 | trigger: fix recursive calls to triggers using regex (closes #1546) | Sébastien Helleu | |
2020-07-21 | irc: add pointer "irc_nick" in hashtable sent to hook focus callback (closes ↵ | Simmo Saan | |
#1535) | |||
2020-07-20 | irc: allow to send text on buffers with commands /allchan, /allpv and /allserv | Sébastien Helleu | |
2020-07-20 | irc: evaluate command executed by commands /allchan, /allpv and /allserv ↵ | Sébastien Helleu | |
(closes #1536) The extra variables are now replaced (in addition to `$server`, `$channel` and `$nick`): - `${irc_server.xxx}`: variable xxx in server - `${irc_channel.xxx}`: variable xxx in channel | |||
2020-07-20 | trigger: check that tag "notify_none" is not present in message to run ↵ | Sébastien Helleu | |
command of default trigger beep (issue #1529) | |||
2020-07-20 | core: do not add line with highlight and tag "notify_none" to hotlist ↵ | Sébastien Helleu | |
(closes #1529) | |||
2020-07-07 | Add $weechat_sharedir/python for global python package import | Marco Sirabella | |
Related: #1461 Some scripts (eg weechat-matrix) ship directories that need to be imported from the script. Rather than globally installing the python packages to python's `site-packages` the directories can be installed alongside the script in `WEECHAT_SHAREDIR/python`. This change adds that directory to the `$PYTHONPATH` to import successfully. | |||
2020-06-30 | api: add pointer "_bar_window" in hashtable sent to hook focus callback ↵ | Sébastien Helleu | |
(closes #1450) | |||
2020-06-26 | relay: add missing field "notify_level" in message "_buffer_line_added" ↵ | Sébastien Helleu | |
(issue #1529) |