summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-07script: fix scroll on script buffer in the detailed view of script (closes #6)Sebastien Helleu
2014-03-07core: fix "/window scroll -N" on a buffer with free contentSebastien Helleu
2014-03-07doc: update German auto-generated filesSebastien Helleu
2014-03-07relay: fix crash on /upgrade received from a client (weechat protocol)Sebastien Helleu
Some commands like /upgrade sent by relay client can cause problems, because they were executed immediately (while relay code is running). The /upgrade command unloads all plugins, so the result is unpredictable (it can cause a crash). This commit adds a timer (1 millisecond) to delay the execution of command after we go back in the WeeChat main loop.
2014-03-06de.po: add missing translationsnils_2
2014-03-06core: add option weechat.look.hotlist_add_conditions, remove option ↵Sebastien Helleu
weechat.look.hotlist_add_buffer_if_away
2014-03-06core: fix recursive calls to function eval_expressionSebastien Helleu
2014-03-06core: add a WeeChat screenshot in README.asciidocSebastien Helleu
2014-03-06core: add asciidoc attribute "lang" in Contributing and READMESebastien Helleu
2014-03-05core: add sub-sections and note about scripts in Contributing.asciidocSebastien Helleu
2014-03-05core: fix typo in Contributing.asciidocSebastien Helleu
2014-03-05core: add file Contributing.asciidocSebastien Helleu
2014-03-05core: move content of INSTALL.asciidoc into README.asciidocSebastien Helleu
2014-03-05core: rename file NEWS.asciidoc to ReleaseNotes.asciidocSebastien Helleu
2014-03-05relay: add info "relay_client_count" with optional status name as argumentSebastien Helleu
Use in evaluated strings (for example in /eval or triggers): - "${info:relay_client_count}": total number of relay clients (any status) With a specific status: - "${info:relay_client_count,connecting}" - "${info:relay_client_count,waiting_auth}" - "${info:relay_client_count,connected}" - "${info:relay_client_count,auth_failed}" - "${info:relay_client_count,disconnected}"
2014-03-05relay: add signals "relay_client_xxx" for client status changes (closes #2)Sebastien Helleu
New signals: - relay_client_connecting - relay_client_waiting_auth - relay_client_connected - relay_client_auth_failed - relay_client_disconnected
2014-03-05core: add link to formatted version of {ChangeLog|NEWS}.asciidocSebastien Helleu
2014-03-05core: add .asciidoc files in main Makefile.amSebastien Helleu
2014-03-05core: add "foreign" for AM_INIT_AUTOMAKE to ignore missing files and remove ↵Sebastien Helleu
some warnings
2014-03-04Use asciidoc file ending for all asciidoc filesTor Hveem
2014-03-04trigger: update description of trigger pluginSebastien Helleu
2014-03-04debian: replace rmodifier by trigger in control fileSebastien Helleu
2014-03-04core: mute all buffers by default in command /mute (replace option -all by ↵Sebastien Helleu
-core)
2014-03-04core: save and restore mute state in command /mute (bug #41748)Sebastien Helleu
2014-03-04trigger: add some missing "+" after spaces in regex of default triggers ↵Sebastien Helleu
cmd_pass/msg_auth
2014-03-04rmodifier: remove plugin (replaced by trigger)Sebastien Helleu
2014-03-04doc: update German auto-generated filesSebastien Helleu
2014-03-03de.po: update german translationnils_2
2014-03-03doc: update links to git repositories (savannah -> github)Sebastien Helleu
2014-03-02doc: add trigger example to colorize URLsSebastien Helleu
2014-03-02core: fix memory in execution of commandsSebastien Helleu
This memory leak was introduced by commit aa81067ad070f05a4aaf98383781eba0fbafefd6
2014-03-02core: fix memory leak when removing a hdataSebastien Helleu
2014-03-02core: fix memory leak in evaluation of sub-conditionsSebastien Helleu
2014-03-02trigger: add variable "tg_notify" (notify level of a message, if different ↵Sebastien Helleu
from "none")
2014-03-02doc: add trigger doc in user's guideSebastien Helleu
2014-03-02trigger: allow chars '\' and '(' as delimiter in regexSebastien Helleu
2014-03-02trigger: do not create the trigger with /trigger add if the regex is invalidSebastien Helleu
2014-03-01trigger: fix typo in /help triggerSebastien Helleu
2014-03-01trigger: fix typo in /help triggerSebastien Helleu
2014-03-01trigger: make optional the alignment on second and max calls (in hook timer)Sebastien Helleu
2014-02-28irc: fix colors in message with CTCP reply sent to another userSebastien Helleu
2014-02-28irc: evaluate content of server options "username" and "realname"Sebastien Helleu
2014-02-28doc: update auto-generated files with WeeChat commandsSebastien Helleu
2014-02-28core: fix output of /eval -n when there is a tab in outputSebastien Helleu
2014-02-28api: add support of escaped strings in function string_eval_expression and ↵Sebastien Helleu
command /eval
2014-02-28trigger: allow empty return code in command /trigger {add|addoff|addreplace}Sebastien Helleu
2014-02-28xfer: replace constant by sizeof in a call to snprintfSebastien Helleu
2014-02-28rmodifier: fix size used in a snprintfSebastien Helleu
2014-02-28relay: fix size used in a snprintfSebastien Helleu
2014-02-28irc: fix size used in some snprintfSebastien Helleu