summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-02-05trigger: fix long linesSébastien Helleu
2016-02-05Merge pull request #511 from juanfra684/patch-1Sébastien Helleu
trigger: add recover to cmd_pass/msg_auth, and regain to msg_auth
2016-02-04relay: fix commentSébastien Helleu
2016-02-02relay: fix typo in a commentSébastien Helleu
2016-01-31core: fix typo in a commentSébastien Helleu
2016-01-24doc: add an example in function string_split (plugin API reference)Sébastien Helleu
2016-01-23relay: fix command "input" received from clients (weechat protocol) (closes ↵Sébastien Helleu
#663) The command "input" received with only spaces in content of message was ignored by WeeChat (because of the split on spaces).
2016-01-23core: fix number of arguments returned by string_splitSébastien Helleu
When keep_eol is 2 and separators are found at the end of string, the function returned argc + 1 instead of argc.
2016-01-17irc: add missing completion "*" for target in command /msgSébastien Helleu
2016-01-17irc: fix /msg command with multiple targets including "*"Sébastien Helleu
2016-01-17irc: add examples in /help ctcpSébastien Helleu
2016-01-17irc: add a constant with list of supported CTCPs for completion in command /ctcpSébastien Helleu
2016-01-17irc: add missing completion "*" for target in command /ctcpSébastien Helleu
2016-01-17irc: do not exit from function in case of error with "ctcp *"Sébastien Helleu
When "*" is a target in the middle of a list, for example "#chan1,*,#chan2", if there's an error with "*", the CTCP should be sent to #chan1 and #chan2, even if "*" fails (and not only #chan1 like it was previously).
2016-01-17irc: free allocated memory in case of early exit from the functionSébastien Helleu
2016-01-17irc: fix code styleSébastien Helleu
2016-01-17Merge remote-tracking branch 'origin/pr/493'Sébastien Helleu
2016-01-16Merge pull request #656 from mojadita/some-externs-missing-for-osx-compilingSébastien Helleu
Add extern keyword several places to link in osx
2016-01-15Add extern keyword several places to link in osxLuis Colorado
2016-01-06core: remove unused option weechat.color.nicklist_offlineSimmo Saan
Added in c1c1005b364d28409339f46b5233bcb0f2f86ed7.
2016-01-06irc: fix channel forwarding (closes #643)Sébastien Helleu
The problem happens when the option irc.look.buffer_open_before_{autojoin|join} is on.
2016-01-05trigger: add info in error messagesSébastien Helleu
2016-01-05alias: do not allow slashes and spaces in alias name (closes #646)Sébastien Helleu
2016-01-03irc: remove argument "clear" from command /cap (issue #8, closes #641)Sébastien Helleu
2016-01-02irc: evaluate content of server option "addresses"Sébastien Helleu
2016-01-01core: update copyright datesSébastien Helleu
2015-12-31core: fix execution of empty command nameSébastien Helleu
The strings "/" and "/ " are not considered as valid commands any more.
2015-12-24irc: fix typoSébastien Helleu
2015-12-24Merge pull request #634 from KamranMackey/fix-typo-in-weelogSébastien Helleu
core: fix typo in message displayed when the log file is locked
2015-12-24irc: move option irc.network.alternate_nick into servers (closes #633)Sébastien Helleu
2015-12-24Fixed a typo in wee-log.cKamran Mackey
Signed-off-by: Kamran Mackey <kamranm1200@gmail.com>
2015-12-24core: add a parent name in options (closes #629)Sébastien Helleu
Inherited values are now displayed in /set output when the value is null, if a parent option name is defined in option. New option: weechat.color.chat_value_null
2015-12-23core: free global variables at the very endSébastien Helleu
2015-12-23core: fix memory leak when using multiple "-d" or "-r" in command line argumentsSébastien Helleu
2015-12-20irc: add default color for +y mode prefixChristine Dodrill
2015-12-20Merge pull request #626 from sunpoet/masterSébastien Helleu
javascript: fix build on FreeBSD
2015-12-20irc: add missing field realname in function irc_nick_print_log()Sébastien Helleu
2015-12-20irc: fix commentsSébastien Helleu
2015-12-20irc: fix long lineSébastien Helleu
2015-12-20irc: fix condition in account message callbackSébastien Helleu
2015-12-20Merge remote-tracking branch 'origin/pr/351'Sébastien Helleu
2015-12-20relay: add option relay.irc.backlog_since_last_messageNick
2015-12-20Fix build on FreeBSDSunpoet Po-Chuan Hsieh
The error message is as follows: /usr/ports/irc/weechat/work/weechat-1.3/src/plugins/javascript/weechat-js-api.cpp:4206:16: error: use of undeclared identifier 'localtime' date_tmp = localtime (&time); ^ /usr/ports/irc/weechat/work/weechat-1.3/src/plugins/javascript/weechat-js-api.cpp:4208:9: error: use of undeclared identifier 'strftime' strftime (timebuffer, sizeof (timebuffer), "%F %T", date_tmp); ^
2015-12-10irc: add support of SNI in SSL connection to IRC server (closes #620)Sébastien Helleu
2015-12-10script: update help on /script searchSébastien Helleu
2015-12-09script: add completion with languages and extensions, support search by ↵Sébastien Helleu
language/extension in /script search
2015-12-03fifo: fix invalid pointer typeSébastien Helleu
2015-12-02fifo: add /fifo commandSébastien Helleu
2015-12-02script: fix commentSébastien Helleu
2015-11-24irc: add a condition for colon before the password in PASS message (issue #602)Sébastien Helleu
Some weird IRC servers may refuse a PASS command with a colon, so we send a colon only if the password contains spaces or begins with a colon.