Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-01-01 | core: update copyright dates | Sébastien Helleu | |
2023-12-15 | core: fix crash on plugin reload when using musl libs (closes #2052) | Sébastien Helleu | |
2023-10-17 | spell: format and translate command line by line (issue #2005) | Sébastien Helleu | |
2023-09-05 | core: add note for translators on command arguments (issue #2005) | Sébastien Helleu | |
Only text between angle brackets (eg: "<name>") must be translated. | |||
2023-05-13 | core: add quotes around paths in CMake files (closes #29) | Sébastien Helleu | |
2023-04-01 | core, plugins: set options to NULL by default, refactor config init functions | Sébastien Helleu | |
2023-03-30 | spell: check buffer pointer received in info "spell_dict" | Sébastien Helleu | |
2023-01-28 | core, plugins: replace calls to string_str(n)cmp by str(n)cmp (issue #1872) | Sébastien Helleu | |
2023-01-28 | core, plugins: make commands, hook command_run, completions and aliases case ↵ | Sébastien Helleu | |
sensitive (issue #1872) | |||
2023-01-28 | plugins: set priority in calls to weechat_config_new (issue #1872) | Sébastien Helleu | |
2023-01-08 | core: remove build with autotools | Sébastien Helleu | |
CMake is now the only way to build WeeChat. | |||
2023-01-01 | core: update copyright dates | Sébastien Helleu | |
2022-12-19 | spell: return directly output of string_dyn_free without temporary variable | Sébastien Helleu | |
2022-09-17 | spell: allow special dict value "-" to disable spell checking on a specific ↵ | Sébastien Helleu | |
buffer (closes #1699) | |||
2022-01-17 | core: update copyright dates | Sébastien Helleu | |
2022-01-15 | spell: 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. | |||
2021-07-04 | typing: add typing plugin | Sébastien Helleu | |
2021-05-25 | core: replace freenode by libera in command examples | Sébastien Helleu | |
2021-05-11 | core: split WeeChat home in 4 directories, use XDG directories by default ↵ | Sébastien Helleu | |
(issue #1285) The 4 directories (which can be the same): - config: configuration files, certificates - data: log/upgrade files, local plugins, scripts, xfer files - cache: script repository, scripts downloaded (temporary location) - runtime: FIFO pipe, relay UNIX sockets | |||
2021-01-02 | core: update copyright dates | Sébastien Helleu | |
2020-11-20 | spell: fix crash with IRC color codes in command line (closes #1589) | Sébastien Helleu | |
2020-11-19 | core: add missing cast to unsigned char on first argument to function isdigit | Sébastien Helleu | |
2020-11-13 | spell: fix refresh of bar item "spell_suggest" when the input becomes empty ↵ | Sébastien Helleu | |
(closes #1586) When the input is empty, length of string is zero: when sending zero to function weechat_string_dyn_alloc, the function returns NULL and therefore we return immediately instead of handling the empty input, which is a valid value. The regression was introduced by the use of dynamic strings, commit: 299f74bfef9e0d239ad141a4df3b2dcf11a4c0da | |||
2020-08-28 | spell: also skip IRC color attributes codes when checking words in input ↵ | Sébastien Helleu | |
(issue #1547) | |||
2020-08-25 | spell: skip IRC color codes when checking words in input (closes #1547) | Sébastien Helleu | |
2020-08-24 | spell: use dynamic string functions to return modified string | Sébastien Helleu | |
2020-08-23 | api: add argument "bytes" in function string_dyn_concat | Sébastien Helleu | |
2020-08-22 | spell: properly skip WeeChat color codes when checking words in input ↵ | Sébastien Helleu | |
(closes #1547) | |||
2020-05-08 | core: rename functions hook_completion_{get_string|list_add} to ↵ | Sébastien Helleu | |
completion_{get_string|list_add} Old functions are kept for compatibility reasons. | |||
2020-01-04 | core: update copyright dates | Sébastien Helleu | |
2019-10-01 | core: fix style in CMake files | Sébastien Helleu | |
2019-06-15 | api: add argument "strip_items" in function string_split | Sébastien Helleu | |
2019-06-07 | alias: remove default aliases /AME and /AMSG | jesopo | |
2019-06-04 | spell: add a warning if aspell.conf is still present (on first spell load) | Sébastien Helleu | |
2019-04-25 | cmake: allow custom libdir (fix #1341) | Ryan Farley | |
Allows for custom LIBDIR to specified with cmake builds. WEECHAT_LIBDIR is used for a custom Weechat directory, or set from LIBDIR (as LIBDIR used to be set). | |||
2019-04-13 | api: return allocated string in hook_info callback and function info_get | Sébastien Helleu | |
2019-03-24 | core: add CMake option "ENABLE_CODE_COVERAGE" to compile with code coverage ↵ | Sébastien Helleu | |
options This option is OFF by default and should be enabled only for tests, to measure test coverage. | |||
2019-03-10 | core: replace argument "keep_eol" by "flags" in function string_split ↵ | Sébastien Helleu | |
(closes #1322) | |||
2019-02-19 | spell: rename "aspell" plugin to "spell" (issue #1299) | Sébastien Helleu | |
The following things have been renamed: - file aspell.conf -> spell.conf - options aspell.* -> spell.* - bar item aspell_dict -> spell_dict - bar item and local variable aspell_suggest -> spell_suggest - info aspell_dict -> spell_dict |