summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2020-06-21irc: check that the first nick char is not a prefix char or chantype in ↵Sébastien Helleu
function irc_nick_is_nick
2020-06-21irc: change default chantypes from "#&+!" to "#&"Sébastien Helleu
The default chantypes was conflicting with irc_server_prefix_chars_default ("@+").
2020-06-20irc: add support of UTF8MAPPING, add support of optional server in info ↵Sébastien Helleu
"irc_is_nick" (closes #1528)
2020-06-20irc: return NULL in info "irc_is_channel" if arguments is NULL or empty stringSébastien Helleu
2020-06-15irc: fix display of ACCOUNT message when the account name is ":*" (closes #1526)Sébastien Helleu
2020-06-15irc: skip semicolon before account name in ACCOUNT messageSébastien Helleu
2020-06-10buflist: add "window" pointer in bar item evaluation only if it's not NULL ↵Sébastien Helleu
(if bar type is "window")
2020-06-07guile: fix compiler warning (issue #1514)Sébastien Helleu
2020-06-07guile: fix memory leak in output portJoram Schrijver
2020-06-07guile: re-enable "/guile eval" (issue #1098)Joram Schrijver
With the output port now properly implemented for Guile >= 2.2, this command works again.
2020-06-07guile: fix printing of output to buffer (issue #1098)Joram Schrijver
The support for Guile 2.2 did not implement the custom port correctly, and did not configure it to be the default output port. This caused output from Guile to be printed straight to the TTY, breaking the WeeChat interface. Note that the port is unbuffered, so that code like (display "test") immediately results in output, without an explicit call to force-output.
2020-06-04irc: fix add of ignore with flags in regex, display full ignore mask in list ↵Sébastien Helleu
of ignores (closes #1518)
2020-06-03irc: display account messages in buffersMax Teufel
2020-05-21core: move functions string_base_encode and string_base_decode from ↵Sébastien Helleu
plugin-api.c to wee-string.c
2020-05-19irc: do not remove spaces at the end of users messages received (closes #1513)Sébastien Helleu
The regression was introduced in version 2.5 by commit 2b70d71aa1c891f2f251aa775cf239e5611576d5.
2020-05-17trigger: add (void) before calls to trigger_callback_execute when the ↵Sébastien Helleu
returned value is ignored
2020-05-17trigger: only return trigger's return code when condition evaluates to trueSimmo Saan
2020-05-16core: update translations (closes #1245, closes #1257)Sébastien Helleu
2020-05-16core: rename info_hashtable "gui_focus_info" to "focus_info" (issue #1257)Sébastien Helleu
2020-05-16core: move creation of info_hashtable from gui-focus.c to plugin-api-info.c ↵Sébastien Helleu
(issue #1257)
2020-05-12relay: increase default limits for IRC backlog optionsSébastien Helleu
Default value is changed for the following options: * relay.irc.backlog_max_minutes: from 1440 to 0 (unlimited) * relay.irc.backlog_max_number: from 256 to 1024
2020-05-09irc: fix realname delimiter color in WHO/WHOX responseSimmo Saan
2020-05-09api: use buffer pointer in argument "modifier_data" sent to weechat_print ↵Sébastien Helleu
modifier callback (closes #42)
2020-05-08irc: reuse a buffer with wrong type "channel" when a private message is ↵Sébastien Helleu
received (closes #869)
2020-05-08core: 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-05-07trigger: fix truncated trigger command with commands /trigger ↵Sébastien Helleu
input|output|recreate
2020-05-03exec: return NULL immediately if the task id is invalidSébastien Helleu
2020-05-03exec: fix use of same task id for different tasks (closes #1491)Sébastien Helleu
2020-05-02relay: add "compression" in response to handshake command (weechat protocol)Sébastien Helleu
The value can be "zlib" (default in relay) or "off".
2020-05-01relay: fix slow send of data to clients when SSL is enabledSébastien Helleu
2020-04-28fifo: Open the fifo for writing tooQuentin Glidic
That will make it survive, avoiding the need to reopen it. Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2020-04-28relay: add command "completion" in weechat relay protocol (closes #1484)Sébastien Helleu
2020-04-28api: return integer in function gui_completion_search (issue #1484)Sébastien Helleu
2020-04-27api: add hdata "completion_word" (issue #1484)Sébastien Helleu
2020-04-27api: add functions completion_new, completion_search and completion_free ↵Sébastien Helleu
(issue #1484)
2020-04-26relay: fix error message for an invalid buffer received in a command ↵Sébastien Helleu
(weechat protocol)
2020-04-24buflist: add default key alt-shift-B to toggle buflistSébastien Helleu
2020-04-24buflist: add options enable/disable/toggle in command /buflistSébastien Helleu
2020-04-20tests: add tests on functions relay_auth_password_hash_algo_search and ↵Sébastien Helleu
relay_auth_generate_nonce
2020-04-18trigger: do not hide values of options with /set command in cmd_pass triggerSébastien Helleu
2020-04-18core: make GnuTLS a required dependencySébastien Helleu
2020-04-18relay: move variable nonce in relay client structureSébastien Helleu
2020-04-18relay: allow only one handshake in weechat protocolSébastien Helleu
2020-04-18relay: immediately close connection if the handshake failed (weechat protocol)Sébastien Helleu
2020-04-17relay: rename configuration options and keywords in handshake command ↵Sébastien Helleu
(weechat protocol) Configuration options renamed: * relay.network.auth_password -> relay.network.password_hash_algo * relay.network.hash_iterations -> relay.network.password_hash_iterations Handshake command options renamed: * password -> password_hash_algo Handshake reply keys renamed: * auth_password -> password_hash_algo * hash_iterations -> password_hash_iterations
2020-04-17doc: replace "safest" by "most secure" (relay protocol)Sébastien Helleu
2020-04-16relay: fix "id" sent in response to handshake command (weechat protocol)Sébastien Helleu
2020-04-15relay: add missing gcrypt lib in CMake and autotools filesSébastien Helleu
This fixes build on Cygwin.
2020-04-14relay: add command "handshake" in weechat relay protocol and nonce to ↵Sébastien Helleu
prevent replay attacks (closes #1474) This introduces a new command called "handshake" in the weechat relay protocol. It should be sent by the client before the "init" command, to negotiate the way to authenticate with a password. 3 new options are added: * relay.network.auth_password * relay.network.hash_iterations * relay.network.nonce_size
2020-04-12relay: update message displayed when the client is connected/authenticatedSébastien Helleu