Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-31 | irc: fix target buffer for commands 432/433 when the nickname looks like a ↵ | Sébastien Helleu | |
channel | |||
2023-03-18 | core: bump version to 4.0.0-dev, follow "practical" semantic versioning | Sébastien Helleu | |
2023-02-04 | fix: various code comments | rj1 | |
2023-01-31 | irc: add command `/rules` (closes #1864) | Sébastien Helleu | |
2023-01-31 | irc: add command `/knock` (closes #7) | Sébastien Helleu | |
2023-01-29 | irc: add server option "registered_mode" (closes #1625) | Andrew Potter | |
Two new fields are added in IRC server structure: - "authentication_method", possible values: 0: not authenticated 1: authenticated with SASL 2: authenticated with other method - "sasl_mechanism_used", possible values: see enum t_irc_sasl_mechanism in src/plugins/irc/irc-sasl.h | |||
2023-01-29 | api: readjust string size in function string_dyn_free when string is not ↵ | Sébastien Helleu | |
freed (issue #1875) This frees some allocated memory if size_alloc was greater than size in the dynamic string. | |||
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: check that string parameters are not NULL in search functions ↵ | Sébastien Helleu | |
(issue #1872) | |||
2023-01-28 | irc: make IRC raw filters case sensitive (issue #1872) | Sébastien Helleu | |
Except the IRC command name filter (`m:xxx`). | |||
2023-01-28 | irc: make IRC server names case sensitive (issue #1872) | Sébastien Helleu | |
2023-01-28 | core, plugins: make input actions in buffers case sensitive (issue #1872) | Sébastien Helleu | |
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, 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-24 | irc: add option `join` in command `/autojoin` | 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-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-08 | irc: check return code of snprintf | Sébastien Helleu | |
This removes two compiler warnings. | |||
2023-01-08 | core: remove build with autotools | Sébastien Helleu | |
CMake is now the only way to build WeeChat. | |||
2023-01-03 | irc: properly rename private buffer on notice messages | Sébastien Helleu | |
2023-01-02 | irc: properly rename private buffer on nick changes or private message when ↵ | Sébastien Helleu | |
new nick is the same with different case | |||
2023-01-02 | irc: replace "private window" by "private buffer" in comments | Sébastien Helleu | |
2023-01-01 | core: update copyright dates | Sébastien Helleu | |
2022-12-19 | irc: fix calls to weechat_string_toupper | Sébastien Helleu | |
2022-12-19 | irc: return directly output of string_dyn_free without temporary variable | Sébastien Helleu | |
2022-12-18 | api: return newly allocated string in functions string_tolower and ↵ | Sébastien Helleu | |
string_toupper | |||
2022-12-17 | irc: do not join channels in server autojoin option after reconnection to ↵ | Sébastien Helleu | |
the server (closes #560, bug #21529) | |||
2022-10-12 | irc: escape backslashes in raw buffer (closes #1838) | Sébastien Helleu | |
2022-10-01 | irc: set local variable "filter" when doing `/server raw xxx` with raw ↵ | Sébastien Helleu | |
buffer already opened (closes #1448) | |||
2022-09-26 | irc: fix use of uninitialized variable `ptr_nick` | Sébastien Helleu | |
2022-09-17 | irc: fix message when disconnecting from server in case of high lag when ↵ | Sébastien Helleu | |
server option autoreconnect is off (closes #1708) | |||
2022-09-15 | irc: add option irc.look.display_pv_nick_change | Sébastien Helleu | |
2022-09-10 | irc: replace chars "\01" by spaces in CTCP replies (closes #1819) | Sébastien Helleu | |
This prevents any attack due to an external security issue in the Linux netfilter implementation (nf_conntrack_irc). See: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2663 | |||
2022-09-05 | irc: fix display of message 350 (whois, gateway) (closes #1815) | Sébastien Helleu | |
2022-08-29 | irc: fix target buffer of generic errors when they contain a target nick ↵ | Sébastien Helleu | |
(closes #1814) | |||
2022-08-15 | irc: fix extract of isupport value when it is last in list and without value ↵ | Sébastien Helleu | |
(closes #1807) | |||
2022-08-13 | irc: display ACCOUNT command in private buffers | Sébastien Helleu | |
2022-08-13 | irc: add options and display SETNAME command in channels and private buffers ↵ | Sébastien Helleu | |
(closes #1805) New options: - irc.color.message_setname - irc.look.smart_filter_setname | |||
2022-08-13 | irc: display CHGHOST command in private buffers | Sébastien Helleu | |
2022-08-13 | irc: add missing tag "irc_numeric" in all numeric IRC commands (closes #1804) | Sébastien Helleu | |
2022-08-07 | irc: fix parsing of messages with trailing spaces and no trailing parameter ↵ | Sébastien Helleu | |
(closes #1803) | |||
2022-08-07 | core: add option `-save` in command `/upgrade` (closes #1630) | Sébastien Helleu | |
2022-08-03 | irc: mention how to remove capability in /help cap | Sébastien Helleu | |
2022-07-27 | irc: display an error message when using command /dcc without xfer plugin loaded | Sébastien Helleu | |
2022-07-21 | irc: fix display of TOPIC message with an empty trailing parameter | Sébastien Helleu | |
2022-07-21 | irc: fix display of QUIT message with an empty trailing parameter (closes #1797) | Sébastien Helleu | |
The regression was introduced with the new way to parse IRC message parameters, in version 3.4. | |||
2022-07-20 | irc: use API function string_rebuild_split_string in irc_protocol_string_params | Sébastien Helleu | |
2022-07-20 | api: add arguments "index_start" and "index_end" in function ↵ | Sébastien Helleu | |
string_rebuild_split_string | |||
2022-07-20 | api: rename function string_build_with_split_string to ↵ | Sébastien Helleu | |
string_rebuild_split_string |