Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-04-07 | tests: add tests on relay remote functions (issue #2066) | Sébastien Helleu | |
2024-04-07 | relay: add connection to remote (issue #2066) | Sébastien Helleu | |
Connection to remote: - handshake: offer support for all supported hash algorithms - network connect with a socket - upgrade to websocket and authenticate with remote (password/TOTP) - check websocket response - get list of buffers (not used yet) Note: connection to remote with TLS or a proxy is not yet supported. | |||
2024-04-07 | relay: add command `/remote`, add remote configuration in relay.conf (issue ↵ | Sébastien Helleu | |
#2066) | |||
2024-04-01 | core: fix print of pointer values | Sébastien Helleu | |
2024-03-21 | doc/user: fix typo in trigger regex replace `${re:+}` | Sébastien Helleu | |
2024-03-21 | doc/user: add missing `${re:#}` and `${re:repl_index}` in trigger regex replace | Sébastien Helleu | |
2024-03-21 | doc/api: fix style in example `${re:+}` | Sébastien Helleu | |
2024-03-17 | tests/gui: add tests on hotlist functions | Sébastien Helleu | |
2024-03-12 | core: remove "wee-" prefix from source files in src/core and src/core/hook | Sébastien Helleu | |
2024-03-12 | api: allow search by buffer id in function buffer_search (issue #2081) | Sébastien Helleu | |
2024-03-12 | core: add unique "id" in buffer (issue #2081) | Sébastien Helleu | |
The id is a "long long" variable with the current time (microseconds precision). It is guaranteed to be unique for all buffers, and the same number is never used again, during the lifetime of the process. It persists and is unchanged after `/upgrade`. | |||
2024-03-12 | api: add function "hdata_longlong" (issue #2081) | Sébastien Helleu | |
2024-03-11 | doc/user: clarify what is `${nick}` in trigger IRC signal data | Sébastien Helleu | |
2024-03-10 | api: add modifier "color_decode" to decode WeeChat colors with a replacement ↵ | Sébastien Helleu | |
string | |||
2024-03-10 | core: use whole replacement string instead of first char in function ↵ | Sébastien Helleu | |
gui_color_decode | |||
2024-03-07 | doc/plugin: add missing translation comments | Sébastien Helleu | |
2024-03-06 | core: add support of SGR mouse events, remove option ↵ | Sébastien Helleu | |
weechat.look.mouse_timer_delay (closes #2082) | |||
2024-03-05 | doc/scripting: auto-generate list of scripting functions and constants from ↵ | Sébastien Helleu | |
Python API | |||
2024-03-05 | api: add functions config_{boolean|integer|string|color|enum}_inherited in ↵ | Sébastien Helleu | |
scripting API | |||
2024-03-05 | api: add functions config_option_get_string and config_option_get_pointer in ↵ | Sébastien Helleu | |
scripting API | |||
2024-02-25 | doc/api: fix string format in calls to weechat.prnt (examples in Python) | Sébastien Helleu | |
2024-02-24 | doc/user: fix order of mouse event modifiers | Sébastien Helleu | |
Key "alt" is always before "ctrl". | |||
2024-02-23 | docs: fix some typos in documentation and comments | Trygve Aaberge | |
2024-02-21 | script: fix default mouse keys (closes #2076) | Sébastien Helleu | |
Some parameters of command `/script` were renamed in commit 85b5bacfe3d7343cb8695b8d7b0467732d8b8d53 but the default mouse keys were not changed and still using the old parameters names. | |||
2024-02-18 | tests: add tests on "api" relay (general functions and messages) | Sébastien Helleu | |
2024-02-01 | core: add support of base64url in encode/decode functions (issue #2066) | Sébastien Helleu | |
2024-02-01 | relay: add support of websocket extension "permessage-deflate" (closes #1549) | Sébastien Helleu | |
This extension is used to compress and decompress websocket frames (using the DEFLATE algorithm, with zlib). | |||
2024-02-01 | relay: add "api" protocol (HTTP REST API) (issue #2066) | Sébastien Helleu | |
2024-01-27 | core: use function util_strftimeval in evaluation of expression `date:xxx` | Sébastien Helleu | |
2024-01-27 | api: add support of specifier `%!` for timestamp in function util_strftimeval | Sébastien Helleu | |
2024-01-22 | doc/dev: update rules for indentation in C sources | Sébastien Helleu | |
2024-01-12 | irc: add tests on info functions (issue #2059) | Sébastien Helleu | |
2024-01-06 | doc/api: add missing properties in functions buffer_get_integer and ↵ | Sébastien Helleu | |
buffer_get_string | |||
2024-01-06 | core: add variable "opening" in buffer, do not send buffer signals when the ↵ | Sébastien Helleu | |
buffer is opening | |||
2024-01-05 | api: add function util_parse_time (issue #649) | Sébastien Helleu | |
2024-01-01 | core: update copyright dates | Sébastien Helleu | |
2023-12-26 | core: store microseconds in buffer lines (closes #649) | Sébastien Helleu | |
2023-12-24 | api: add property "type" in function buffer_get_string | Sébastien Helleu | |
2023-12-02 | tests: add tests on plugin config functions | Sébastien Helleu | |
2023-12-02 | tests: rename file test-plugins-api-info.cpp to test-plugin-api-info.cpp | Sébastien Helleu | |
2023-12-02 | tests: add tests on plugin API info functions | Sébastien Helleu | |
2023-11-23 | core: add syntax highlighting in evaluation of expressions, add option ↵ | Sébastien Helleu | |
weechat.color.eval_syntax_colors (issue #2042) Syntax highlighting (raw string without evaluation): `${raw_hl:xxx}` Syntax highlighting: `${hl:xxx}` | |||
2023-11-11 | core: move key ctrl+s, ctrl+u to alt+shift+U (issue #2040) | Sébastien Helleu | |
2023-11-11 | core: add key ctrl+o to send command found and insert next one in input ↵ | Sébastien Helleu | |
(issue #2040) | |||
2023-11-11 | core: add incremental search in commands history (issue #2040) | Sébastien Helleu | |
Changes: - move key ctrl+r to ctrl+s - add key ctrl+r to search in commands history - add option `search_history` in command `/input` - add key context "histsearch" - add option weechat.look.buffer_search_history - add buffer variables "text_search_direction", "text_search_history" and "text_search_ptr_history" | |||
2023-11-04 | doc/faq: add question about key F11 | Sébastien Helleu | |
2023-11-01 | irc: add support of RGB colors in messages (issue #2025) | Sébastien Helleu | |
This is made using standard color code '\x04' followed by text color (RGB as hexadecimal) and optional background (RGB as hexadecimal). | |||
2023-10-17 | api: add support of format/translation of command arguments description line ↵ | Sébastien Helleu | |
by line (issue #2005) | |||
2023-10-17 | api: add function string_concat (issue #2005) | Sébastien Helleu | |
2023-10-01 | core: make zstd dependency optional (closes #2024) | Sébastien Helleu | |