summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-12core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2014-08-12doc: add example with "callback_free_key" in function hashtable_set_pointer ↵Sébastien Helleu
(plugin API reference)
2014-08-11core: callback_free_key shouldn't point to already free'd valueAndrew Potter
2014-08-11core: check that callback is not NULL in function string_replace_with_callbackSébastien Helleu
2014-08-10Version 1.0-rc3Sébastien Helleu
2014-08-10core: fix potential crash in case of malloc error when resetting config optionSébastien Helleu
2014-08-10irc: free nick immediately in case of malloc errorSébastien Helleu
2014-08-10core: remove dead assignment in function hook_process_childSébastien Helleu
2014-08-10core: remove dead assignment in function hook_command_execSébastien Helleu
2014-08-10script: fix potential crash in case of malloc errorSébastien Helleu
2014-08-10core: remove dead assignment when converting mouse codeSébastien Helleu
2014-08-10core: fix zero-length malloc of an hashtable item with type "buffer"Sébastien Helleu
2014-08-10core: return immediately if localtime fails in window scrollSébastien Helleu
2014-08-10logger: fix memory leaks in backlogSébastien Helleu
2014-08-10core: fix memory leak on /upgrade when file signature in upgrade file is invalidSébastien Helleu
2014-08-09core: fix memory leak in completion of config options valuesSébastien Helleu
2014-08-09irc: fix memory leak in CTCP answerSébastien Helleu
2014-08-09core: fix memory leak when removing script filesSébastien Helleu
2014-08-09core: fix bug with several arguments for command /buffer clear|hide|unhideSébastien Helleu
2014-08-09exec: invert a condition to make code more readableSébastien Helleu
2014-08-09relay: fix memory leak during handshake on websocketSébastien Helleu
2014-08-09relay: fix memory leak when receiving several lines from client (weechat ↵Sébastien Helleu
protocol)
2014-08-09relay: fix memory leak when receiving commands from client (weechat protocol)Sébastien Helleu
2014-08-09relay: remove dead assignmentSébastien Helleu
2014-08-09relay: fix crash when an IRC "MODE" command is received from client without ↵Sébastien Helleu
arguments
2014-08-09tests: add tests of function string_replace_regexSébastien Helleu
2014-08-08core: check that regex is not NULL in function string_replace_regexSébastien Helleu
2014-08-07core: fix example in comment of function string_replace_regexSébastien Helleu
2014-08-06tests: add TODO comments for missing testsSébastien Helleu
2014-08-05core: add C++ compiler and CppUTest for tests in READMESébastien Helleu
2014-08-04tests: add tests of functions hashtable_hash_key_djb2 and hashtable_newSébastien Helleu
2014-08-03core: update ChangeLogSébastien Helleu
2014-08-03core: display warning on $TERM only if it doesn't start with "screen" (under ↵Sébastien Helleu
screen/tmux)
2014-08-03doc: remove trailing whitespace in Polish user's guideSébastien Helleu
2014-08-03Revert "core: use argument "-i" for sed command (don't create a temporary file)"Sébastien Helleu
This reverts commit b2466aae296dd5c20612f409c2c85bfd808acac2. The option "-i" is not supported on FreeBSD.
2014-08-03update polish docsKrzysztof Korościk
2014-08-03Version 1.0-rc2Sébastien Helleu
2014-08-03core: fix build with autotools and gettext >= 0.19Sébastien Helleu
2014-08-03core: use argument "-i" for sed command (don't create a temporary file)Sébastien Helleu
2014-08-03core: fix display of bar item "buffer_filter" when toggling filters in ↵Sébastien Helleu
current buffer (closes #150)
2014-08-02core: remove "set -x" in build.sh (the executed commands are already displayed)Sébastien Helleu
2014-08-02core: add empty line in .travis.ymlSébastien Helleu
2014-08-02tests: make build.sh show executed commands & ...Mikaela Suomalainen
...try to speed up make by using multiple jobs if there is more than one CPU available Travis CI should now show the commands that build.sh executes in the log. I mean commands, not only their output.
2014-08-02core: enable fast_finishing (Travis CI)Mikaela Suomalainen
fash_finish makes it so that if one job fails, the build is marked as failed without having to wait for the other jobs to finish. If there are still unfinished jobs at the time of failure, they continue running after the build has been marked as failed.
2014-08-02tests: add tests of functions string_is_command_char and string_input_for_bufferSébastien Helleu
2014-08-02tests: add tests of base 16/64 decoding/encodingSébastien Helleu
2014-08-02core: fix result of hash function (in hashtables) on 32-bit systemsSébastien Helleu
2014-08-02api: fix function string_decode_base64Sébastien Helleu
The result of function was sometimes wrong, for example base64 decoding of "YWJj" was returning "ab" instead of "abc".
2014-08-02trigger: fix hook count on 32-bit systemsSébastien Helleu
2014-08-02relay: fix number of bytes sent/received on 32-bit systemsSébastien Helleu