summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2014-08-02Merge branch 'travis-tests'Sébastien Helleu
2014-08-02tests: remove test of han char in utf8_strlen_screen (failing on Ubuntu Precise)Sébastien Helleu
2014-08-02tests: remove test of han char in utf8_char_size_screen (failing on Ubuntu ↵Sébastien Helleu
Precise)
2014-08-02core: remove unused ubuntu PPA (Travis CI)Sébastien Helleu
2014-08-02core: replace package libcpputest-dev by amd64 version (Travis CI)Sébastien Helleu
2014-08-02api: fix function string_format_size on 32-bit systemsSébastien Helleu
2014-08-02tests: fix compilation of testsSébastien Helleu
The header gui-curses.h doesn't need to be included (this causes an error because the real ncurses lib header is not found when compiling tests).
2014-08-02irc: fix duplicate sender name in display of wallops (closes #142, closes #145)Sébastien Helleu
2014-08-01tests: add tests of function string_format_sizeSébastien Helleu
2014-07-31tests: add tests of functions string_iconv*Sébastien Helleu
2014-07-30core: check that from/to arguments are not NULL in base16/64 functionsSébastien Helleu
2014-07-29tests: add tests of function string_is_word_charSébastien Helleu
2014-07-28core: check that string is not NULL in function string_input_for_bufferSébastien Helleu