summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2024-04-26core: remove check of NULL pointers before calling arraylist_free() (issue #865)Sébastien Helleu
2024-04-25core: remove check of NULL pointers before calling free() (issue #865)Sébastien Helleu
2024-04-12core: add support for $XDG_STATE_HOME90
2024-04-07doc: generate doc for all commands except default aliasesSébastien Helleu
2024-04-07core: add unique "id" in nicklist group and nick (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 groups and nicks inside the buffer, and the same number is never used again in the same buffer, during the lifetime of the process. It persists and is unchanged after `/upgrade`.
2024-04-07api: add function "asprintf"Sébastien Helleu
2024-04-07buffer: add property `input_get_any_user_data` in buffer (issue #2066)Sébastien Helleu
This allows buffers to get any user input, including commands, that are sent to the buffer callback instead of being executed on the buffer.
2024-04-01core: remove whitespaceSébastien Helleu
2024-04-01core: add cast to "const char *" for hashtable valueSébastien Helleu
2024-04-01core: fix print of pointer valuesSébastien Helleu
2024-03-25core: display a specific message when the value of option is unchanged after ↵Sébastien Helleu
`/set` command
2024-03-24core: fix tests on function strftimeval on AlpineSébastien Helleu
2024-03-24core: add option weechat.completion.case_sensitiveSébastien Helleu
2024-03-16core: fix typo in option weechat.look.hotlist_sort: time.usec -> time_usec ↵Sébastien Helleu
(issue #2097)
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: add macro to define hdata variable with different field and nameSébastien Helleu
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-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-06core: check if malloc.h is present, independently of function malloc_trimSébastien Helleu
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-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-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-02-23docs: fix some typos in documentation and commentsTrygve Aaberge
2024-02-17core: display the 3 variants for "${split}" and "${split_shell}" in /help evalSébastien Helleu
2024-02-17core: add "${hl:string}" and "${raw_hl:string}" in /eval completionsSébastien Helleu
2024-02-17core: add the different variants for "chars" in /eval completionsSébastien Helleu
2024-02-17core: add the different bases in /eval completions for "base_decode" and ↵Sébastien Helleu
"base_encode"
2024-02-17core: replace "xxx" by "string" and "number" by "N" in /eval completionsSébastien Helleu
2024-02-17core: list operators by order of priority in `/help eval` (issue #2005)Sébastien Helleu
2024-02-17core: reintroduce help on the operators in `/help eval` (issue #2005)Sébastien Helleu
2024-02-17core: reintroduce help on the variables in `/help eval` (issue #2005)Sébastien Helleu
2024-02-11core: add option `-s` in command `/command` to execute multiple commands ↵Sébastien Helleu
separated by semicolons
2024-02-11core: add WeeChat version in config update callbackSébastien Helleu
2024-02-10core: remove trailing directory separators in home directories (closes #2070)Sébastien Helleu
2024-02-01core: add support of base64url in encode/decode functions (issue #2066)Sébastien Helleu
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-24core: add support of `(?i)` for argument "name" in `/help buffer`Sébastien Helleu