summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2024-03-16core: add option weechat.look.highlight_prefix (closes #2079)Sébastien Helleu
2024-03-16core: add variable `${highlight}` in option weechat.look.buffer_time_format ↵Sébastien Helleu
(issue #2079)
2024-03-15core: convert option weechat.look.hotlist_sort to a list of fields (closes ↵Sébastien Helleu
#2097)
2024-03-15core: rename variables with creation time in hdata "hotlist"Sébastien Helleu
Variables renamed: - "creation_time.tv_sec" -> "time" - "creation_time.tv_usec" -> "time_usec"
2024-03-15core: add macro to define hdata variable with different field and nameSébastien Helleu
2024-03-15core: add missing hdata name "buffer" in hdata "hotlist"Sébastien Helleu
2024-03-13core: make search_stop scroll to search start positionTrygve Aaberge
When you run /input search_stop it should scroll to the scroll position the buffer was at before starting the search, rather than to the bottom of the buffer. Fixes a regression introduced in commit b83b428c5cc48043cb625844b87e94acbc194ba1 Fixes #2093
2024-03-13lua: fix code stylewfrsk
2024-03-13lua: do not depend on an init script + rework `weechat_lua_output`wfrsk
2024-03-13lua: do not load the `debug` librarywfrsk
2024-03-13lua: do not depend on `luaL_openlibs`wfrsk
2024-03-13GUI: fix potential integer overflow bugs by casting to `size_t`Mario Campos
2024-03-13fset: replace call to chmod() by fchmod() in the export functionMario Campos
2024-03-13core: open the file exclusively in compress file functionsMario Campos
This also removes the unnecessary call to access() function before the call to fopen().
2024-03-13core: remove unnecessary call to stat() in hash file functionMario Campos
The call to fopen() will fail anyway if the file doesn't exist.
2024-03-12core: remove "wee-" prefix from source files in src/core and src/core/hookSébastien Helleu
2024-03-12relay/api: replace "context" by "buffer_id" (issue #2081)Sébastien Helleu
2024-03-12relay/api: add support of buffer id in POST /api/input (issue #2081)Sébastien Helleu
2024-03-12relay/api: add support of buffer id in GET /api/buffers (issue #2081)Sébastien Helleu
2024-03-12relay: add a fake send function in clientSébastien Helleu
This will be used in unit tests to get the data that is sent to clients.
2024-03-12relay/api: add a global variable to customize the command delay in POST ↵Sébastien Helleu
/api/input The user can not change this, the variable will be set to 0 in unit tests to execute the command immediately.
2024-03-12relay/api: check that "request" field is a string in JSON received ↵Sébastien Helleu
(websocket connection)
2024-03-12relay/api: allow POST /api/handshake without a bodySébastien Helleu
2024-03-12relay/api: fix error displayed when buffer is not found in POST /api/inputSébastien Helleu
2024-03-12relay/weechat: add buffer id in signals sent to clients (issue #2081)Sébastien Helleu
2024-03-12relay/api: add buffer is in response to GET /api/buffers (issue #2081)Sébastien Helleu
2024-03-12api: allow search by buffer id in function buffer_search (issue #2081)Sébastien Helleu
2024-03-12core: add function gui_buffer_search_by_id (issue #2081)Sébastien Helleu
2024-03-12core: rename function gui_buffer_search_by_name to gui_buffer_search (issue ↵Sébastien Helleu
#2081)
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-12core: use dynamic string in function infolist_fieldsSébastien Helleu
2024-03-12api: add function "hdata_longlong" (issue #2081)Sé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-08exec: remove trailing space on buffers with free content when line numbers ↵Sébastien Helleu
are not displayed
2024-03-07exec: add missing exec tags in lines of buffers with free content (closes #2086)Sébastien Helleu
2024-03-06core: check if malloc.h is present, independently of function malloc_trimSébastien Helleu
2024-03-06irc: add option `-all` in command `/allchan`, do not execute command on ↵Sébastien Helleu
parted channels by default (closes #2085)
2024-03-06core: include header malloc.h only if function malloc_trim is availableSébastien Helleu
2024-03-06core: check that function `malloc_trim` is available, display an error if ↵Sébastien Helleu
not available
2024-03-06core: add option `malloc_trim` in command `/sys`Sébastien Helleu
2024-03-06irc: use API config functions to get inherited value (server options)Sé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-05python: add infolists "python_function" and "python_constant"Sébastien Helleu
2024-03-05plugins: move scripting API constants to plugin-script.cSébastien Helleu
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-05core: refactor functions that read values of config optionsSébastien Helleu
2024-03-05api: add functions config_option_get_string and config_option_get_pointer in ↵Sébastien Helleu
scripting API