Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-01-17 | core: update copyright dates | Sébastien Helleu | |
2021-12-30 | irc: add IRC message tags in messages displayed (closes #1680) | Sébastien Helleu | |
2021-11-07 | irc: extend size of some internal buffers | Sébastien Helleu | |
2021-11-06 | irc: fix join of channels with name longer than 127 chars (closes #1717) | Sébastien Helleu | |
2021-07-04 | irc, typing: display typing status for IRC nicks | Sébastien Helleu | |
2021-07-04 | irc: send typing status as TAGMSG to other users | Sébastien Helleu | |
2021-01-30 | irc: add function irc_server_get_chantypes | Sébastien Helleu | |
2021-01-30 | irc: use server option "default_chantypes" as fallback when automatically ↵ | Sébastien Helleu | |
adding channel type on join | |||
2021-01-30 | irc: simplify code in function irc_channel_is_channel | Sébastien Helleu | |
2021-01-30 | irc: make default chantypes configurable | Matti Virkkunen | |
2021-01-02 | core: update copyright dates | Sébastien Helleu | |
2020-06-21 | irc: change default chantypes from "#&+!" to "#&" | Sébastien Helleu | |
The default chantypes was conflicting with irc_server_prefix_chars_default ("@+"). | |||
2020-06-03 | irc: display account messages in buffers | Max Teufel | |
2020-05-08 | irc: reuse a buffer with wrong type "channel" when a private message is ↵ | Sébastien Helleu | |
received (closes #869) | |||
2020-03-28 | irc: remove empty lines | Sébastien Helleu | |
2020-01-04 | core: update copyright dates | Sébastien Helleu | |
2019-12-15 | irc: fix memory leak when the channel topic is changed | Sébastien Helleu | |
2019-10-11 | irc: add option irc.look.display_pv_warning_address (closes #892) | Sébastien Helleu | |
If the address of remote nick changes in a private buffer, a warning is displayed. | |||
2019-05-12 | irc: rename server variable "nick_host" to "host" | Sébastien Helleu | |
2019-05-10 | irc: set buffer local variable "nick_host" when a channel buffer is opened | Sébastien Helleu | |
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-11-29 | core: use https for links to GNU GPL license | Sébastien Helleu | |
2018-08-15 | irc: add missing initialization of variable "chghost" | Sébastien Helleu | |
2018-07-11 | irc: add nick, host and log tags in message displayed in private buffer when ↵ | Sébastien Helleu | |
the nick comes back on the server (closes #1221) | |||
2018-05-21 | Merge remote-tracking branch 'origin/pr/640' | Sébastien Helleu | |
2018-05-20 | Merge remote-tracking branch 'origin/pr/623' into irc-3.2-cap | Sébastien Helleu | |
2018-03-25 | irc: factorize code to set state of modelists in a channel | Sébastien Helleu | |
2018-03-24 | irc: fix some styles | Sébastien Helleu | |
2018-03-24 | irc: add indexed ban list, add completion for /unban and /unquiet (closes ↵ | Simmo Saan | |
#597, task #11374, task #10876) | |||
2018-01-07 | core: fix some styles | Sébastien Helleu | |
2018-01-05 | core: update copyright dates | Sébastien Helleu | |
2017-11-05 | irc: add smart filtering for chghost messages | Simmo Saan | |
2017-08-12 | core: fix cast of time_t (to "long long" instead of "long") (closes #1051) | Sébastien Helleu | |
2017-06-17 | irc: add hashtables to keep track of all capabilities | Simmo Saan | |
2017-06-10 | core, plugins: fix conditions to insert elements in linked lists | Sébastien Helleu | |
This removes scan-build warnings about dereference of last_xxx null pointers. | |||
2017-03-25 | irc: check that pointers received in arguments are not NULL in "free" functions | Sébastien Helleu | |
Functions: - irc_channel_nick_speaking_time_free - irc_ignore_free - irc_notify_free - irc_raw_message_free - irc_server_outqueue_free | |||
2017-01-01 | core: update copyright dates | Sébastien Helleu | |
2016-06-18 | api: remove functions printf_date() and printf_tags() | Sébastien Helleu | |
2016-03-21 | core: add pointer in some callbacks (closes #406) | Sébastien Helleu | |
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read | |||
2016-01-01 | core: update copyright dates | Sébastien Helleu | |
2015-12-20 | Merge remote-tracking branch 'origin/pr/351' | Sébastien Helleu | |
2015-07-04 | irc: fix type of value returned by function irc_buffer_build_name | Sébastien Helleu | |
2015-04-29 | irc: optimize search of a nick in nicklist (up to 3x faster) | Sébastien Helleu | |
2015-03-07 | irc: use NULL instead of "*" for unidentified nicks | Max Teufel | |
2015-02-21 | irc: remove useless rename of channel buffer on JOIN received with different ↵ | Sébastien Helleu | |
case (closes #336) This bug was introduced by commit 624083f41a6b8abc1a566b33f54bfc226d13886f. | |||
2015-01-25 | irc: send WHOX message only if server supports it | Sébastien Helleu | |
2015-01-25 | irc: remove compiler warning about unused parameter in ↵ | Sébastien Helleu | |
irc_channel_remove_account() | |||
2015-01-25 | irc: fix memory leak on nick account in irc_channel_remove_account() | Sébastien Helleu | |
2015-01-24 | irc: don't keep valid account names when account-notify is disabled | Max Teufel | |