summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-21doc/user: fix style in tablesSébastien Helleu
2022-02-21doc: update German documentationNils Görs
2022-02-20doc/dev: add table with list of components for git commit messageSébastien Helleu
2022-02-20doc/api: Add missing parameter to python prototype for config_new_sectionTrygve Aaberge
2022-02-20scripts: auto-load scripts with supported extensions only (closes #1698)Sébastien Helleu
2022-02-20doc/user: update dependencies using versions from Debian BullseyeSébastien Helleu
2022-02-20doc/user: add missing dependency on ruby-pygments.rb to build docSébastien Helleu
2022-02-19irc: replace calls to strndup by weechat_strndupSébastien Helleu
2022-02-19core: replace calls to strndup by string_strndupSébastien Helleu
2022-02-19tests: add tests on function string_strndupSébastien Helleu
2022-02-19core: call strdup in string_strndup if bytes equals strlen of stringSébastien Helleu
2022-02-19debian: change dependency libargon2-0-dev to libargon2-dev (debian bug #1005703)Sébastien Helleu
2022-02-15core: update sentence about XDG directories in release notesSébastien Helleu
2022-02-14doc/api: add missing type for argument "count" in Python prototype of ↵Sébastien Helleu
function ngettext
2022-02-10irc: fix parsing of message 223 (m_filter) sent by InspIRCd server (closes ↵Sébastien Helleu
#1751)
2022-02-08doc: Update Serbian documentationIvan Pešić
2022-02-08ruby: add detection of Ruby 3.1Sébastien Helleu
2022-02-05core: fix style in ChangeLogSébastien Helleu
2022-02-01doc/user: add supported C++ compilers in dependenciesSébastien Helleu
2022-01-30core: search in message tags when tags are displayed with /debug tagsSébastien Helleu
2022-01-30core: add support of date and tags in messages displayed in buffers with ↵Sébastien Helleu
free content, add function printf_y_date_tags (closes #1746)
2022-01-30doc/api: fix type of parameter "date" in script prototype of function ↵Sébastien Helleu
prnt_date_tags
2022-01-30tests: add tests on gui_chat_printf_date_tags with past date and tagsSébastien Helleu
2022-01-29tests: add tests on GUI chat functionsSébastien Helleu
Functions tested: - gui_chat_utf_char_valid - gui_chat_char_size_screen - gui_chat_strlen - gui_chat_strlen_screen - gui_chat_string_add_offset - gui_chat_string_add_offset_screen - gui_chat_string_real_pos - gui_chat_string_pos - gui_chat_get_word_info - gui_chat_printf_date_tags_internal - gui_chat_printf_date_tags - gui_chat_printf_y
2022-01-29doc/dev: update format of commit messages for docsSébastien Helleu
2022-01-28doc: update auto-generated files with optionsSébastien Helleu
2022-01-28tests: add tests on functions gui_line_build_string_prefix_message and ↵Sébastien Helleu
gui_line_build_string_message_tags
2022-01-28core: move functions from gui-chat.c to gui-line.cSébastien Helleu
Functions moved and renamed: - gui_chat_build_string_prefix_message -> gui_line_build_string_prefix_message - gui_chat_build_string_message_tags -> gui_line_build_string_message_tags
2022-01-28core: use dynamic string in function gui_chat_build_string_message_tagsSébastien Helleu
2022-01-28core: use dynamic string in function gui_chat_build_string_prefix_messageSébastien Helleu
2022-01-27doc/api: merge examples and results in same column (function ↵Sébastien Helleu
string_eval_expression)
2022-01-27doc/api: add column "Min WeeChat" in string_eval_expression tablesSébastien Helleu
2022-01-26core: check that utf_char is not NULL in gui chat functionsSébastien Helleu
2022-01-26core: set prefix to NULL when clearing a line on a buffer with free contentSébastien Helleu
2022-01-26core: fix memory leak when removing a line on a buffer with free contentSébastien Helleu
2022-01-23core: update ChangeLogSébastien Helleu
2022-01-23Remove old and unused config option weechat.plugin.debugTrygve Aaberge
As far as I can see, this option is not used anywhere and should have been removed in commit 6e69f7f3c.
2022-01-23core: update Turkish translationsEmir SARI
2022-01-22python: fix crash in hook callbacks after script loading failure (closes #1740)Sébastien Helleu
2022-01-21doc: update Serbian auto-generated fileSébastien Helleu
2022-01-21doc: Update Serbian translationIvan Pešić
2022-01-18doc: update German documentationNils Görs
2022-01-17core: fix install of PHP 8.0 in CISébastien Helleu
2022-01-17core: update copyright datesSébastien Helleu
2022-01-16doc: add example of hook_process with a script function (scripting guide)Sébastien Helleu
2022-01-16doc: remove useless comparison with empty string in Python examples (plugin ↵Sébastien Helleu
API reference)
2022-01-15xfer: fix auto-accept of server/nick when the server name contains UTF-8 ↵Sébastien Helleu
chars (issue #1739)
2022-01-15spell: fix comparison of URL prefix with UTF-8 chars (issue #1739)Sébastien Helleu
There is no problem in practice because the possible URL prefixes are hardcoded in the spell plugin and don't contain any UTF-8 char on more than one byte.
2022-01-15relay: fix comparison of server nonce with UTF-8 chars (issue #1739)Sébastien Helleu
There is no problem in practice because this server nonce is generated by WeeChat itself and encoded to base64, so it never contains any UTF-8 char on more than one byte.
2022-01-15irc: fix completion of channel topic with UTF-8 chars (issue #1739)Sébastien Helleu