Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-13 | relay: allow escape of comma in command "init" (weechat protocol) (issue #730) | Sébastien Helleu | |
2016-05-10 | core: fix custom section IDs in ChangeLog and ReleaseNotes | Sébastien Helleu | |
Asciidoctor (used on GitHub) requires that the custom ID start with a letter, so a "v" is added in front of releases. | |||
2016-05-09 | core: add issue #731 in ChangeLog | Sébastien Helleu | |
2016-05-01 | Version 1.5 | Sébastien Helleu | |
2016-04-30 | core: move lines from features to bugs in ChangeLog | Sébastien Helleu | |
2016-04-30 | core: remove quotes in ChangeLog | Sébastien Helleu | |
2016-04-24 | irc: fix first message displayed in raw buffer when the message is modified ↵ | Sébastien Helleu | |
by a modifier (closes #719) | |||
2016-04-23 | lua: fix crash when a lua function doesn't return a value and a string was ↵ | Sébastien Helleu | |
expected (closes #718) | |||
2016-04-23 | api: add support of functions in hook_process | Sébastien Helleu | |
2016-04-19 | core: update ChangeLog | Sébastien Helleu | |
2016-04-18 | core: fix case of external software names in ChangeLog | Sébastien Helleu | |
2016-04-06 | core: set default value "djb2" for option weechat.look.nick_color_hash | Sébastien Helleu | |
2016-04-05 | core: move nick coloring from irc plugin to core (closes #262) | Sébastien Helleu | |
Options moved from irc.conf to weechat.conf: * "irc.look.nick_color_force" moved to "weechat.look.nick_color_force" * "irc.look.nick_color_hash" moved to "weechat.look.nick_color_hash" * "irc.look.nick_color_stop_chars" moved to "weechat.look.nick_color_stop_chars" New info (for API function "info_get"): * "nick_color" (replaces "irc_nick_color") * "nick_color_name" (replaced "irc_nick_color_name") Info "irc_nick_color" and "irc_nick_color_name" are now deprecated. And a bug has been fixed in nick coloring: stop chars are removed before looking at a forced color. | |||
2016-03-21 | core: add pointer in some callbacks (closes #406) | Sébastien Helleu | |
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read | |||
2016-03-05 | relay: do not execute any command received from an irc relay client (closes ↵ | Sébastien Helleu | |
#699) | |||
2016-03-03 | core: fix case of external software names in ChangeLog | Sébastien Helleu | |
2016-03-01 | core: add issue #698 in ChangeLog | Sébastien Helleu | |
2016-03-01 | core: move lines from bugs to features in ChangeLog | Sébastien Helleu | |
2016-02-29 | core: update ChangeLog | Sébastien Helleu | |
2016-02-28 | core: check that pointers received in arguments are not NULL in buffers and ↵ | Sébastien Helleu | |
windows functions | |||
2016-02-24 | core: update ChangeLog | Sébastien Helleu | |
2016-02-19 | script: force refresh of scripts buffer after download of scripts list ↵ | Sébastien Helleu | |
(closes #693) | |||
2016-02-16 | core: fix truncation of buffer names in hotlist (closes #668) | Sébastien Helleu | |
2016-02-15 | core: move irc bar item "away" and two options to core (closes #692) | Sébastien Helleu | |
Options moved: * "irc.look.item_away_message" --> "weechat.look.item_away_message" * "irc.color.item_away" --> "weechat.color.item_away". | |||
2016-02-08 | relay: fix the max number of clients connected on a port, allow value 0 for ↵ | Sébastien Helleu | |
"no limit" (closes #669) | |||
2016-02-07 | core: fix update of window title under tmux (closes #685) | Sébastien Helleu | |
2016-02-07 | core: update ChangeLog | Sébastien Helleu | |
2016-02-07 | core: add issue #676 in ChangeLog | Sébastien Helleu | |
2016-02-06 | relay: fix websocket frame decoding, answer a PONG to PING (closes #675) | Sébastien Helleu | |
2016-02-06 | core: add issue #511 in ChangeLog | Sébastien Helleu | |
2016-02-05 | core: update ChangeLog and release notes | Sébastien Helleu | |
2016-01-23 | relay: fix command "input" received from clients (weechat protocol) (closes ↵ | Sébastien Helleu | |
#663) The command "input" received with only spaces in content of message was ignored by WeeChat (because of the split on spaces). | |||
2016-01-23 | core: fix number of arguments returned by string_split | Sébastien Helleu | |
When keep_eol is 2 and separators are found at the end of string, the function returned argc + 1 instead of argc. | |||
2016-01-17 | irc: add missing completion "*" for target in command /msg | Sébastien Helleu | |
2016-01-17 | irc: fix /msg command with multiple targets including "*" | Sébastien Helleu | |
2016-01-17 | core: update ChangeLog (closes #204) | Sébastien Helleu | |
2016-01-10 | Version 1.4 | Sébastien Helleu | |
2016-01-06 | irc: fix channel forwarding (closes #643) | Sébastien Helleu | |
The problem happens when the option irc.look.buffer_open_before_{autojoin|join} is on. | |||
2016-01-06 | core: move line in ChangeLog | Sébastien Helleu | |
2016-01-05 | alias: do not allow slashes and spaces in alias name (closes #646) | Sébastien Helleu | |
2016-01-02 | irc: evaluate content of server option "addresses" | Sébastien Helleu | |
2015-12-31 | core: fix execution of empty command name | Sébastien Helleu | |
The strings "/" and "/ " are not considered as valid commands any more. | |||
2015-12-25 | core: update ChangeLog | Sébastien Helleu | |
2015-12-24 | tests: fix locale used to execute tests | Sébastien Helleu | |
2015-12-24 | core: update ChangeLog | Sébastien Helleu | |
2015-12-24 | core: move lines in ChangeLog | Sébastien Helleu | |
2015-12-24 | irc: move option irc.network.alternate_nick into servers (closes #633) | Sébastien Helleu | |
2015-12-24 | core: add a parent name in options (closes #629) | Sébastien Helleu | |
Inherited values are now displayed in /set output when the value is null, if a parent option name is defined in option. New option: weechat.color.chat_value_null | |||
2015-12-23 | core: fix memory leak when using multiple "-d" or "-r" in command line arguments | Sébastien Helleu | |
2015-12-20 | core: update ChangeLog (closes #351) | Sébastien Helleu | |