Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-28 | core, plugins: make info, info_hashtable and infolist case sensitive (issue ↵ | Sébastien Helleu | |
#1872) | |||
2023-01-28 | irc: make case insensitive comparison with a lower case string (issue #1872) | Sébastien Helleu | |
This is faster because with case insensitive comparison, the chars are converted to lower case anyway before being compared. | |||
2023-01-28 | core: make case insensitive comparison with a lower case string (issue #1872) | Sébastien Helleu | |
This is faster because with case insensitive comparison, the chars are converted to lower case anyway before being compared. | |||
2023-01-28 | core, plugins: make commands, hook command_run, completions and aliases case ↵ | Sébastien Helleu | |
sensitive (issue #1872) | |||
2023-01-28 | alias: make aliases case sensitive, convert default aliases to lower case ↵ | Sébastien Helleu | |
(issue #1872) | |||
2023-01-28 | core: make configuration files, sections and options case sensitive (issue ↵ | Sébastien Helleu | |
#1872) | |||
2023-01-28 | core: add function config_file_get_configs_by_priority (issue #1872) | Sébastien Helleu | |
2023-01-28 | doc/api: add priority in function config_new (issue #1872) | Sébastien Helleu | |
2023-01-28 | core: simplify code in config functions (issue #1872) | Sébastien Helleu | |
2023-01-28 | core: sort configuration files by name, reload them by priority (issue #1872) | Sébastien Helleu | |
2023-01-28 | plugins: set priority in calls to weechat_config_new (issue #1872) | Sébastien Helleu | |
2023-01-28 | core: set priority in calls to config_file_new (issue #1872) | Sébastien Helleu | |
2023-01-28 | core: add priority in config file (issue #1872) | Sébastien Helleu | |
Priority is now allowed in function config_file_new, parameter `name`, with the same format as hooks: "priority|name" (for example: "2000|test"). If not specified, the default priority is 1000. | |||
2023-01-28 | core: move function hook_get_priority_and_name to wee-string.c (issue #1872) | Sébastien Helleu | |
2023-01-25 | doc: update German auto-generated file | Sébastien Helleu | |
2023-01-25 | core: update German translations | Nils Görs | |
2023-01-24 | irc: add option `join` in command `/autojoin` | Sébastien Helleu | |
2023-01-24 | doc: update auto-generated files with hdata | Sébastien Helleu | |
2023-01-23 | irc: fix autojoin on server connection (closes #1873) | Sébastien Helleu | |
Now the autojoin is made only one time, until the server buffer is closed. A new flag `autojoin_done` is added to know whether the autojoin has already been done or not on the server. It is set to 1 on first autojoin, and reset to 0 only if the server buffer is closed. The flag `reconnect_join` is removed, because it is now obsolete. | |||
2023-01-16 | core: update German translations | Nils Görs | |
2023-01-15 | irc: update message with number of nicks when joining a channel | Sébastien Helleu | |
Changed: - "N voices" to "N voiced" - "N normals" to "N regular" | |||
2023-01-15 | debian: remove remaining workarounds for autotools build | Sébastien Helleu | |
2023-01-14 | tests: add tests on string comparison functions | Sébastien Helleu | |
2023-01-14 | ci: fix macOS CI (temporary fix) | Sébastien Helleu | |
Unlink Python binaries so that the install of packages via brew is a success. See: https://github.com/actions/setup-python/issues/577 | |||
2023-01-14 | fset: fix typo in French translation of /help fset.look.condition_catch_set | Sébastien Helleu | |
2023-01-12 | core: remove useless continue statement in loop | Sébastien Helleu | |
2023-01-12 | core: display error in command if allocation of arraylist fails | Sébastien Helleu | |
2023-01-12 | core: fix display glitch in command errors when a wide char is set in option ↵ | Sébastien Helleu | |
weechat.look.command_chars (closes #1871) | |||
2023-01-10 | ci: fix typo | Sébastien Helleu | |
2023-01-10 | ci: fix run of code coverage | Sébastien Helleu | |
2023-01-08 | python: remove unneded call to deprecated function PySys_SetArgv | Sébastien Helleu | |
This function is deprecated since Python 3.11. | |||
2023-01-08 | core: do not allocate strings in dir_search_full_lib_name_ext, check return ↵ | Sébastien Helleu | |
code of snprintf This removes three compiler warnings. | |||
2023-01-08 | irc: check return code of snprintf | Sébastien Helleu | |
This removes two compiler warnings. | |||
2023-01-08 | typing: fix crash when pointer buffer is not received in callback for signal ↵ | Sébastien Helleu | |
"input_text_changed" (closes #1869) | |||
2023-01-08 | debian: restore target override_dh_auto_configure (packaging of stable version) | Sébastien Helleu | |
2023-01-08 | debian: restore target override_dh_auto_configure | Sébastien Helleu | |
2023-01-08 | core: update ChangeLog and release notes (closes #1860) | 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-08 | ruby: remove warnings on unused parameters | Sébastien Helleu | |
These warnings may be enabled again in future when Ruby itself will be fixed. | |||
2023-01-08 | php: remove warnings on variables "argc" and "ret_i" that might be clobbered ↵ | Sébastien Helleu | |
by longjmp or vfork | |||
2023-01-08 | Version 3.9-dev | Sébastien Helleu | |
2023-01-08 | Version 3.8 | Sébastien Helleu | |
2023-01-08 | core: add note about case insensitive comparison improved in release notes | Sébastien Helleu | |
2023-01-07 | core: update entries related to CI in ChangeLog | Sébastien Helleu | |
2023-01-07 | ci: remove use of repository ppa:ondrej/php | Sébastien Helleu | |
Now the CI uses the standard PHP version (8.1) from Ubuntu 22.04. | |||
2023-01-07 | php: add proper detection of PHP 8.2 in all cases | Sébastien Helleu | |
2023-01-06 | debian: add symbolic link weechat_raspbian_buster.patch pointing to Debian ↵ | Sébastien Helleu | |
Buster patch | |||
2023-01-06 | core: add CMake test called "notests" when tests are not compiled | Sébastien Helleu | |
Now the command `make test` executes properly and returns 0 when test are not compiled. | |||
2023-01-06 | Revert "core: add a fake target "test" so that `make test` successes when ↵ | Sébastien Helleu | |
tests are not compiled" This reverts commit 129860fd52f3c0c040229a52371798c026fed4ab. | |||
2023-01-05 | core: add a fake target "test" so that `make test` successes when tests are ↵ | Sébastien Helleu | |
not compiled |