summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-23irc: use MONITOR instead of ISON for /notify when it is available on server ↵Sebastien Helleu
(task #11477) (patch from Nils Görs)
2014-01-23core: update german translationsNils Görs
2014-01-22core: revert the rename of option weechat.look.save_layout_on_exitSebastien Helleu
2014-01-22core: fix typo in /help printSebastien Helleu
2014-01-22api: add function "infolist_search_var"Sebastien Helleu
2014-01-21core: rename option weechat.look.save_layout_on_exit to ↵Sebastien Helleu
weechat.look.store_layout_on_exit, replace "save" by "store" for layouts
2014-01-21core: change format of buffer name in output of /bufferSebastien Helleu
Now the full name of buffer is displayed, without parentheses around the plugin name. The old ouput was: [1] (core) weechat (notification: all) [1] (irc) server.freenode (notification: all) [2] (irc) freenode.#weechat (notification: all) Now it is: [1] core.weechat (notification: all) [1] irc.server.freenode (notification: all) [2] irc.freenode.#weechat (notification: all)
2014-01-21doc: update description of signal "signal_sigwinch" (plugin API reference)Sebastien Helleu
2014-01-21core: delay the signal "signal_sigwinch" after WeeChat screen refreshSebastien Helleu
The signal is sent after WeeChat screen refresh, so all sizes for windows, bars, ... are already adjusted to the new terminal size.
2014-01-21core: add signals "signal_sighup" and "signal_sigwinch" (terminal resized)Sebastien Helleu
2014-01-21irc: do not display names by default when joining a channel (task #13045)Sebastien Helleu
2014-01-21core: update translationsSebastien Helleu
2014-01-21irc: refactor code in gnutls callback to display certificates even if option ↵Sebastien Helleu
ssl_fingerprint is set
2014-01-21irc: check that server option ssl_fingerprint has exactly 40 hexadecimal ↵Sebastien Helleu
digits (when set to non-empty value)
2014-01-21irc: add server option "ssl_fingerprint" (task #12724)Maarten de Vries
2014-01-20irc: add comment with return value for function irc_server_gnutls_callbackSebastien Helleu
2014-01-20irc: display PONG answer when resulting from manual /ping commandSebastien Helleu
2014-01-19core: add command /printSebastien Helleu
2014-01-18core: fix typo in arguments description of command /muteSebastien Helleu
2014-01-18core: reformat hook_command argumentsSebastien Helleu
2014-01-18core: update some function commentsSebastien Helleu
2014-01-17doc: add Japanese developer's guideRyuunosuke Ayanokouzi
2014-01-17doc: fix typo in developer's guideSebastien Helleu
2014-01-16core: set max value for option weechat.look.hotlist_names_count to ↵Sebastien Helleu
GUI_BUFFERS_MAX (10000)
2014-01-15doc: fix errors in prototype and example of functions tolower/toupper ↵Sebastien Helleu
(plugin API reference)
2014-01-15core: add option weechat.look.tab_widthSebastien Helleu
2014-01-14core: add completion "plugins_installed"Sebastien Helleu
2014-01-14doc: update Japanese FAQRyuunosuke Ayanokouzi
2014-01-13core: fix typo in /help weechat.look.highlight_regexSebastien Helleu
2014-01-13core: add Japanese plugin API reference in debian packagingSebastien Helleu
2014-01-13core: add Polish user's guide in debian packagingSebastien Helleu
2014-01-13core: fix typos in ChangeLogSebastien Helleu
2014-01-13doc: add Japanese plugin API reference, update Japanese translations and docsRyuunosuke Ayanokouzi
2014-01-12doc: move some tables in plugin API referenceSebastien Helleu
2014-01-12doc: fix typos in plugin API referenceSebastien Helleu
2014-01-12doc: use infinitive form for description of functions in french plugin API ↵Sebastien Helleu
reference
2014-01-12doc: move table with signals below all arguments and return value in ↵Sebastien Helleu
function hook_signal (plugin API reference)
2014-01-11lua: fix detection of Lua 5.2 in autotools (patch #8270)Andrew Potter
lua_open() isn't defined on Lua 5.2 on Fedora 20. luaL_newstate() is used in lua 5.1+, but lua 5.0 only has lua_main(). This adds a test using luaL_newstate() if the lua_main() test fails.
2014-01-11doc: add missing functions strlen_screen and hook_set in scripting guideSebastien Helleu
2014-01-11api: add stdin options in functions hook_process_hashtable and hook_set ↵Sebastien Helleu
(task #10847, task #13031) The function hook_set has been added in script API.
2014-01-11irc: fix time parsed in tag of messages on CygwinSebastien Helleu
2014-01-10xfer: add gcrypt library for link of pluginSebastien Helleu
2014-01-10irc: add missing include of netinet/in.h (fix compilation error on FreeBSD)Sebastien Helleu
2014-01-09core: optimize xxx_valid() functions: return immediately if pointer is NULLSebastien Helleu
2014-01-09core: add "POSIX extended" in description of options/commands/functions ↵Sebastien Helleu
using regular expressions
2014-01-09doc: add missing function "string_has_highlight_regex" in italian plugin API ↵Sebastien Helleu
reference
2014-01-09relay: fix memory leak on unload of relay pluginSebastien Helleu
2014-01-09doc: update function network_connect_to (plugin API reference)Sebastien Helleu
2014-01-09core: update translationsSebastien Helleu
2014-01-09xfer: add support of IPv6 for DCC chat/file (patch #7992)Andrew Potter