summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-10-17irc: shorten error in case of missing parameters in command receivedSébastien Helleu
2021-10-17irc: fix number of required parameters in generic error command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "nick" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "mode" command callbackSébastien Helleu
2021-10-17irc: rename macro IRC_PROTOCOL_CHECK_HOST to IRC_PROTOCOL_CHECK_PREFIXSébastien Helleu
2021-10-17irc: use parsed command parameters in "kill" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "kick" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "join" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "invite" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "fail", "warn" and "note" command ↵Sébastien Helleu
callbacks
2021-10-17irc: use parsed command parameters in "generic_error" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "error" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "chghost" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "cap" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "away" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "authenticate" command callbackSébastien Helleu
2021-10-17irc: use parsed command parameters in "account" command callbackSébastien Helleu
2021-10-17irc: fix typo in a commentSébastien Helleu
2021-10-17irc: replace "message" by "command" in description of functionsSébastien Helleu
2021-10-17irc: send parsed parameters to IRC command callbacksSébastien Helleu
2021-10-17irc: parse and return command parameters in message parserSébastien Helleu
2021-10-14tests: check displayed message/error for all simulated IRC commands receivedSébastien Helleu
2021-10-14irc: display command in lower case when there is a parsing errorSébastien Helleu
2021-10-14irc: do not display message with "(null)" for 973/974/975 command received ↵Sébastien Helleu
if pos_mode is NULL
2021-10-13irc: display a single error message when parsing of a command failedSébastien Helleu
2021-10-13irc: display a single error message when a command is not foundSébastien Helleu
2021-10-13irc: do not display message with "(null)" for numeric command received if ↵Sébastien Helleu
pos_args is NULL
2021-10-09irc: fix parsing of CAP message when there is no prefix (closes #1707)Sébastien Helleu
2021-10-02plugins: use a different plugin priority for each scripting languageSébastien Helleu
2021-10-01core: add command /toggleSébastien Helleu
2021-09-27core: check that option is not NULL in function ↵Sébastien Helleu
config_file_option_value_to_string
2021-09-27core: fix search of option when the section is not givenSébastien Helleu
2021-09-27core: check that option_name is not NULL in config file functionsSébastien Helleu
2021-09-21irc: fix parsing of TAGMSG message when there is a colon before the channelSébastien Helleu
This fixes the display of typing notifications on some IRC servers like inspircd.
2021-09-20core: add creation of user variables in evaluated expressions with ↵Sébastien Helleu
${define:name,value}
2021-09-19php: add missing header files in autotools buildSébastien Helleu
2021-09-10core: remove empty line displayed in output of /plugin list <name>Sébastien Helleu
2021-09-09core: add options "-o", "-ol", "-i" and "-il" in command "/plugin list"Sébastien Helleu
2021-09-06core: fix indentation in examples of /help evalSébastien Helleu
2021-09-06api: add split of string and shell arguments in evaluation of expressionsSébastien Helleu
Split of string: ${split:number,separators,flags,xxx} Split of shell arguments: ${split_shell:number,xxx}
2021-09-04relay: fix crash when decoding a malformed websocket frameSébastien Helleu
2021-09-03irc: fix send of empty JOIN when connecting to a server with only parted ↵Sébastien Helleu
channels (closes #1638)
2021-08-31core: add options in command /input and new keys to remove/restore buffers ↵Sébastien Helleu
in hotlist New options in command /input: - hotlist_remove_buffer - hotlist_restore_buffer - hotlist_restore_all New keys: - alt+h, alt+c: clear the whole hotlist (former key: alt+h) - alt+h, alt+m: mark the current buffer as read by removing it from the hotlist - alt+h, alt+r: restore latest hotlist removed in the current buffer - alt+h, alt+shift+R: restore latest hotlist removed in all buffers
2021-08-29api: add "${re:repl_index}" to get the index of replacement in function ↵Sébastien Helleu
string_eval_expression
2021-08-12irc: add option "-parted" in command /allchan (closes #1685)Sébastien Helleu
2021-08-11core: add terminal and color info in output of /debug colorSébastien Helleu
2021-08-08irc: save CLIENTTAGDENY from message 005 in server, do not send typing ↵Sébastien Helleu
messages if "typing" client tag is denied
2021-08-08php: add ifdef for zend_file_handle.filenameAdam Saponara
2021-08-08php: fix PHP 8+ buildAdam Saponara
2021-08-08php: add detection of PHP 8.0, fix compilation errorsSébastien Helleu