summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-05-30irc: fix crash on SASL authentication with mechanism ""ecdsa-nist256p-challenge"Sébastien Helleu
2017-05-28core: remove unused variable "index" in function eval_hdata_get_valueSébastien Helleu
2017-05-27irc: fix memory leak in case of error in "ecdsa-nist256p-challenge" SASL ↵Sébastien Helleu
mechanism
2017-05-24buflist: increase size of hashtables used for string evaluation (issue #998)Sébastien Helleu
This should make refresh of buflist bar item a bit faster.
2017-05-24buflist: fix slow switch of buffer when there are a lot of buffers opened ↵Sébastien Helleu
(closes #998) The function hdata_search (which evaluates a condition for each item in a list) is too slow to search server and channel on each buffer. It is replaced by a manual search in the list (using weechat_hdata_string to get the name), much faster.
2017-05-24irc: remove unused variable in function irc_message_parseSébastien Helleu
2017-05-23buflist: add keys F1/F2, alt+F1/alt+F2 to scroll the buflist barSébastien Helleu
2017-05-22core: fix potential use of NULL pointer in function arraylist_clearSébastien Helleu
2017-05-21core: remove useless conditionSébastien Helleu
Variables base_word and nick can not be NULL here.
2017-05-20core: allow index for hdata arrays in evaluation of expressionsSébastien Helleu
2017-05-19relay: fix parsing of CAP command arguments in irc protocol (closes #995)Sébastien Helleu
2017-05-19buflist: add variable ${current_buffer} in bar item evaluationSébastien Helleu
2017-05-18buflist: add missing indentation in /help buflistSébastien Helleu
2017-05-18buflist: add option "bar" in command /buflist, do not automatically add the ↵Sébastien Helleu
bar when buflist is disabled (closes #994)
2017-05-15script: fix typo in a commentSébastien Helleu
2017-05-15buflist: add a variable to store the size of arraylistSébastien Helleu
2017-05-13buflist: fix uninitialized hdata pointer in focus callbackSébastien Helleu
2017-05-10script: remove dead assignment in function script_action_install_process_cbSébastien Helleu
2017-05-10core: remove dead assignment in function gui_input_history_nextSébastien Helleu
2017-05-10buflist: fix authorsSébastien Helleu
2017-05-10buflist: remove void action on variables used in the functionSébastien Helleu
2017-05-10buflist: remove unused includesSébastien Helleu
2017-05-06irc: fix update of server addresses on reconnection when the evaluated ↵Sébastien Helleu
content has changed (closes #925)
2017-05-06core: add option weechat.completion.nick_case_sensitive (closes #981)Sébastien Helleu
2017-05-05buflist: add option buflist.look.enabledSébastien Helleu
2017-05-04core: fix memory leak in display of mouse event debug infoSébastien Helleu
2017-05-03buflist: add all buffer hdata in focus callbackSébastien Helleu
2017-05-02irc: add option "open" in command /server (closes #966)Sébastien Helleu
2017-04-30buflist: fix sort of merged and inactive buffersSébastien Helleu
2017-04-29core: improve translation of /help evalSébastien Helleu
2017-04-29core: add wildcard matching operators to eval (closes #608)Simmo Saan
2017-04-27irc: fix crash in case of invalid server reply during SASL authentication ↵Tobias Stoeckmann
with dh-blowfish or dh-aes mechanism These mechanisms are not recommended anyway because they are considered as insecure.
2017-04-26buflist: add support of hdata "irc_server" and "irc_channel" in sort option ↵Sébastien Helleu
(closes #968)
2017-04-25buflist: add pointers to IRC server and channelSébastien Helleu
New pointers in evaluated formats: - irc_server: IRC server - irc_channel: IRC channel
2017-04-25buflist: add option buflist.format.nick_prefixSébastien Helleu
2017-04-25core: fix check of condition in ${if:...} (evaluated strings)Sébastien Helleu
2017-04-25core: fix command /cursor stop (do not toggle cursor mode) (closes #964)Sébastien Helleu
2017-04-25core: add new cut formats in function commentSébastien Helleu
2017-04-24core: add a way to count the suffix length in max chars displayed in cut of ↵Sébastien Helleu
string ("cut:" and "cutscr:") (closes #963) The format to use is one of: - ${cut:+max,suffix,string} - ${cutscr:+max,suffix,string} With the "+" before max, WeeChat ensures there are at most "max" chars in output, including the length of suffix string.
2017-04-23buflist: add option buflist.format.indentSébastien Helleu
2017-04-23script: remove option script.scripts.url_force_https, use HTTPS by default ↵Sébastien Helleu
in option script.scripts.url (issue #253)
2017-04-22core: ensure length is not negative in function string_strndupSébastien Helleu
2017-04-22irc: fix parsing of DCC filenameTobias Stoeckmann
2017-04-21doc: fix translation of command "eval" in user's guideSébastien Helleu
2017-04-21core: add link to function color (plugin API reference) in /help evalSébastien Helleu
2017-04-20buflist: add example in /help buflist.look.display_conditionsSébastien Helleu
2017-04-20buflist: remove foreground color from default value of option ↵Sébastien Helleu
buflist.format.buffer_current (closes #954) The foreground is not needed because it is overriden by the hotlist color.
2017-04-20buflist: fix refresh of buflist bar item when the option ↵Sébastien Helleu
buflist.look.display_conditions is reset
2017-04-08core: fix typo in /help bufferarza
2017-04-07Merge pull request #944 from arza-zara/duplicate_sigquitSébastien Helleu
core: remove duplicate util_catch_signal for SIGQUIT