Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-10 | core: add whole string information in /debug unicode | Sébastien Helleu | |
2022-12-10 | core: add color attributes "blink" and "dim" (half bright) (closes #1855) | Sébastien Helleu | |
2022-12-10 | core: do not display non printable chars, fix function utf8_char_size_screen | Sébastien Helleu | |
Now the function utf8_char_size_screen can return -1 when the char is not printable. It has a specific behavior for some chars: - U+0009: value of option weechat.look.tab_width - U+0001 to U+001F (except U+0009): 1 - U+00AD (soft hyphen): -1 - U+200B (zero width space): -1 | |||
2022-12-10 | api: add function utf8_strncpy | Sébastien Helleu | |
2022-11-21 | core: add option `unicode` in command `/debug` | Sébastien Helleu | |
2022-11-11 | core: add identifier in buffer lines (closes #901) | Sébastien Helleu | |
For buffers with formatted content, the "id" starts to 0 on each buffer and is incremented on each new line displayed (it is reset to 0 if reaching INT_MAX). For buffers with free content, the "id" is set to the same value as "y" (ie the line number, starting to 0). | |||
2022-11-09 | doc/api: add missing note after list of signals | Sébastien Helleu | |
2022-11-09 | doc/user: add missing supported format for trigger regex | Sébastien Helleu | |
2022-11-08 | core: add signals "buffer_user_{input|closing}_xxx" for buffers created with ↵ | Sébastien Helleu | |
`/buffer add` (closes #1848) | |||
2022-11-06 | core: update translations | Sébastien Helleu | |
2022-11-06 | trigger: add regex command "y" to translate chars, set default regex command ↵ | Sébastien Helleu | |
to "s" (regex replace) (closes #1510) | |||
2022-11-05 | core: add range of chars in evaluation of expressions with `chars:xxx` | Sébastien Helleu | |
2022-11-05 | api: add function string_translate_chars | Sébastien Helleu | |
2022-11-05 | doc: Fix typo in highlight_disable_regex option name | Trygve Aaberge | |
The section describes highlight_disable_regex, but the example used highlight_regex instead. | |||
2022-10-19 | doc/faq: remove mention of obsolete WeeChat versions | Sébastien Helleu | |
2022-10-19 | doc: fix language in links to other docs | Sébastien Helleu | |
2022-10-15 | python: remove support of Python 2.x | Sébastien Helleu | |
2022-10-14 | python: Fix return types for config option callbacks | Trygve Aaberge | |
I erroneously typed the return types for these to int in commit e0c117e14, but they should be None. | |||
2022-09-30 | trigger: add variable `${tg_hook_type}` (closes #1765) | Sébastien Helleu | |
2022-09-30 | doc/api: Fix config_new_option types for non English docs | Trygve Aaberge | |
Only English was changed in commit 197a7a01e. | |||
2022-09-29 | api: change type of argument remaining_calls in hook_timer callback from ↵ | Sébastien Helleu | |
string to integer (in scripts) | |||
2022-09-29 | doc/api: Remove unnecessary cast in Python example | Trygve Aaberge | |
The highlight argument is already an int, so no point in casting it. | |||
2022-09-29 | doc/api: Add types for Python callbacks | Trygve Aaberge | |
2022-09-29 | core: fix compilation with zstd < 1.4.0 | Sébastien Helleu | |
Note: zstd ≥ 0.8.1 is now required to compile WeeChat. | |||
2022-09-29 | doc/user: add chapter on log file rotation/compression | Sébastien Helleu | |
2022-09-28 | doc/api: Add values for hook_process constants | Trygve Aaberge | |
When logging this value I just see a number so I have to look up what it means. Previously you would have to check the code or print the value of each of these constants to see it. Seeing the value directly in the documentation makes this much easier. | |||
2022-09-28 | doc/api: add note about C API for constant WEECHAT_HOOK_PROCESS_CHILD ↵ | Sébastien Helleu | |
(function hook_process) | |||
2022-09-28 | logger: add options to rotate and compress log files (closes #314) | Sébastien Helleu | |
New options: - logger.file.rotation_compression_level - logger.file.rotation_compression_type - logger.file.rotation_size_max | |||
2022-09-27 | api: add function file_compress | Sébastien Helleu | |
2022-09-27 | api: restrict number to integer in function string_parse_size | Sébastien Helleu | |
2022-09-27 | api: add function string_parse_size | Sébastien Helleu | |
2022-09-18 | core: add key alt+backspace, change behavior of key ctrl+w (closes #559) | Sébastien Helleu | |
The key ctrl+w now deletes one word until whitespace. The new key alt+backspace deletes one word (same behavior as ctrl+w in previous releases). | |||
2022-09-17 | tests: add tests on filter functions | Sébastien Helleu | |
2022-09-17 | spell: allow special dict value "-" to disable spell checking on a specific ↵ | Sébastien Helleu | |
buffer (closes #1699) | |||
2022-09-17 | doc/api: add version 3.7 for priority in function hook_line | Sébastien Helleu | |
2022-09-16 | api: add support of priority in function hook_line (closes #1821) | Sébastien Helleu | |
2022-09-15 | irc: add option irc.look.display_pv_nick_change | Sébastien Helleu | |
2022-09-11 | doc/api: move function hook_completion in chapter on hook priority | Sébastien Helleu | |
2022-09-11 | doc/api: update chapter on hook priority | Sébastien Helleu | |
2022-09-11 | doc/api: update note about priority in hook functions | Sébastien Helleu | |
2022-09-03 | xfer: fix DCC file receive on Termux (closes #1811) | Sébastien Helleu | |
This fixes such error displayed on Termux when receiving a DCC file: xfer: invalid address "96747949": error 8 hostname nor servname provided, or not known | |||
2022-08-16 | api: add function crypto_hash_file | Sébastien Helleu | |
2022-08-15 | buflist: improve help on option buflist.look.enabled | Sébastien Helleu | |
2022-08-15 | trigger: add elapsed time for trigger execution on monitor buffer when ↵ | Sébastien Helleu | |
trigger debug is set (closes #1806) | |||
2022-08-13 | irc: add options and display SETNAME command in channels and private buffers ↵ | Sébastien Helleu | |
(closes #1805) New options: - irc.color.message_setname - irc.look.smart_filter_setname | |||
2022-08-13 | doc: update auto-generated files | Sébastien Helleu | |
2022-08-08 | tests: add tests on function xfer_file_search_crc32 | Sébastien Helleu | |
2022-08-07 | core: add option `-save` in command `/upgrade` (closes #1630) | Sébastien Helleu | |
2022-08-03 | irc: mention how to remove capability in /help cap | Sébastien Helleu | |
2022-07-31 | buflist: add variable "${hotlist_priority_number}" (integer version of ↵ | Sébastien Helleu | |
"${hotlist_priority}") |