summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2024-03-12api: allow search by buffer id in function buffer_search (issue #2081)Sébastien Helleu
2024-03-12core: 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-12api: add function "hdata_longlong" (issue #2081)Sébastien Helleu
2024-03-12core: update German translationsNils Görs
2024-03-11doc/user: clarify what is `${nick}` in trigger IRC signal dataSébastien Helleu
2024-03-10api: add modifier "color_decode" to decode WeeChat colors with a replacement ↵Sébastien Helleu
string
2024-03-10core: use whole replacement string instead of first char in function ↵Sébastien Helleu
gui_color_decode
2024-03-07doc: update German documentationNils Görs
2024-03-07doc/plugin: add missing translation commentsSébastien Helleu
2024-03-06core: add support of SGR mouse events, remove option ↵Sébastien Helleu
weechat.look.mouse_timer_delay (closes #2082)
2024-03-05doc/scripting: auto-generate list of scripting functions and constants from ↵Sébastien Helleu
Python API
2024-03-05doc: move script doc/python_stub.py to tools/generate_python_stub.pySébastien Helleu
2024-03-05api: add functions config_{boolean|integer|string|color|enum}_inherited in ↵Sébastien Helleu
scripting API
2024-03-05api: add functions config_option_get_string and config_option_get_pointer in ↵Sébastien Helleu
scripting API
2024-02-25doc/api: fix string format in calls to weechat.prnt (examples in Python)Sébastien Helleu
2024-02-24doc/user: fix order of mouse event modifiersSébastien Helleu
Key "alt" is always before "ctrl".
2024-02-23doc: Update Serbian translationIvan Pešić
2024-02-23docs: fix some typos in documentation and commentsTrygve Aaberge
2024-02-21script: 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-18tests: add tests on "api" relay (general functions and messages)Sébastien Helleu
2024-02-12core: update German translationsNils Görs
2024-02-01core: add support of base64url in encode/decode functions (issue #2066)Sébastien Helleu
2024-02-01relay: 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-01relay: add "api" protocol (HTTP REST API) (issue #2066)Sébastien Helleu
2024-01-27core: use function util_strftimeval in evaluation of expression `date:xxx`Sébastien Helleu
2024-01-27api: add support of specifier `%!` for timestamp in function util_strftimevalSébastien Helleu
2024-01-22doc/dev: update rules for indentation in C sourcesSébastien Helleu
2024-01-15doc: Update Serbian translationIvan Pešić
2024-01-14doc/dev: remove conflict marker in Serbian docSébastien Helleu
2024-01-12irc: add tests on info functions (issue #2059)Sébastien Helleu
2024-01-06doc/api: add missing properties in functions buffer_get_integer and ↵Sébastien Helleu
buffer_get_string
2024-01-06core: add variable "opening" in buffer, do not send buffer signals when the ↵Sébastien Helleu
buffer is opening
2024-01-06doc: update copyright datesKrzysztof Korościk
2024-01-05api: add function util_parse_time (issue #649)Sébastien Helleu
2024-01-04doc: update German documentationNils Görs
2024-01-01core: update copyright datesSébastien Helleu
2024-01-01doc: updated polish translationKrzysztof Korościk
2023-12-26core: store microseconds in buffer lines (closes #649)Sébastien Helleu
2023-12-24api: add property "type" in function buffer_get_stringSébastien Helleu
2023-12-05doc: Update Serbian documentationIvan Pešić
2023-12-02tests: add tests on plugin config functionsSébastien Helleu
2023-12-02tests: rename file test-plugins-api-info.cpp to test-plugin-api-info.cppSébastien Helleu
2023-12-02tests: add tests on plugin API info functionsSébastien Helleu
2023-11-23core: 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-19doc: updated polish translationKrzysztof Korościk
2023-11-16doc: Update Serbian documentationIvan Pešić
2023-11-11core: update German translationsNils Görs
2023-11-11core: move key ctrl+s, ctrl+u to alt+shift+U (issue #2040)Sébastien Helleu
2023-11-11core: add key ctrl+o to send command found and insert next one in input ↵Sébastien Helleu
(issue #2040)
2023-11-11core: 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"