summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-27relay: add support of SSL (for irc and weechat protocols), new option ↵Sebastien Helleu
relay.network.ssl_cert_key (task #12044)
2012-07-23irc: replace calls to config_search_with_string with weechat_config_getSebastien Helleu
2012-07-23doc: add missing argument "pos_option_name" in function ↵Sebastien Helleu
"config_search_with_string" (plugin API reference)
2012-07-23relay: add "tags_array" in data sent for message id "_buffer_line_added" ↵Sebastien Helleu
(WeeChat protocol)
2012-07-21core: add missing include of stddef.h in gui-hotlist.cSebastien Helleu
2012-07-21core: add hdata "hotlist"Sebastien Helleu
2012-07-21core: fix crash when reading array value of hdata variable with type ↵Sebastien Helleu
integer/long/time
2012-07-21core: scroll to bottom of window after reaching first or last highlight with ↵Peter Boström
keys alt+"p" / alt+"n"
2012-07-20relay: add object type "arr" (array) in WeeChat protocolSebastien Helleu
2012-07-20core: add support of arrays in hdata variablesSebastien Helleu
2012-07-18core: fix compilation of gui-curses-window.c under SolarisSebastien Helleu
2012-07-17core: fix typo in commentSebastien Helleu
2012-07-17relay: remove unneeded headers included in relay-upgrade.cSebastien Helleu
2012-07-17python: fix detection of python (first try "python2.x" and then "python") ↵Sebastien Helleu
(bug #36835)
2012-07-17doc: remove warning about relay protocol in developmentSebastien Helleu
2012-07-17relay: move creation of client from relay-upgrade.c to relay-client.cSebastien Helleu
2012-07-16relay: fix outqueue pointers in client after upgradeSebastien Helleu
2012-07-16relay: fix NULL pointer on upgrade in client->protocol_args (for WeeChat ↵Sebastien Helleu
protocol)
2012-07-16core: fix french translation of /help repeatSebastien Helleu
2012-07-15irc: fix format of message "USER" (according to RFC 2812) (bug #36825)Sebastien Helleu
Old format was: USER username username address :real name New format is : USER username 0 * :real name And now spaces are automatically replaced by underscores in username (since no space is allowed here).
2012-07-15irc: describe possible values in /help irc.look.display_awaySebastien Helleu
2012-07-14charset: fix typoSebastien Helleu
2012-07-14relay: fix freeze when writing on relay socket (use non-blocking sockets in ↵Sebastien Helleu
relay for irc and weechat protocols) (bug #36655)
2012-07-14charset: do not allow "UTF-8" in charset options (useless because UTF-8 is ↵Sebastien Helleu
the internal WeeChat charset)
2012-07-13core: add command line option "-r" ("--run-command") in man pageSebastien Helleu
2012-07-13core: add command line option "-r" (or "--run-command") to run command(s) ↵Peter Boström
after startup of WeeChat
2012-07-09core: fix refresh of bar items "buffer_filter" and "scroll" in root bars ↵Sebastien Helleu
(bug #36816)
2012-07-09core: add function "hook_set" in plugin API, add "subplugin" in hooks (set ↵Peter Boström
by script plugins), display subplugin in /help on commands (task #12049)
2012-07-07core: add option weechat.look.jump_smart_back_to_buffer (jump back to ↵Nils Görs
initial buffer after reaching end of hotlist) The option is "on" by default, which is old behaviour.
2012-07-07irc: add bar item "buffer_modes", remove option irc.look.item_channel_modes ↵Sebastien Helleu
(task #12022)
2012-07-06doc: update note about WeeChat version at beginning of FAQSebastien Helleu
2012-07-06doc: fix name of option in question about memory usage (FAQ)Sebastien Helleu
2012-07-05core: add default key alt+"s" (toggle aspell)Sebastien Helleu
2012-07-05aspell: add new option aspell.check.enabled, add options ↵Sebastien Helleu
enable/disable/toggle for command /aspell, display aspell status with /aspell (task #11988) New options in command /aspell: - "enable": enable aspell - "disable": disable aspell - "toggle": toggle aspell Options renamed in command /aspell: - "enable" renamed to "setdict" (set dictionary for current buffer) - "disable" renamed to "deldict" (delete dictionary used on current buffer) - "dictlist" renamed to "listdict" (show installed dictionaries)
2012-07-05aspell: add missing dictionaries (ast/grc/hus/kn/ky)Sebastien Helleu
2012-07-05core: update ChangeLog (add cmake option "MANDIR")Sebastien Helleu
2012-07-05doc: add new cmake option MANDIR (bug #36776)Simon Kuhnle
${SHAREDIR}/man is not always the correct path, so add option to customize path. This is set to "${SHAREDIR}/man" by default. Signed-off-by: Simon Kuhnle <simon@blarzwurst.de>
2012-07-05doc: fix C example of weechat_hook_process_hashtable (plugin API reference)stfn
2012-07-04doc: update german FAQNils Görs
2012-07-03doc: update german translations and user guideNils Görs
2012-07-03doc: update list of contributors in user guideSebastien Helleu
2012-07-03core: update ChangeLog (support of lua 5.2)Sebastien Helleu
2012-07-03lua: remove call to deprecated function luaL_openlib (compatibility with Lua ↵Arvydas Sidorenko
5.2) Signed-off-by: Arvydas Sidorenko <asido4@gmail.com>
2012-07-03lua: replace lua_open by luaL_newstate (compatibility with Lua 5.2)Arvydas Sidorenko
In Lua 5.1 lua_open directly calls luaL_newstate, but was deprecated. In Lua 5.2 lua_open was removed. Signed-off-by: Arvydas Sidorenko <asido4@gmail.com>
2012-07-03lua: rename luaL_reg to luaL_Reg (compatibility with Lua 5.2)Arvydas Sidorenko
The original struct name is luaL_Reg, but Lua v5.1 had a `typedef luaL_reg luaL_Reg`, which in v5.2 was removed Signed-off-by: Arvydas Sidorenko <asido4@gmail.com>
2012-07-01doc: add question in FAQ about selection/paste of text when mouse is enabledSebastien Helleu
2012-07-01doc: fix duplicate chapter name "translations" in developer's guideSebastien Helleu
2012-07-01irc: fix parsing of user modes (ignore everything after first space) (bug ↵Sebastien Helleu
#36756)
2012-06-30doc: add format of git commit messages in developer's guideSebastien Helleu
2012-06-30doc: update list of contributors in user guideSebastien Helleu